HomeSort by relevance Sort by last modified time
    Searched refs:TYPE (Results 126 - 150 of 369) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
SimpleTimeZone.java     [all...]
Calendar.java     [all...]
  /external/bison/src/
parse-gram.y 111 %token PERCENT_TYPE "%type"
159 %token TYPE "type"
171 %type <chars> STRING string_content
189 %type <uniqstr> TYPE
190 %printer { fprintf (stderr, "<%s>", $$); } TYPE
191 %type <integer> INT
193 %type <symbol> ID symbol string_as_id
195 %type <symbol> ID_COLO
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
LegacyContactsProviderTest.java 146 values.put(Organizations.TYPE, Organizations.TYPE_WORK);
153 values.put(Organizations.TYPE, Organizations.TYPE_WORK);
189 values.put(Phones.TYPE, Phones.TYPE_WORK);
196 values.put(Phones.TYPE, Phones.TYPE_WORK);
237 values.put(ContactMethods.TYPE, ContactMethods.TYPE_HOME);
260 values.put(ContactMethods.TYPE, ContactMethods.TYPE_HOME);
269 values.put(ContactMethods.TYPE, ContactMethods.TYPE_WORK);
328 values.put(Organizations.TYPE, Organizations.TYPE_CUSTOM);
338 assertPersonIdConstraint(Organizations.CONTENT_URI, Organizations.TYPE,
342 Organizations.TYPE, Organizations.TYPE_CUSTOM, Organizations.TYPE_OTHER
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 680 "person", "company", "title", "isprimary", "type", "label",
687 static int TYPE = 4;
699 Organization.TYPE + "," +
709 int TYPE = 7;
736 bindString(insert, OrganizationInsert.TYPE, c.getString(OrganizationsQuery.TYPE));
745 "person", "kind", "data", "aux_data", "type", "label", "isprimary",
752 static int TYPE = 4;
764 Email.TYPE + "," +
774 int TYPE = 6
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
builtins.def 24 DEF_BUILTIN (ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P,
28 ENUM will be of type `enum built_in_function', and will indicate
31 literal. The CLASS is of type `enum built_in_class' and indicates
41 TYPE indicates the type of the function. The symbols correspond to
43 is the type of the non-`__builtin_' variant. Otherwise, LIBTYPE
71 #define DEF_GCC_BUILTIN(ENUM, NAME, TYPE, ATTRS) \
72 DEF_BUILTIN (ENUM, "__builtin_" NAME, BUILT_IN_NORMAL, TYPE, BT_LAST, \
77 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) \
78 DEF_BUILTIN (ENUM, NAME, BUILT_IN_NORMAL, TYPE, BT_LAST,
    [all...]
ansidecl.h 192 #define PROTO(type, name, arglist) type name arglist
214 #define VA_FIXEDARG(AP, TYPE, NAME) TYPE NAME = va_arg(AP, TYPE)
231 #define PROTO(type, name, arglist) type name ()
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
builtins.def 24 DEF_BUILTIN (ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P,
28 ENUM will be of type `enum built_in_function', and will indicate
31 literal. The CLASS is of type `enum built_in_class' and indicates
41 TYPE indicates the type of the function. The symbols correspond to
43 is the type of the non-`__builtin_' variant. Otherwise, LIBTYPE
71 #define DEF_GCC_BUILTIN(ENUM, NAME, TYPE, ATTRS) \
72 DEF_BUILTIN (ENUM, "__builtin_" NAME, BUILT_IN_NORMAL, TYPE, BT_LAST, \
77 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) \
78 DEF_BUILTIN (ENUM, NAME, BUILT_IN_NORMAL, TYPE, BT_LAST,
    [all...]
ansidecl.h 192 #define PROTO(type, name, arglist) type name arglist
214 #define VA_FIXEDARG(AP, TYPE, NAME) TYPE NAME = va_arg(AP, TYPE)
231 #define PROTO(type, name, arglist) type name ()
  /frameworks/base/core/java/android/provider/
CallLog.java 63 * The MIME type of {@link #CONTENT_URI} and {@link #CONTENT_FILTER_URI}
69 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single
75 * The type of the call (incoming, outgoing or missed).
76 * <P>Type: INTEGER (int)</P>
78 public static final String TYPE = "type";
86 * <P>Type: TEXT</P>
92 * <P>Type: INTEGER (long)</P>
98 * <P>Type: INTEGER (long)</P>
104 * <P>Type: INTEGER (boolean)</P
    [all...]
  /libcore/luni/src/main/java/java/net/
Inet6Address.java 115 * given {@code nif} and the {@code addr} type (for example site-local or
128 * address type.
140 // find the first address which matches the type addr,
158 // if no address matches the type of addr, throws an
421 new ObjectStreamField("scope_id", Integer.TYPE),
422 new ObjectStreamField("scope_id_set", Boolean.TYPE),
423 new ObjectStreamField("scope_ifname_set", Boolean.TYPE),
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/
ansidecl.h 192 #define PROTO(type, name, arglist) type name arglist
214 #define VA_FIXEDARG(AP, TYPE, NAME) TYPE NAME = va_arg(AP, TYPE)
231 #define PROTO(type, name, arglist) type name ()
  /external/openssl/crypto/rand/
rand_egd.c 133 # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  /external/qemu/
osdep.h 32 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER)
35 #define container_of(ptr, type, member) ({ \
36 const typeof(((type *) 0)->member) *__mptr = (ptr); \
37 (type *) ((char *) __mptr - offsetof(type, member));})
40 /* Convert from a base type to a parent type, with compile time checking. */
42 #define DO_UPCAST(type, field, dev) ( __extension__ ( { \
44 -offsetof(type, field)];
    [all...]
  /frameworks/base/core/java/android/util/
Xml.java 119 static final String TYPE
124 instance = XmlPullParserFactory.newInstance(TYPE, null);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete5.java 48 Contacts.People.TYPE,
  /external/bluetooth/glib/gobject/
glib-mkenums.in 159 print " \@type\@ either enum or flags\n";
160 print " \@Type\@ either Enum or Flags\n";
161 print " \@TYPE\@ either ENUM or FLAGS\n";
418 if ($flags) { $prod =~ s/\@type\@/flags/g; } else { $prod =~ s/\@type\@/enum/g; }
419 if ($flags) { $prod =~ s/\@Type\@/Flags/g; } else { $prod =~ s/\@Type\@/Enum/g; }
420 if ($flags) { $prod =~ s/\@TYPE\@/FLAGS/g; } else { $prod =~ s/\@TYPE\@/ENUM/g; }
436 if ($flags) { $prod =~ s/\@type\@/flags/g; } else { $prod =~ s/\@type\@/enum/g;
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Attribute.java 25 public static final Attribute TYPE = new AttributeImpl ("TYPE");
  /frameworks/base/core/java/android/os/
Build.java 41 /** The name of the instruction set (CPU type + ABI convention) of native code. */
44 /** The name of the second instruction set (CPU type + ABI convention) of native code. */
196 /** The type of build, like "user" or "eng". */
197 public static final String TYPE = getString("ro.build.type");
  /frameworks/base/core/tests/coretests/src/android/os/
BuildTest.java 65 assertNotEmpty("TYPE", Build.TYPE);
  /frameworks/base/include/utils/
List.h 71 template <typename TYPE>
74 typedef const TYPE Type;
77 template <typename TYPE>
80 typedef TYPE Type;
90 typedef typename Constness<U>::Type _Type;
266 * _ListIterator of the same type but different constness.
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasAnnotationTest.java 52 @Target({ElementType.TYPE, ElementType.METHOD})
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 527 * type as the method return value.
1034 Class<?> type = slot.getField().getType(); local
    [all...]
  /libcore/luni/src/main/java/java/lang/
Boolean.java 23 * The wrapper for the primitive type {@code boolean}.
37 * The {@link Class} object that represents the primitive type {@code
41 public static final Class<Boolean> TYPE
44 // defined to be "java.lang.Boolean.TYPE";
  /libcore/luni/src/main/java/java/security/
AllPermissionCollection.java 39 "all_allowed", Boolean.TYPE), };

Completed in 1413 milliseconds

1 2 3 4 56 7 8 91011>>