Searched defs:type (Results 1 - 25 of 209) sorted by relevance

123456789

/art/test/964-default-iface-init-gen/src/
H A DDisplayer.java18 public Displayer(String type) { argument
19 System.out.println("initialization of " + type);
/art/compiler/optimizing/
H A Ddata_type-inl.h26 constexpr DataType::Type DataTypeFromPrimitive(Primitive::Type type) { argument
27 switch (type) {
43 constexpr DataType::Type DataType::FromShorty(char type) { argument
44 return DataTypeFromPrimitive(Primitive::GetType(type));
47 constexpr char DataType::TypeId(DataType::Type type) { argument
50 switch (type) {
H A Ddata_type.cc37 const char* DataType::PrettyDescriptor(Type type) { argument
40 uint32_t uint_type = static_cast<uint32_t>(type);
45 std::ostream& operator<<(std::ostream& os, DataType::Type type) { argument
46 uint32_t uint_type = static_cast<uint32_t>(type);
H A Dssa_builder.h44 * that require merging and have a proper type after the merge, are
70 HInstruction* GetFloatOrDoubleEquivalent(HInstruction* instruction, DataType::Type type);
74 DataType::Type type = aget->GetType(); local
75 DCHECK(!DataType::IsFloatingPointType(type));
76 if (DataType::IsIntOrLongType(type)) {
82 DataType::Type type = aset->GetValue()->GetType(); local
83 if (DataType::IsIntOrLongType(type)) {
106 // Attempts to resolve types of aget(-wide) instructions and type values passed
107 // to aput(-wide) instructions from reference type information on the array
108 // input. Returns false if the type o
[all...]
/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DField.java29 * The type of the field.
31 public final Type type; field in class:Field
37 * @param type type of the field
39 public Field(String name, Type type) { argument
41 this.type = type;
H A DFieldValue.java29 * The type of the field.
31 public final Type type; field in class:FieldValue
42 * @param type type of the field
45 public FieldValue(String name, Type type, Value value) { argument
47 this.type = type;
H A DDiffedFieldValue.java32 * The type of the field.
34 public final Type type; field in class:DiffedFieldValue
83 current.type,
96 return new DiffedFieldValue(current.name, current.type, current.value, null, Status.ADDED);
106 return new DiffedFieldValue(baseline.name, baseline.type, null, baseline.value, Status.DELETED);
109 private DiffedFieldValue(String name, Type type, Value current, Value baseline, Status status) { argument
111 this.type = type;
122 && type.equals(other.type)
[all...]
/art/libdexfile/dex/
H A Dprimitive.cc49 const char* Primitive::PrettyDescriptor(Primitive::Type type) { argument
52 CHECK(Primitive::kPrimNot <= type && type <= Primitive::kPrimVoid) << static_cast<int>(type);
53 return kTypeNames[type];
56 const char* Primitive::BoxedDescriptor(Primitive::Type type) { argument
59 CHECK(Primitive::kPrimNot <= type && type <= Primitive::kPrimVoid) << static_cast<int>(type);
60 return kBoxedDescriptors[type];
63 operator <<(std::ostream& os, Primitive::Type type) argument
[all...]
/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmServer.cc31 static void DdmServer_nativeSendChunk(JNIEnv* env, jclass, jint type, argument
38 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(static_cast<uint32_t>(type), chunk);
/art/libartbase/base/
H A Dcallee_save_type.h37 static inline constexpr CalleeSaveType GetCanonicalCalleeSaveType(CalleeSaveType type) { argument
38 if (type == CalleeSaveType::kSaveEverythingForClinit ||
39 type == CalleeSaveType::kSaveEverythingForSuspendCheck) {
42 return type;
/art/runtime/arch/x86_64/
H A Dquick_method_frame_info_x86_64.h58 constexpr uint32_t X86_64CalleeSaveCoreSpills(CalleeSaveType type) { argument
59 type = GetCanonicalCalleeSaveType(type);
61 (type == CalleeSaveType::kSaveRefsAndArgs ? kX86_64CalleeSaveArgSpills : 0) |
62 (type == CalleeSaveType::kSaveEverything ? kX86_64CalleeSaveEverythingSpills : 0);
65 constexpr uint32_t X86_64CalleeSaveFpSpills(CalleeSaveType type) { argument
66 type = GetCanonicalCalleeSaveType(type);
68 (type == CalleeSaveType::kSaveRefsAndArgs ? kX86_64CalleeSaveFpArgSpills : 0) |
69 (type
72 X86_64CalleeSaveFrameSize(CalleeSaveType type) argument
79 X86_64CalleeSaveMethodFrameInfo(CalleeSaveType type) argument
[all...]
/art/runtime/entrypoints/quick/
H A Dcallee_save_frame.h70 static constexpr size_t GetCalleeSaveFrameSize(InstructionSet isa, CalleeSaveType type) { argument
74 return arm::ArmCalleeSaveFrameSize(type);
76 return arm64::Arm64CalleeSaveFrameSize(type);
78 return mips::MipsCalleeSaveFrameSize(type);
80 return mips64::Mips64CalleeSaveFrameSize(type);
82 return x86::X86CalleeSaveFrameSize(type);
84 return x86_64::X86_64CalleeSaveFrameSize(type);
118 static constexpr size_t GetCalleeSaveReturnPcOffset(InstructionSet isa, CalleeSaveType type) { argument
119 return GetCalleeSaveFrameSize(isa, type) - static_cast<size_t>(GetConstExprPointerSize(isa));
H A Dquick_field_entrypoints.cc31 inline constexpr bool FindFieldTypeIsRead(FindFieldType type) { argument
32 return type == InstanceObjectRead ||
33 type == InstancePrimitiveRead ||
34 type == StaticObjectRead ||
35 type == StaticPrimitiveRead;
41 template<FindFieldType type, bool kAccessCheck>
51 ArtField* field = FindFieldFromCode<type, kAccessCheck>(field_idx, referrer, self, size);
53 ThrowNullPointerExceptionForFieldAccess(field, /*is_read*/FindFieldTypeIsRead(type));
/art/runtime/gc/
H A Dsystem_weak_test.cc110 CollectorType type = Runtime::Current()->GetHeap()->CurrentCollectorType(); local
111 switch (type) {
122 CollectorType type = Runtime::Current()->GetHeap()->CurrentCollectorType(); local
123 switch (type) {
/art/runtime/mirror/
H A Dfield-inl.h33 // Try to resolve type before allocating since this is a thread suspension point.
34 Handle<mirror::Class> type = hs.NewHandle(field->ResolveType()); local
36 if (type == nullptr) {
43 // Can't resolve, clear the exception if it isn't OOME and continue with a null type.
73 ret->SetType<kTransactionActive>(type.Get());
87 inline void Field::SetType(ObjPtr<mirror::Class> type) { argument
88 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type); local
/art/test/661-oat-writer-layout/
H A Doat_writer_layout.cc66 OatClassType type = oat_class.GetType(); local
67 switch (type) {
/art/compiler/debug/dwarf/
H A Ddebug_abbrev_writer.h38 // It is possible to think of them as type definitions.
41 static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type");
59 void AddAbbrevAttribute(Attribute name, Form type) { argument
61 EncodeUnsignedLeb128(&current_abbrev_, type);
/art/runtime/arch/
H A Dmemcmp16_test.cc54 size_t type = r.next() % range_of_tests; local
58 switch (type) {
/art/runtime/arch/mips/
H A Dquick_method_frame_info_mips.h46 // odd number of integer registers was when "type" is
83 constexpr uint32_t MipsCalleeSaveCoreSpills(CalleeSaveType type) { argument
84 type = GetCanonicalCalleeSaveType(type);
86 (type == CalleeSaveType::kSaveRefsAndArgs ? kMipsCalleeSaveArgSpills : 0) |
87 (type == CalleeSaveType::kSaveAllCalleeSaves ? kMipsCalleeSaveAllSpills : 0) |
88 (type == CalleeSaveType::kSaveEverything ? kMipsCalleeSaveEverythingSpills : 0);
91 constexpr uint32_t MipsCalleeSaveFPSpills(CalleeSaveType type) { argument
92 type = GetCanonicalCalleeSaveType(type);
99 MipsCalleeSaveFrameSize(CalleeSaveType type) argument
106 MipsCalleeSaveMethodFrameInfo(CalleeSaveType type) argument
[all...]
/art/runtime/arch/mips64/
H A Dquick_method_frame_info_mips64.h74 constexpr uint32_t Mips64CalleeSaveCoreSpills(CalleeSaveType type) { argument
75 type = GetCanonicalCalleeSaveType(type);
77 (type == CalleeSaveType::kSaveRefsAndArgs ? kMips64CalleeSaveArgSpills : 0) |
78 (type == CalleeSaveType::kSaveAllCalleeSaves ? kMips64CalleeSaveAllSpills : 0) |
79 (type == CalleeSaveType::kSaveEverything ? kMips64CalleeSaveEverythingSpills : 0);
82 constexpr uint32_t Mips64CalleeSaveFpSpills(CalleeSaveType type) { argument
83 type = GetCanonicalCalleeSaveType(type);
85 (type
90 Mips64CalleeSaveFrameSize(CalleeSaveType type) argument
97 Mips64CalleeSaveMethodFrameInfo(CalleeSaveType type) argument
[all...]
/art/runtime/
H A Dart_field.cc38 Primitive::Type type = GetTypeAsPrimitiveType(); local
39 if (type == Primitive::kPrimDouble || type == Primitive::kPrimLong) {
H A Dclass_loader_context.h106 // - the number and type of the class loaders from the chain matches
151 // The type of this class loader.
152 ClassLoaderType type; member in struct:art::ClassLoaderContext::ClassLoaderInfo
167 explicit ClassLoaderInfo(ClassLoaderType cl_type) : type(cl_type) {}
214 // Extracts the class loader type from the given spec.
215 // Return ClassLoaderContext::kInvalidClassLoader if the class loader type is not
219 // Returns the string representation of the class loader type.
221 static const char* GetClassLoaderTypeName(ClassLoaderType type);
223 // Returns the WellKnownClass for the given class loader type.
224 static jclass GetClassLoaderClass(ClassLoaderType type);
[all...]
H A Dimtable-inl.h69 const DexFile::TypeItem& type = param_types->GetTypeItem(i); local
71 dex_file->GetTypeDescriptor(dex_file->GetTypeId(type.type_idx_)));
/art/runtime/interpreter/
H A Dsafe_math.h26 // Declares a type which is the larger in bit size of the two template parameters.
29 typedef typename std::conditional<sizeof(T1) >= sizeof(T2), T1, T2>::type type; typedef in struct:art::interpreter::select_bigger
34 static inline typename select_bigger<T1, T2>::type SafeMath(T1 a, T2 b) {
35 typedef typename select_bigger<T1, T2>::type biggest_T;
36 typedef typename std::make_unsigned<biggest_T>::type unsigned_biggest_T;
46 static inline typename select_bigger<T1, T2>::type SafeAdd(T1 a, T2 b) {
52 static inline typename select_bigger<T1, T2>::type SafeSub(T1 a, T2 b) {
58 static inline typename select_bigger<T1, T2>::type SafeMul(T1 a, T2 b) {
/art/test/981-dedup-original-dex/src-art/art/
H A DTest981.java156 private static Object getObjectField(Object o, Class<?> type, String name) throws Exception { argument
157 Field f = type.getDeclaredField(name);

Completed in 3110 milliseconds

123456789