Searched defs:types (Results 1 - 6 of 6) sorted by relevance

/art/test/031-class-attributes/src/
H A DClassAttrs.java328 private static String stringifyTypeArray(Type[] types) { argument
330 for (Type t : types) {
333 // Sort types alphabetically so they're always printed in the same order.
341 stb.append("[" + types.length + "]");
/art/runtime/verifier/
H A Dreg_type.cc312 const BitVector& types = GetUnresolvedTypes(); local
315 for (uint32_t idx : types.Indexes()) {
689 } else { // Two reference types, compute Join
705 return conflict; // Unexpected types => Conflict
723 // Given the types aren't the same, if either array is of primitive types then the only
800 // Unresolved merged types: merged types should be defined.
813 // Unresolved merged types: merged types shoul
[all...]
/art/test/046-reflect/src/
H A DMain.java542 private static String stringifyTypeArray(Type[] types) { argument
546 stb.append("[" + types.length + "]");
548 for (Type t: types) {
/art/compiler/dex/
H A Dtype_inference_test.cc1294 static const TypeDef types[] = { local
1306 PrepareTypes(types);
1329 static const TypeDef types[] = { local
1342 PrepareTypes(types);
1366 static const TypeDef types[] = { local
1379 PrepareTypes(types);
1402 static const TypeDef types[] = { local
1416 PrepareTypes(types);
1441 static const TypeDef types[] = { local
1455 PrepareTypes(types);
1480 static const TypeDef types[] = { local
1511 static const TypeDef types[] = { local
1544 static const TypeDef types[] = { local
1576 static const TypeDef types[] = { local
1607 static const TypeDef types[] = { local
1642 static const TypeDef types[] = { local
[all...]
/art/runtime/
H A Dclass_linker.cc246 CHECK(type != Primitive::kPrimNot) << PrettyField(field); // should be primitive types
625 // as the types of the field can't be resolved prior to the runtime being
1485 auto types(hs.NewHandle(AllocClassArray(self, dex_file.NumTypeIds())));
1486 if (types.Get() == nullptr) {
1500 dex_cache->Init(&dex_file, location.Get(), strings.Get(), types.Get(), methods.Get(),
1725 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
2594 // We need to accept erroneous classes as component types.
2908 mirror::ObjectArray<mirror::Class>* types = dex_cache->GetResolvedTypes(); local
2909 for (int32_t j = 0; j < types->GetLength(); j++) {
2910 mirror::Class* klass = types
[all...]
H A Ddebugger.cc1075 // the primitive types).
3827 // Reference types.
3932 const DexFile::TypeList* types = m->GetParameterTypeList(); local
3941 m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);

Completed in 154 milliseconds