HomeSort by relevance Sort by last modified time
    Searched full:static (Results 2451 - 2475 of 47082) sorted by null

<<919293949596979899100>>

  /external/v8/src/
assembler.h 67 static void QuietNaN(HeapObject* nan) { }
168 static const int kNoPosition = -1;
174 static const char* const kFillerCommentString;
179 static const int kMinRelocCommentSize = 3 + kPointerSize;
182 static const int kMaxCallSize = 6;
185 static const int kMaxSmallPCDelta;
224 static inline bool IsConstructCall(Mode mode) {
227 static inline bool IsCodeTarget(Mode mode) {
230 static inline bool IsEmbeddedObject(Mode mode) {
234 static inline bool IsGCRelocMode(Mode mode)
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java 60 private static final String TAG = "Debug";
68 public static final int TRACE_COUNT_ALLOCS = VMDebug.TRACE_COUNT_ALLOCS;
74 public static final int SHOW_FULL_DETAIL = 1;
75 public static final int SHOW_CLASSLOADER = (1 << 1);
76 public static final int SHOW_INITIALIZED = (1 << 2);
79 private static volatile boolean mWaiting = false;
89 private static final int MIN_DEBUGGER_IDLE = 1300; // msec
92 private static final int SPIN_DELAY = 200; // msec
97 private static final String DEFAULT_TRACE_PATH_PREFIX =
99 private static final String DEFAULT_TRACE_BODY = "dmtrace"
    [all...]
Environment.java 34 private static final String TAG = "Environment";
36 private static final String ENV_EXTERNAL_STORAGE = "EXTERNAL_STORAGE";
37 private static final String ENV_EMULATED_STORAGE_SOURCE = "EMULATED_STORAGE_SOURCE";
38 private static final String ENV_EMULATED_STORAGE_TARGET = "EMULATED_STORAGE_TARGET";
39 private static final String ENV_MEDIA_STORAGE = "MEDIA_STORAGE";
40 private static final String ENV_ANDROID_ROOT = "ANDROID_ROOT";
43 public static String DIRECTORY_ANDROID = "Android";
45 private static final File DIR_ANDROID_ROOT = getDirectory(ENV_ANDROID_ROOT, "/system");
46 private static final File DIR_MEDIA_STORAGE = getDirectory(ENV_MEDIA_STORAGE, "/data/media");
48 private static final String CANONCIAL_EMULATED_STORAGE_TARGET = getCanonicalPathOrNull
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 36 private static final int UNUM_DECIMAL_SEPARATOR_SYMBOL = 0;
37 private static final int UNUM_GROUPING_SEPARATOR_SYMBOL = 1;
38 private static final int UNUM_PATTERN_SEPARATOR_SYMBOL = 2;
39 private static final int UNUM_PERCENT_SYMBOL = 3;
40 private static final int UNUM_ZERO_DIGIT_SYMBOL = 4;
41 private static final int UNUM_DIGIT_SYMBOL = 5;
42 private static final int UNUM_MINUS_SIGN_SYMBOL = 6;
43 private static final int UNUM_PLUS_SIGN_SYMBOL = 7;
44 private static final int UNUM_CURRENCY_SYMBOL = 8;
45 private static final int UNUM_INTL_CURRENCY_SYMBOL = 9
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/
Util.java 71 private static final String TAG = "Util";
74 public static final int ORIENTATION_HYSTERESIS = 5;
76 public static final String REVIEW_ACTION = "com.android.camera.action.REVIEW";
78 public static final String ACTION_NEW_PICTURE = "android.hardware.action.NEW_PICTURE";
80 public static final String ACTION_NEW_VIDEO = "android.hardware.action.NEW_VIDEO";
83 public static final String FOCUS_MODE_CONTINUOUS_PICTURE = "continuous-picture";
84 public static final String RECORDING_HINT = "recording-hint";
85 private static final String AUTO_EXPOSURE_LOCK_SUPPORTED = "auto-exposure-lock-supported";
86 private static final String AUTO_WHITE_BALANCE_LOCK_SUPPORTED = "auto-whitebalance-lock-supported";
87 private static final String VIDEO_SNAPSHOT_SUPPORTED = "video-snapshot-supported"
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabasePerformanceTests.java 41 public static String[] children() {
78 public static abstract class PerformanceBase implements TestCase,
80 protected static final int CURRENT_DATABASE_VERSION = 42;
148 public static class ContactReadingTest1 implements TestCase, PerformanceTestCase {
149 private static final String[] PEOPLE_PROJECTION = new String[] {
197 public static class Perf1Test extends PerformanceBase {
198 private static final int SIZE = 1000;
230 public static class Perf2Test extends PerformanceBase {
231 private static final int SIZE = 1000;
264 public static class Perf3Test extends PerformanceBase
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
MediaArtistNativeHelper.java 44 private static final String TAG = "MediaArtistNativeHelper";
46 static {
50 private static final int MAX_THUMBNAIL_PERMITTED = 8;
52 public static final int TASK_LOADING_SETTINGS = 1;
53 public static final int TASK_ENCODING = 2;
58 private static final Paint sResizePaint = new Paint(Paint.FILTER_BITMAP_FLAG);
92 private static final String AUDIO_TRACK_PCM_FILE = "AudioPcm.pcm";
95 public static final int PROCESSING_NONE = 0;
96 public static final int PROCESSING_AUDIO_PCM = 1;
97 public static final int PROCESSING_TRANSITION = 2
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
BitmapAssets.java 44 private static final String TAG = BitmapAssets.class.getSimpleName();
46 static final int TYPE_REFERENCE = 0;
48 static final int TYPE_FAILED = 1;
50 static final int TYPE_DIFF = 2;
52 public static boolean clearDirectory(int type) {
68 private static boolean isExternalStorageReady() {
72 public static File getBitmapDir(int type) {
92 public static String getBitmapName(ThemeInfo themeInfo, LayoutInfo layoutInfo) {
96 public static Bitmap getBitmap(Context context, String bitmapName) {
102 public static File getBitmapPath(String bitmapName, int type)
    [all...]
  /cts/tests/tests/sax/src/android/sax/cts/
ElementTest.java 39 private static final String ATOM_NAMESPACE = "http://www.w3.org/2005/Atom";
40 private static final String FEED = "feed";
41 private static final String XMLFILE = "<feed xmlns='http://www.w3.org/2005/Atom'>"
48 private static final String ID = "id";
49 private static final String ENTRY1 = "entry1";
50 private static final String ENTRY2 = "entry2";
51 private static final String NAME = "name";
53 private static final String Y2009 = "2009";
54 private static final String Y2000 = "2000";
55 private static final String JIM = "jim"
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AlphabetIndexerTest.java 26 private static final String[] COUNTRIES_LIST = new String[]
28 private static final String[] NAMES_LIST = new String[]
30 private static final String ALPHABET = " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
31 private static final int SORTED_COLUMN_INDEX = 1;
33 private static final int INDEX_OF_ARGENTINA = 0;
34 private static final int INDEX_OF_CHINA = 2;
35 private static final int INDEX_OF_UNITED_STATES = 7;
37 private static final int INDEX_OF_BERGKAMP = 1;
38 private static final int INDEX_OF_MESSI = 5;
39 private static final int INDEX_OF_STEVEN = 7
    [all...]
  /development/ndk/platforms/android-3/include/
termios.h 49 static __inline__ int tcgetattr(int fd, struct termios *s)
54 static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s)
59 static __inline__ int tcflow(int fd, int action)
64 static __inline__ int tcflush(int fd, int __queue)
69 static __inline__ pid_t tcgetsid(int fd)
75 static __inline__ int tcsendbreak(int fd, int __duration)
80 static __inline__ speed_t cfgetospeed(const struct termios *s)
85 static __inline__ int cfsetospeed(struct termios *s, speed_t speed)
91 static __inline__ speed_t cfgetispeed(const struct termios *s)
96 static __inline__ int cfsetispeed(struct termios *s, speed_t speed
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ObjectExtensions.cs 37 public static class ObjectExtensions
41 public static bool booleanValue( this bool value )
47 public static Type getClass( this object o )
53 public static int ShiftPrimeXOR( int a, int b )
61 public static int ShiftPrimeXOR( int a, int b, int c )
70 public static int ShiftPrimeXOR( int a, int b, int c, int d )
80 public static int ShiftPrimeXOR( params int[] a )
88 public static int ShiftPrimeAdd( int a, int b )
96 public static int ShiftPrimeAdd( int a, int b, int c )
105 public static int ShiftPrimeAdd( int a, int b, int c, int d
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Token.java 31 public static final int EOR_TOKEN_TYPE = 1;
34 public static final int DOWN = 2;
36 public static final int UP = 3;
38 public static final int MIN_TOKEN_TYPE = UP+1;
40 public static final int EOF = CharStream.EOF;
42 public static final Token EOF_TOKEN = new CommonToken(EOF);
44 public static final int INVALID_TOKEN_TYPE = 0;
45 public static final Token INVALID_TOKEN = new CommonToken(INVALID_TOKEN_TYPE);
50 public static final Token SKIP_TOKEN = new CommonToken(INVALID_TOKEN_TYPE);
56 public static final int DEFAULT_CHANNEL = 0
    [all...]
  /external/chromium/chrome/browser/ui/webui/
new_tab_ui.h 36 static void RegisterUserPrefs(PrefService* prefs);
37 static void MigrateUserPrefs(PrefService* prefs, int old_pref_version,
42 static bool FirstRunDisabled();
46 static void SetURLTitleAndDirection(DictionaryValue* dictionary,
52 static void AddRecentlyClosedEntries(
57 static int current_pref_version() { return current_pref_version_; }
74 static void set_first_run(bool first_run) { first_run_ = first_run; }
75 static bool first_run() { return first_run_; }
81 static bool first_run_;
104 static bool UpdateUserPrefsVersion(PrefService* prefs)
    [all...]
  /external/chromium/net/disk_cache/
addr.h 96 static int BlockSizeForFileType(FileType file_type) {
111 static FileType RequiredFileType(int size) {
126 static const uint32 kInitializedMask = 0x80000000;
127 static const uint32 kFileTypeMask = 0x70000000;
128 static const uint32 kFileTypeOffset = 28;
129 static const uint32 kNumBlocksMask = 0x03000000;
130 static const uint32 kNumBlocksOffset = 24;
131 static const uint32 kFileSelectorMask = 0x00ff0000;
132 static const uint32 kFileSelectorOffset = 16;
133 static const uint32 kStartBlockMask = 0x0000FFFF
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableBiMap.java 30 private static final ImmutableBiMap<Object, Object> EMPTY_IMMUTABLE_BIMAP
35 public static <K, V> ImmutableBiMap<K, V> of() {
39 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) {
43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) {
47 public static <K, V> ImmutableBiMap<K, V> of(
53 public static <K, V> ImmutableBiMap<K, V> of(
59 public static <K, V> ImmutableBiMap<K, V> of(
65 public static <K, V> Builder<K, V> builder() {
69 public static final class Builder<K, V> extends ImmutableMap.Builder<K, V> {
92 public static <K, V> ImmutableBiMap<K, V> copyOf
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SampleElements.java 44 public static class Strings extends SampleElements<String> {
51 public static final String BEFORE_FIRST = "\0";
52 public static final String BEFORE_FIRST_2 = "\0\0";
53 public static final String MIN_ELEMENT = "a";
54 public static final String AFTER_LAST = "z";
55 public static final String AFTER_LAST_2 = "zz";
58 public static class Enums extends SampleElements<AnEnum> {
65 public static <K, V> SampleElements<Map.Entry<K, V>> mapEntries(
75 public static class Unhashables extends SampleElements<UnhashableObject> {
85 public static class Colliders extends SampleElements<Object>
    [all...]
  /external/icu4c/common/
cpputils.h 25 static
29 static
34 static
38 static
43 static
47 static
52 static
56 static
61 static
71 static inline voi
    [all...]
  /external/iptables/extensions/
libxt_TCPMSS.c 21 static void __TCPMSS_help(int hdrsize)
30 static void TCPMSS_help(void)
35 static void TCPMSS_help6(void)
40 static const struct xt_option_entry TCPMSS4_opts[] = {
48 static const struct xt_option_entry TCPMSS6_opts[] = {
56 static void TCPMSS_parse(struct xt_option_call *cb)
65 static void TCPMSS_check(struct xt_fcheck_call *cb)
72 static void TCPMSS_print(const void *ip, const struct xt_entry_target *target,
83 static void TCPMSS_save(const void *ip, const struct xt_entry_target *target)
94 static struct xtables_target tcpmss_target =
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
Filters.java 40 * Static utility methods pertaining to Filter instances.
51 public static <T> Filter<T> in( T... values )
60 public static <T> Filter<T> in( Collection<? extends T> collection )
70 public static <T> Filter<T> notIn( T... values )
80 public static <T> Filter<T> notIn( Collection<? extends T> collection )
89 public static <T> Filter<T> equalTo( T value )
99 public static <T> Filter<T> notEqualTo( T value )
108 public static <T> Filter<T> not( Filter<T> f )
113 private static class EqualToFilter<T> implements Filter<T>
128 private static class InFilter<T> implements Filter<T
    [all...]
  /external/jsilver/src/org/clearsilver/jni/
JNI.java 39 public static Runnable EXIT_JVM = new Runnable() {
58 public static Runnable THROW_ERROR = new Runnable() {
64 private static Runnable failureCallback = EXIT_JVM;
66 private static Object callbackLock = new Object();
68 private static String libraryName = "clearsilver-jni";
70 private static String[] librarySearchPaths
74 private static volatile boolean successfullyLoadedLibrary;
81 public static void loadLibrary() {
119 public static void setFailureCallback(Runnable failureCallback) {
128 public static void setLibraryName(String libraryName)
    [all...]
  /external/junit/src/org/junit/
Assume.java 3 import static java.util.Arrays.asList;
4 import static org.hamcrest.CoreMatchers.is;
5 import static org.hamcrest.CoreMatchers.notNullValue;
6 import static org.hamcrest.CoreMatchers.nullValue;
26 * read better if they are referenced through static import:<br/>
28 * import static org.junit.Assume.*;
38 public static void assumeTrue(boolean b) {
46 public static void assumeNotNull(Object... objects) {
61 * @param <T> the static type accepted by the matcher (this can flag obvious compile-time problems such as {@code assumeThat(1, is("a"))}
68 public static <T> void assumeThat(T actual, Matcher<T> matcher)
    [all...]
  /external/oprofile/module/x86/
op_rtc.c 30 static void do_rtc_interrupt(int irq, void * dev_id, struct pt_regs * regs)
55 static int rtc_setup(void)
93 static void rtc_start(void)
111 static void rtc_stop(void)
127 static void rtc_start_cpu(uint cpu)
132 static void rtc_stop_cpu(uint cpu)
137 static int rtc_check_params(void)
148 static int rtc_init(void)
166 static void rtc_deinit(void)
172 static int rtc_add_sysctls(ctl_table * next
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/timer/wince/
SDL_systimer.c 34 static Uint64 start_date;
35 static Uint64 start_ticks;
37 static Uint64 wce_ticks(void)
42 static Uint64 wce_date(void)
59 static Sint32 wce_rel_ticks(void)
64 static Sint32 wce_rel_date(void)
95 static UINT WIN_timer;
99 static HANDLE timersThread = 0;
100 static HANDLE timersQuitEvent = 0;
149 static UINT timerID = 0
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ProgressDialogTest.java 15 import static com.xtremelabs.robolectric.Robolectric.shadowOf;
16 import static junit.framework.Assert.assertNull;
17 import static org.hamcrest.CoreMatchers.instanceOf;
18 import static org.hamcrest.CoreMatchers.nullValue;
19 import static org.hamcrest.core.Is.is;
20 import static org.hamcrest.core.IsEqual.equalTo;
21 import static org.junit.Assert.assertEquals;
22 import static org.junit.Assert.assertNotNull;
23 import static org.junit.Assert.assertThat;
24 import static org.junit.Assert.assertTrue
    [all...]

Completed in 975 milliseconds

<<919293949596979899100>>