HomeSort by relevance Sort by last modified time
    Searched defs:LONG (Results 1 - 25 of 777) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 25 TypeData LONG = new TypeData.BasicType("long", StackMapTable.LONG);
  /libcore/luni/src/main/java/libcore/io/
SizeOf.java 24 public static final int LONG = 8;
  /libcore/ojluni/src/main/java/java/time/format/
FormatStyle.java 84 * Long text style, with lots of detail.
87 LONG,
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic4x/
data.s 5 LONG: .long 0FFFFABCDH,'A'+100h
8 ASCII: .ascii "This is a very long text","This is another"
9 ASCIZ: .asciz "This is a very long text","This is another"
  /external/droiddriver/src/io/appium/droiddriver/actions/accessibility/
AccessibilityClickAction.java 32 public static final AccessibilityClickAction LONG = new LongClick(1000L);
35 protected AccessibilityClickAction(long timeoutMillis) {
40 public DoubleClick(long timeoutMillis) {
52 public LongClick(long timeoutMillis) {
60 + " is not long-clickable; maybe there is a clickable element in the same location?");
67 public SingleClick(long timeoutMillis) {
  /external/icu/icu4c/source/i18n/unicode/
timezone.h 584 * Selector for long display name
587 LONG,
594 * Selector for long generic display name
605 * Selector for long display name derived
617 * Selector for long display name derived
627 * This method returns the long name, not including daylight savings.
640 * This method returns the long name, not including daylight savings.
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
PrimitiveName.java 25 BOOLEAN, BYTE, SHORT, INT, LONG, CHAR, FLOAT, DOUBLE;
52 case LONG:
53 return LONG;
78 if (long.class.equals(primitiveClass)) {
79 return LONG;
  /external/droiddriver/src/io/appium/droiddriver/actions/
ClickAction.java 32 public static final ClickAction LONG = new LongClick(1000L);
35 private static final long CLICK_DURATION_MILLIS = 100L;
38 public DoubleClick(long timeoutMillis) {
51 public LongClick(long timeoutMillis) {
58 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY());
59 // see android.test.TouchUtils - *1.5 to make sure it's long press
60 SystemClock.sleep((long) (ViewConfiguration.getLongPressTimeout() * 1.5));
67 public SingleClick(long timeoutMillis) {
74 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY());
83 protected ClickAction(long timeoutMillis)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ValueType.java 39 public static final int LONG = 0x06;
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
TypeUtil.java 31 public static final String LONG = "J";
  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 28 public static final long[] LONG = new long[0];
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
Type.java 12 LONG(0, "0l", ".longValue()", "java.lang.Long", Long.TYPE),
65 return LONG;
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_imdct_synth.cpp 41 int16 mx_band, In case of mixed blocks, # of bands with long
57 The number of windowed samples is 12 for short blocks, and 36 for long
118 #define LONG 0
235 * long transforms
241 uint32 current_blk_type = (band < mx_band) ? LONG : blk_type;
248 case LONG:
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
SupportMessageTest.java 33 // Declare a different string of the same type for both long and short messages, so we can be
47 static final CharSequence SIMPLE = "long-message-long";
48 static final CharSequence LONG =
51 static final CharSequence CONTAINS_NULL = "long\0null";
92 // Long support messages should not be affected; verify that.
93 mDevicePolicyManager.setLongSupportMessage(ADMIN_RECEIVER_COMPONENT, LongMessage.LONG);
94 assertEquals(LongMessage.LONG, getLongMessage());
125 // Long support message
158 * Update the long support message
    [all...]
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
TypeId.java 53 /** The {@code long} primitive type. */
54 public static final TypeId<Long> LONG = new TypeId<>(com.android.dx.rop.type.Type.LONG);
76 PRIMITIVE_TO_TYPE.put(long.class, LONG);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
TimeZone.java 99 private static final long serialVersionUID = 1L;
149 * @see #LONG
156 * a long name, such as "Pacific Standard Time."
160 public static final int LONG = 1;
173 // * a long generic name, such as "Pacific Time."
191 // * a long name derived from the timezone's offset, such as "GMT-08:00."
210 // * a long name derived from the timezone's fallback name, such as
278 * @see #getOffset(long, boolean, int[])
281 public int getOffset(long date) {
306 // public void getOffset(long date, boolean local, int[] offsets)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
ValuePrinter.java 132 if (outputType == OutputType.LONG || outputType == OutputType.DOUBLE) {
200 LONG("(J)V"),
248 return OutputType.LONG;
  /bionic/libc/stdio/
vfscanf.c 53 #define LONG 0x00001 /* l: long or double */
54 #define LONGDBL 0x00002 /* L: long double */
57 #define LLONG 0x00010 /* ll: long long (+ deprecated q: quad) */
91 #define u_long unsigned long
180 flags |= LONG;
206 flags |= LONG;
219 flags |= LONG;
279 else if (flags & LONG)
    [all...]
vfwscanf.c 54 #define LONG 0x00001 /* l: long or double */
55 #define LONGDBL 0x00002 /* L: long double */
58 #define LLONG 0x00010 /* ll: long long (+ deprecated q: quad) */
92 #define u_long unsigned long
194 flags |= LONG;
220 flags |= LONG;
233 flags |= LONG;
305 else if (flags & LONG)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 49 /** {@code non-null;} instance corresponding to the class {@code Long} */
50 public static final CstType LONG = intern(Type.LONG_CLASS);
76 /** {@code non-null;} instance corresponding to the type {@code long[]} */
111 case Type.BT_LONG: return LONG;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 56 /** {@code non-null;} instance corresponding to the class {@code Long} */
57 public static final CstType LONG = new CstType(Type.LONG_CLASS);
83 /** {@code non-null;} instance corresponding to the type {@code long[]} */
108 internInitial(LONG);
156 case Type.BT_LONG: return LONG;
  /external/aac/libSYS/include/
machine_type.h 124 /** \var LONG
158 /* force FDK long-datatypes to 4 byte */
160 #define LONG INT
163 typedef signed long LONG;
164 typedef unsigned long ULONG;
180 typedef long long INT64;
181 typedef unsigned long long UINT64
    [all...]
  /external/autotest/client/site_tests/hardware_Keyboard/src/
evtest.c 302 #define BITS_PER_LONG (sizeof(long) * 8)
306 #define LONG(x) ((x)/BITS_PER_LONG)
307 #define test_bit(bit, array) ((array[LONG(bit)] >> OFF(bit)) & 1)
352 unsigned long bit[EV_MAX][NBITS(KEY_MAX)];
374 unsigned long bit[EV_MAX][NBITS(KEY_MAX)];
397 unsigned long bit[EV_MAX][NBITS(KEY_MAX)];
491 unsigned long bit[EV_MAX][NBITS(KEY_MAX)];
  /external/bison/lib/
strtol.c 47 # define INT LONG int
49 # define INT unsigned LONG int
114 operating on 'long long int's. */
116 # define LONG long long
151 # define ULLONG_MAX TYPE_MAXIMUM (unsigned long long)
154 # define LLONG_MAX TYPE_MAXIMUM (long long int
    [all...]
  /external/curl/include/curl/
multi.h 286 long timeout_ms, /* see above */
318 long *milliseconds);
326 #define LONG CURLOPTTYPE_LONG
341 CINIT(PIPELINING, LONG, 3),
350 CINIT(MAXCONNECTS, LONG, 6),
353 CINIT(MAX_HOST_CONNECTIONS, LONG, 7),
356 CINIT(MAX_PIPELINE_LENGTH, LONG, 8),
375 CINIT(MAX_TOTAL_CONNECTIONS, LONG, 13),

Completed in 1803 milliseconds

1 2 3 4 5 6 7 8 91011>>