This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if _WIN32_WINNT < 0x0500 | |
| # error "should be NT" | |
| #endif | |
| #include <windows.h> | |
| #include <tlhelp32.h> | |
| #include <winternl.h> | |
| #include <stdio.h> | |
| DWORD getppid() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package android.support.v4.app; | |
| import android.os.Bundle; | |
| import android.os.Handler; | |
| import android.view.ContextMenu; | |
| import android.view.ContextMenu.ContextMenuInfo; | |
| import android.view.Gravity; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.View.OnCreateContextMenuListener; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package me.madeye; | |
| import java.lang.reflect.Constructor; | |
| import java.lang.reflect.Field; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| import org.apache.http.HttpHost; | |
| import android.content.Context; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.nio.charset.Charset; | |
| import java.util.*; | |
| /** | |
| * Parses of /proc/mounts. | |
| */ | |
| public class MountInfo { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package daichan4649.test; | |
| import android.content.Context; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import android.widget.Checkable; | |
| import android.widget.LinearLayout; | |
| public class CheckableLayout extends LinearLayout implements Checkable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package xx.xxx.xx.view; | |
| import android.content.Context; | |
| import android.util.AttributeSet; | |
| import android.view.ViewGroup; | |
| import android.widget.GridView; | |
| /** | |
| * ScrollViewの中のGridViewでも高さを可変にする<br> | |
| * http://stackoverflow.com/questions/8481844/gridview-height-gets-cut |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.support.v7.widget.RecyclerView; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.Button; | |
| import android.widget.TextView; | |
| /** | |
| * Created by khaled bakhtiari on 10/26/2014. | |
| * <a href="http://about.me/kh.bakhtiari"> | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.activities; | |
| import android.content.res.Configuration; | |
| import android.os.Bundle; | |
| import android.preference.PreferenceActivity; | |
| import android.support.annotation.LayoutRes; | |
| import android.support.annotation.Nullable; | |
| import android.support.v7.app.ActionBar; | |
| import android.support.v7.app.AppCompatDelegate; | |
| import android.support.v7.widget.Toolbar; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Project_formController implements Initializable, LimitText { | |
| private static final Logger logger = LoggerFactory.getLogger(Project_formController.class); | |
| @FXML | |
| private TextField tf_projNM; | |
| @FXML | |
| private DatePicker proj_SDT; | |
| @FXML | |
| private DatePicker proj_EDT; | |
| @FXML |
OlderNewer