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

1 2 3

  /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;
  /external/icu4c/i18n/unicode/
timezone.h 455 * Selector for long display name
458 LONG,
465 * Selector for long generic display name
476 * Selector for long display name derived
488 * Selector for long display name derived
498 * This method returns the long name, not including daylight savings.
511 * This method returns the long name, not including daylight savings.
datefmt.h 111 * result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the
116 * <li> LONG is longer, such as January 12, 1952 or 3:30:32pm
145 * in the resource occurs in the order full, long, medium, short.
193 LONG = kLong,
  /dalvik/hit/src/com/android/hit/
Types.java 30 public static final int LONG = 11;
47 case 'J': return 8; // long
57 case LONG: return 8;
74 case 'J': return "long";
84 case LONG: return "long";
  /sdk/common/src/com/android/resources/
ScreenRatio.java 24 NOTLONG("notlong", "Not Long", "Short screen aspect ratio"), //$NON-NLS-1$
25 LONG("long", "Long", "Long screen aspect ratio"); //$NON-NLS-1$
  /frameworks/base/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:
  /dalvik/dx/src/com/android/dx/gen/
Type.java 47 /** The {@code long} primitive type. */
48 public static final Type<Long> LONG = new Type<Long>(com.android.dx.rop.type.Type.LONG);
71 PRIMITIVE_TO_TYPE.put(long.class, LONG);
  /bionic/libc/stdio/
vfscanf.c 51 #define LONG 0x00001 /* l: long or double */
52 #define LONGDBL 0x00002 /* L: long double; unimplemented */
55 #define LLONG 0x00010 /* ll: long long (+ deprecated q: quad) */
89 #define u_long unsigned long
186 flags |= LONG;
212 flags |= LONG;
225 flags |= LONG;
286 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 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;
  /external/bison/lib/
strtol.c 53 # define INT LONG int
55 # define INT unsigned LONG int
120 operating on `long long int's. */
122 # define LONG long long
157 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
160 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 79 LONG(0L),
110 INT64 (JavaType.LONG , WIRETYPE_VARINT ),
111 UINT64 (JavaType.LONG , WIRETYPE_VARINT ),
113 FIXED64 (JavaType.LONG , WIRETYPE_FIXED64 ),
131 SFIXED64(JavaType.LONG , WIRETYPE_FIXED64 ),
133 SINT64 (JavaType.LONG , WIRETYPE_VARINT );
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 109 typedef unsigned long DWORD; /* dw */
114 typedef long LONG; /* l */
118 typedef unsigned long ULONG; /* ul */
193 typedef long long LARGE_INTEGER;
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 109 typedef unsigned long DWORD; /* dw */
114 typedef long LONG; /* l */
118 typedef unsigned long ULONG; /* ul */
193 typedef long long LARGE_INTEGER;
  /libcore/luni/src/main/java/java/util/
TimeZone.java 65 private static final long serialVersionUID = 3581463369166924961L;
74 * The long display name style, such as {@code Pacific Daylight Time}.
77 public static final int LONG = 1;
134 * Equivalent to {@code getDisplayName(false, TimeZone.LONG, Locale.getDefault())}.
138 return getDisplayName(false, LONG, Locale.getDefault());
142 * Equivalent to {@code getDisplayName(false, TimeZone.LONG, locale)}.
145 return getDisplayName(false, LONG, locale);
157 * Returns the {@link #SHORT short} or {@link #LONG long} name of this time
163 * @param style either {@link TimeZone#LONG} or {@link TimeZone#SHORT}
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventContainer.java 72 LONG(2),
103 * NOTE: for now, only {@link #STRING}, {@link #INT}, and {@link #LONG} are supported.
112 } else if (object instanceof Long) {
113 return LONG.mValue + "@" + object.toString(); //$NON-NLS-1$
140 case LONG:
141 return Long.valueOf(m.group(2));
222 * Returns the data as a long.
223 * @throws InvalidTypeException if the data type is not {@link EventValueType#LONG}.
226 public final Long getLong() throws InvalidTypeException {
227 if (getType(mData) == EventValueType.LONG) {
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 32 /** {@code non-null;} the list {@code [long]} */
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
56 /** {@code non-null;} the list {@code [long, long]} */
58 StdTypeList.make(Type.LONG, Type.LONG);
76 /** {@code non-null;} the list {@code [long, Object]} */
78 StdTypeList.make(Type.LONG, Type.OBJECT);
88 /** {@code non-null;} the list {@code [long, int]} *
    [all...]
Type.java 59 /** basic type constant for {@code long} */
92 /** {@code non-null;} instance representing {@code long} */
93 public static final Type LONG = new Type("J", BT_LONG);
118 putIntern(LONG);
132 CLASS_TYPE_MAP.put(long.class, LONG);
208 * {@code non-null;} instance representing {@code java.lang.Long}; the
212 public static final Type LONG_CLASS = intern("Ljava/lang/Long;");
246 /** {@code non-null;} instance representing {@code long[]} */
247 public static final Type LONG_ARRAY = LONG.getArrayType()
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 32 /** {@code non-null;} the list {@code [long]} */
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
56 /** {@code non-null;} the list {@code [long, long]} */
58 StdTypeList.make(Type.LONG, Type.LONG);
76 /** {@code non-null;} the list {@code [long, Object]} */
78 StdTypeList.make(Type.LONG, Type.OBJECT);
88 /** {@code non-null;} the list {@code [long, int]} *
    [all...]
Type.java 58 /** basic type constant for {@code long} */
91 /** {@code non-null;} instance representing {@code long} */
92 public static final Type LONG = new Type("J", BT_LONG);
117 putIntern(LONG);
193 * {@code non-null;} instance representing {@code java.lang.Long}; the
197 public static final Type LONG_CLASS = intern("Ljava/lang/Long;");
231 /** {@code non-null;} instance representing {@code long[]} */
232 public static final Type LONG_ARRAY = LONG.getArrayType();
338 * liberal: A name is considered valid as long as it doesn't
508 case BT_LONG: return "long";
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 93 public static final int LONG = 4;
StackMapTable.java 116 public static final int LONG = 4;
453 * J (long), L (class type), or [ (array).
465 return LONG;
499 int typeSize = (varTag == LONG || varTag == DOUBLE) ? 2 : 1;
766 case LONG :
767 msg = "long";
  /libcore/luni/src/main/java/java/text/
DateFormat.java 39 * styles. The formatting styles include FULL, LONG, MEDIUM, and SHORT. More
76 * DateFormat df = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRANCE);
94 * methods to control the length of the result; from SHORT to MEDIUM to LONG to
99 * <li>LONG is longer, such as January 12, 1952 or 3:30:32pm
129 private static final long serialVersionUID = 7218322306649953788L;
154 * The format style constant defining the long style.
156 public static final int LONG = 1;
434 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
438 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
451 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 51 /** Represents the long primitive type */
52 public static final Type LONG = new Type(CtClass.longType);
106 prims.put(CtClass.longType, LONG);
153 * Gets the word size of this type. Double-word types, such as long and double

Completed in 1378 milliseconds

1 2 3