Home
last modified time | relevance | path

Searched defs:types (Results 1 – 25 of 466) sorted by relevance

12345678910>>...19

/external/dexmaker/src/main/java/com/google/dexmaker/
DBinaryOp.java42 @Override Rop rop(TypeList types) { in ADD()
49 @Override Rop rop(TypeList types) { in SUBTRACT()
56 @Override Rop rop(TypeList types) { in MULTIPLY()
63 @Override Rop rop(TypeList types) { in DIVIDE()
70 @Override Rop rop(TypeList types) { in REMAINDER()
77 @Override Rop rop(TypeList types) { in AND()
84 @Override Rop rop(TypeList types) { in OR()
91 @Override Rop rop(TypeList types) { in XOR()
98 @Override Rop rop(TypeList types) { in SHIFT_LEFT()
105 @Override Rop rop(TypeList types) { in SHIFT_RIGHT()
[all …]
DComparison.java30 @Override Rop rop(TypeList types) { in LT()
37 @Override Rop rop(TypeList types) { in LE()
44 @Override Rop rop(TypeList types) { in EQ()
51 @Override Rop rop(TypeList types) { in GE()
58 @Override Rop rop(TypeList types) { in GT()
65 @Override Rop rop(TypeList types) { in NE()
70 abstract Rop rop(TypeList types); in rop()
DTypeList.java28 final TypeId<?>[] types; field in TypeList
31 TypeList(TypeId<?>[] types) { in TypeList()
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
DX509CertSelectorTest.java37 int[] types = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; in test_addSubjectAlternativeNameLintLbyte_array() local
53 int[] types = { 0, 3, 4, 5, 6, 7, 8 }; in test_addSubjectAlternativeNameLintLjava_lang_String() local
86 int[] types = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; in test_addPathToNameLintLbyte_array() local
/external/chromium_org/components/sync_driver/
Dmodel_association_manager_unittest.cc79 syncer::ModelTypeSet types(syncer::BOOKMARKS, syncer::APPS); in TEST_F() local
122 syncer::ModelTypeSet types; in TEST_F() local
161 syncer::ModelTypeSet types; in TEST_F() local
194 syncer::ModelTypeSet types; in TEST_F() local
229 syncer::ModelTypeSet types; in TEST_F() local
264 syncer::ModelTypeSet types; in TEST_F() local
305 syncer::ModelTypeSet types; in TEST_F() local
366 syncer::ModelTypeSet types; in TEST_F() local
Dbackend_data_type_configurer.cc14 syncer::ModelTypeSet types; in GetDataTypesInState() local
25 DataTypeConfigState state, syncer::ModelTypeSet types, in SetDataTypesState()
/external/chromium_org/chrome/browser/extensions/
Dextension_notification_observer.cc17 std::string Str(const std::vector<chrome::NotificationType>& types) { in Str()
59 std::vector<chrome::NotificationType> types; in CheckNotifications() local
69 std::vector<chrome::NotificationType> types; in CheckNotifications() local
83 std::vector<chrome::NotificationType> types; in CheckNotifications() local
135 const std::vector<chrome::NotificationType>& types) { in CheckNotifications()
/external/llvm/docs/
DSourceLevelDebugging.rst1039 bool
1057 char
1075 unsigned char
1093 short
1111 unsigned short
1129 int
1147 unsigned int
1165 long long
1183 unsigned long long
1201 float
[all …]
/external/chromium_org/ash/shelf/
Dshelf_navigator_unittest.cc43 void SetupMockShelfModel(ShelfItemType* types, in SetupMockShelfModel()
76 ShelfItemType types[] = { in TEST_F() local
91 ShelfItemType types[] = { in TEST_F() local
119 ShelfItemType types[] = { in TEST_F() local
/external/javasqlite/src/main/java/SQLite/
DCallback.java56 public void types(String types[]); in types() argument
DTableResult.java54 public String types[]; field in TableResult
116 public void types(String types[]) { in types() method in TableResult
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
DBulkBean.java35 … public Object newInstance(String target, String[] getters, String[] setters, String[] types); in newInstance()
40 protected Class[] types; field in BulkBean
65 public static BulkBean create(Class target, String[] getters, String[] setters, Class[] types) { in create()
79 private Class[] types; field in BulkBean.Generator
97 public void setTypes(Class[] types) { in setTypes()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
DAddPropertyTransformer.java26 private final Type[] types; field in AddPropertyTransformer
37 public AddPropertyTransformer(String[] names, Type[] types) { in AddPropertyTransformer()
/external/chromium_org/sync/test/engine/
Dfake_sync_scheduler.cc21 ModelTypeSet types, in ScheduleLocalNudge()
27 ModelTypeSet types, in ScheduleLocalRefreshRequest()
62 ModelTypeSet types, in OnTypesThrottled()
92 void FakeSyncScheduler::OnReceivedMigrationRequest(ModelTypeSet types) { in OnReceivedMigrationRequest()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DTypeUtils.java106 public static Type[] add(Type[] types, Type extra) { in add()
138 Type[] types = new Type[names.length]; in fromInternalNames() local
145 public static int getStackSize(Type[] types) { in getStackSize()
153 public static String[] toInternalNames(Type[] types) { in toInternalNames()
186 Type[] types = new Type[names.size()]; in parseTypes() local
193 public static Signature parseConstructor(Type[] types) { in parseConstructor()
209 List types = new ArrayList(5); in parseTypes() local
325 Type[] types = new Type[classes.length]; in getTypes() local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DTypeListPool.java52 public void intern(@Nonnull Collection<? extends CharSequence> types) { in intern()
82 @Nonnull TypeCollection types; field in TypeListPool.Key
84 public Key(@Nonnull TypeCollection types) { in Key()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DBuilderTypeList.java44 @Nonnull final List<? extends BuilderTypeReference> types; field in BuilderTypeList
47 public BuilderTypeList(@Nonnull List<? extends BuilderTypeReference> types) { in BuilderTypeList()
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRops.java1344 public static Rop opIfEq(TypeList types) { in opIfEq()
1356 public static Rop opIfNe(TypeList types) { in opIfNe()
1368 public static Rop opIfLt(TypeList types) { in opIfLt()
1379 public static Rop opIfGe(TypeList types) { in opIfGe()
1390 public static Rop opIfGt(TypeList types) { in opIfGt()
1401 public static Rop opIfLe(TypeList types) { in opIfLe()
1417 private static Rop pickIf(TypeList types, Rop intZ, Rop objZ, Rop intInt, in pickIf()
1461 public static Rop opAdd(TypeList types) { in opAdd()
1474 public static Rop opSub(TypeList types) { in opSub()
1487 public static Rop opMul(TypeList types) { in opMul()
[all …]
/external/chromium_org/tools/json_schema_compiler/test/
Djson_schema_test.json6 "types": {} object
14 "types": {} object
37 "types": { object
48 "types": { object
87 "types": { object
/external/libsepol/tests/
Dtest-linker-types.c128 char *types[2]; in base_type_tests() local
166 char *types[2]; in module_type_tests() local
Dtest-linker-roles.c75 char *types[2]; in base_role_tests() local
105 char *types[3]; in module_role_tests() local
/external/chromium_org/components/autofill/core/browser/
Dform_group.cc19 ServerFieldTypeSet types; in GetMatchingTypes() local
30 ServerFieldTypeSet types; in GetNonEmptyTypes() local
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentMarker.h60 bool intersects(const MarkerTypes& types) const { return (m_mask & types.m_mask); } in intersects()
63 void add(const MarkerTypes& types) { m_mask |= types.m_mask; } in add()
64 void remove(const MarkerTypes& types) { m_mask &= ~types.m_mask; } in remove()
/external/smack/src/org/xbill/DNS/
DZone.java235 allRRsets(Object types) { in allRRsets()
246 oneRRset(Object types, int type) { in oneRRset()
266 Object types = exactName(name); in findRRset() local
276 Object types = data.get(name); in addRRset() local
307 Object types = data.get(name); in removeRRset() local
337 Object types; in lookup() local
446 Object types = exactName(name); in findExactMatch() local
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/test_json/
Dref_test_data_source.json3 "types": [ array
19 "types": [ array

12345678910>>...19