Home
last modified time | relevance | path

Searched refs:type (Results 76 – 100 of 521) sorted by relevance

12345678910>>...21

/art/libartbase/base/
Dtransform_iterator.h48 using ResultType = typename std::result_of<Function(InputType)>::type;
53 typename std::remove_const<typename std::remove_reference<ResultType>::type>::type;
57 typename std::add_pointer<typename std::remove_reference<ResultType>::type>::type,
58 TransformIterator>::type;
Dbit_struct.h178 StorageType>::type;
232 BitStructNumber<typename detail::MinimumTypeHelper<int, kBitOffset + kBitWidth>::type,
243 BitStructNumber<typename detail::MinimumTypeHelper<unsigned int, kBitOffset + kBitWidth>::type,
264 typename detail::MinimumTypeUnsignedHelper<(bitwidth)>::type; \
273 #define BITSTRUCT_FIELD(type, bit_offset, bit_width) \ argument
274 BitStructField<type, (bit_offset), (bit_width), StorageType>
/art/test/800-smali/smali/
Db_25494456.smali5 # Ensure that a type mismatch (integral/float vs reference) overrides a soft failure (because of
6 # an unresolvable type) in return-object.
Db_22045582.smali3 # Fail verification of a method that returns an undefined register even if the return type
10 # v1 is undefined, and the return type cannot be resolved. The Undefined should take
Db_27799205_4.smali4 # A class with an unresolved array type should not fail hard (unless it's a primitive-type access).
12 # Use some primitive-type array input.
/art/test/998-redefine-use-after-free/src-ex/art/
DRedefinition.java47 public static void setTestConfiguration(Config type) { in setTestConfiguration() argument
48 nativeSetTestConfiguration(type.val); in setTestConfiguration()
51 private static native void nativeSetTestConfiguration(int type); in nativeSetTestConfiguration() argument
/art/test/1948-obsolete-const-method-handle/util-src/src/art/
DRedefinition.java47 public static void setTestConfiguration(Config type) { in setTestConfiguration() argument
48 nativeSetTestConfiguration(type.val); in setTestConfiguration()
51 private static native void nativeSetTestConfiguration(int type); in nativeSetTestConfiguration() argument
/art/test/981-dedup-original-dex/src-art/art/
DRedefinition.java47 public static void setTestConfiguration(Config type) { in setTestConfiguration() argument
48 nativeSetTestConfiguration(type.val); in setTestConfiguration()
51 private static native void nativeSetTestConfiguration(int type); in nativeSetTestConfiguration() argument
/art/tools/veridex/
Dhidden_api.h56 const auto type = GetApiClassName(signature); in AddSignatureSource() local
57 auto it = source_.find(type); in AddSignatureSource()
59 source_[type] = source; in AddSignatureSource()
61 LOG(WARNING) << type << "is present both in boot and in app."; in AddSignatureSource()
/art/tools/bisection_search/
Dbisection_search.py313 command_opts.add_argument('-cp', '--classpath', type=str, help='classpath')
314 command_opts.add_argument('--class', dest='classname', type=str,
316 command_opts.add_argument('--lib', type=str, default='libart.so',
323 command_opts.add_argument('--image', type=str, help='path to image')
324 command_opts.add_argument('--raw-cmd', type=str,
334 bisection_opts.add_argument('--expected-output', type=str,
337 '--expected-retcode', type=str, help='expected normalized return code',
340 '--check-script', type=str,
343 '--logfile', type=str, help='custom logfile location')
346 bisection_opts.add_argument('--timeout', type=int, default=60,
/art/test/046-reflect/
Dexpected.txt6 Return type is int
11 Return type is int
15 Return type is void
22 Return type is int
38 Field type is java.lang.String
51 Field type is int
64 Field type is int
69 Field type is double
76 Field type is java.lang.String
81 Field type is int
/art/runtime/arch/
Darch_test.cc128 #define TEST_ARCH_TYPE(Arch, arch, type) \ argument
129 EXPECT_EQ(arch::Arch##CalleeSaveFrame::GetFrameSize(CalleeSaveType::k##type), \
130 arch::kFrameSize##type); \
131 EXPECT_EQ(arch::Arch##CalleeSaveFrame::GetReturnPcOffset(CalleeSaveType::k##type), \
132 arch::kFrameSize##type - static_cast<size_t>(k##Arch##PointerSize))
/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmServer.cc31 static void DdmServer_nativeSendChunk(JNIEnv* env, jclass, jint type, in DdmServer_nativeSendChunk() argument
38 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(static_cast<uint32_t>(type), chunk); in DdmServer_nativeSendChunk()
/art/runtime/
Djvalue-inl.h30 #define DEFINE_FROM(type, chr) \ argument
31 template <> inline JValue JValue::FromPrimitive(type v) { \
/art/test/518-null-array-get/
Dinfo.txt1 Codifies that the verifier should reject type-unsafe
3 type-safe dead code.
/art/compiler/optimizing/
Dscheduler_arm.h102 #define DECLARE_VISIT_INSTRUCTION(type, unused) \ argument
103 void Visit##type(H##type* instruction) override;
146 #define CASE_INSTRUCTION_KIND(type, unused) case \ in IsSchedulable() argument
147 HInstruction::InstructionKind::k##type: in IsSchedulable()
Dinstruction_builder.h87 HInstruction* LoadLocal(uint32_t register_index, DataType::Type type) const;
98 void Unop_12x(const Instruction& instruction, DataType::Type type, uint32_t dex_pc);
101 void Binop_23x(const Instruction& instruction, DataType::Type type, uint32_t dex_pc);
104 void Binop_23x_shift(const Instruction& instruction, DataType::Type type, uint32_t dex_pc);
107 DataType::Type type,
112 void Binop_12x(const Instruction& instruction, DataType::Type type, uint32_t dex_pc);
115 void Binop_12x_shift(const Instruction& instruction, DataType::Type type, uint32_t dex_pc);
135 DataType::Type type,
139 void BuildReturn(const Instruction& instruction, DataType::Type type, uint32_t dex_pc);
/art/tools/ahat/src/main/com/android/ahat/proguard/
DProguardMap.java244 String type = trimmed.substring(0, ws); in readFromReader() local
258 int colon = type.indexOf(':'); in readFromReader()
260 obfuscatedLine = Integer.parseInt(type.substring(0, colon)); in readFromReader()
262 type = type.substring(colon + 1); in readFromReader()
264 colon = type.indexOf(':'); in readFromReader()
266 obfuscatedLineEnd = Integer.parseInt(type.substring(0, colon)); in readFromReader()
267 type = type.substring(colon + 1); in readFromReader()
294 String clearSig = fromProguardSignature(sig + type); in readFromReader()
/art/runtime/entrypoints/
Dentrypoint_utils.h131 template<FindFieldType type, bool access_check>
139 template<InvokeType type, bool access_check>
150 FindFieldType type,
155 template <InvokeType type, bool access_check>
198 CalleeSaveType type,
207 CallerAndOuterMethod GetCalleeSaveMethodCallerAndOuterMethod(Thread* self, CalleeSaveType type)
210 ArtMethod* GetCalleeSaveOuterMethod(Thread* self, CalleeSaveType type)
/art/runtime/verifier/
Dreg_type_cache.cc328 const PreciseConstType* type = small_precise_constants_[value - kMinSmallConstant]; in ShutDown() local
329 delete type; in ShutDown()
341 using type = T; typedef
358 auto create_primitive_type_instance = [&](auto type) REQUIRES_SHARED(Locks::mutator_lock_) { in CreatePrimitiveAndSmallConstantTypes()
359 using Type = typename decltype(type)::type; in CreatePrimitiveAndSmallConstantTypes()
362 DCHECK(type.descriptor != nullptr); in CreatePrimitiveAndSmallConstantTypes()
363 if (strlen(type.descriptor) > 0) { in CreatePrimitiveAndSmallConstantTypes()
364 klass = class_linker->FindSystemClass(Thread::Current(), type.descriptor); in CreatePrimitiveAndSmallConstantTypes()
368 type.descriptor, in CreatePrimitiveAndSmallConstantTypes()
388 PreciseConstType* type = new PreciseConstType(value, primitive_count_); in CreatePrimitiveAndSmallConstantTypes() local
[all …]
/art/runtime/mirror/
Dfield-inl.h49 inline void Field::SetType(ObjPtr<Class> type) { in SetType() argument
50 SetFieldObject<kTransactionActive, kCheckTransaction>(TypeOffset(), type); in SetType()
/art/cmdline/detail/
Dcmdline_parser_detail.h28 typename std::remove_reference<T>::type& FakeReference();
93 SupportsInsertionOperator<T>::value>::type* = nullptr) {
102 SupportsInsertionOperator<T>::value>::type* = nullptr) {
121 !SupportsInsertionOperator<T>::value>::type* = nullptr
/art/test/135-MirandaDispatch/
Dinfo.txt3 … 'void Main$TheInterface.m()' was expected to be of type virtual but instead was found to be of ty…
/art/test/1948-obsolete-const-method-handle/
Dinfo.txt1 Tests that obsolete methods work correctly in the presence of const-method-type.
3 const-method-type and the invoke-custom/polymorphic opcodes are new in dex 39.
/art/openjdkjvmti/
Dti_method.cc619 SlotType type,
626 /*out*/SlotType* type)
632 /*out*/ SlotType* type) in InferSlotTypeFromVerifier() argument
659 *type = VerifierPrimitiveType::kReferenceValue; in InferSlotTypeFromVerifier()
663 *type = VerifierPrimitiveType::kZeroValue; in InferSlotTypeFromVerifier()
667 *type = VerifierPrimitiveType::k32BitValue; in InferSlotTypeFromVerifier()
671 *type = VerifierPrimitiveType::k64BitValue; in InferSlotTypeFromVerifier()
740 /*out*/ SlotType* type) { in GetSlotType() argument
750 *type = art::Primitive::kPrimVoid; in GetSlotType()
756 *type = art::Primitive::GetType(entry.descriptor_[0]); in GetSlotType()
[all …]

12345678910>>...21