Home
last modified time | relevance | path

Searched refs:Name (Results 1 – 25 of 53) sorted by relevance

123

/art/libartpalette/apex/
Dpalette.cc40 #define PALETTE_METHOD_TYPE_ALIAS(Name, ...) \ argument
41 using Name ## Method = PaletteStatus(*)(__VA_ARGS__);
55 #define PALETTE_LOADER_METHOD_ACCESSOR(Name, ...) \ argument
56 Name ## Method Get ## Name ## Method() const { return Name ## Method ## _; }
70 #define PALETTE_LOADER_METHOD_FIELD(Name, ...) \ argument
71 const Name ## Method Name ## Method ## _;
102 #define PALETTE_LOADER_BIND_METHOD(Name, ...) \ in PaletteLoader() argument
103 , Name ## Method ## _(reinterpret_cast<Name ## Method>(GetMethod(palette_lib_, #Name))) in PaletteLoader()
/art/runtime/
Druntime_options.h45 #define DECLARE_KEY(Type, Name) static const Key<Type> Name argument
75 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) static const Key<Type> (Name); argument
Druntime_options.cc34 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap… argument
Dintrinsics_enum.h23 #define OPTIMIZING_INTRINSICS(Name, ...) \ argument
24 k ## Name,
Druntime_intrinsics.cc70 #define SETUP_INTRINSICS(Name, InvokeType, _, __, ___, ClassName, MethodName, Signature) \ in InitializeIntrinsics() argument
72 Intrinsics::k##Name, \ in InitializeIntrinsics()
/art/compiler/optimizing/
Dintrinsics_x86_64.h39 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
40 void Visit ## Name(HInvoke* invoke) override;
64 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
65 void Visit ## Name(HInvoke* invoke) override;
Dintrinsics_arm_vixl.h36 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
37 void Visit ## Name(HInvoke* invoke) override;
63 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
64 void Visit ## Name(HInvoke* invoke) override;
Dintrinsics_mips.h39 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
40 void Visit ## Name(HInvoke* invoke) override;
64 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
65 void Visit ## Name(HInvoke* invoke) override;
Dintrinsics_x86.h39 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
40 void Visit ## Name(HInvoke* invoke) override;
64 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
65 void Visit ## Name(HInvoke* invoke) override;
Dintrinsics_mips64.h39 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
40 void Visit ## Name(HInvoke* invoke) override;
64 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
65 void Visit ## Name(HInvoke* invoke) override;
Dintrinsics_arm64.h47 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
48 void Visit ## Name(HInvoke* invoke) override;
72 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...… argument
73 void Visit ## Name(HInvoke* invoke) override;
Dintrinsics.h46 #define OPTIMIZING_INTRINSICS(Name, ...) \ in Dispatch() argument
47 case Intrinsics::k ## Name: \ in Dispatch()
48 Visit ## Name(invoke); \ in Dispatch()
61 #define OPTIMIZING_INTRINSICS(Name, ...) \ argument
62 virtual void Visit ## Name(HInvoke* invoke ATTRIBUTE_UNUSED) { \
236 #define UNIMPLEMENTED_INTRINSIC(Arch, Name) \ argument
237 void IntrinsicLocationsBuilder ## Arch::Visit ## Name(HInvoke* invoke ATTRIBUTE_UNUSED) { \
239 void IntrinsicCodeGenerator ## Arch::Visit ## Name(HInvoke* invoke ATTRIBUTE_UNUSED) { \
246 #define UNREACHABLE_INTRINSIC(Arch, Name) \ argument
247 void IntrinsicLocationsBuilder ## Arch::Visit ## Name(HInvoke* invoke) { \
[all …]
/art/libartpalette/include/palette/
Dpalette.h28 #define PALETTE_METHOD_DECLARATION(Name, ...) \ argument
29 enum PaletteStatus Name(__VA_ARGS__);
/art/compiler/driver/
Dcompiler_options_map-storage.h37 #define COMPILER_OPTIONS_KEY(Type, Name, ...) \ argument
39 const KeyType<Type> CompilerOptionsMap<Base, KeyType>::Name {__VA_ARGS__};
Dcompiler_options_map.h39 #define COMPILER_OPTIONS_KEY(Type, Name, ...) static const Key<Type> (Name); argument
/art/cmdline/
Dcmdline_types.h92 static const char* Name() { return "JdwpProvider"; }
178 static const char* Name() { return Memory<Divisor>::Name(); }
199 static const char* Name() { return "double"; }
231 static const char* Name() { return "unsigned integer"; }
240 static const char* Name() { return "integer"; }
294 static const char* Name() { return "MillisecondsToNanoseconds"; }
328 static const char* Name() { return "std::vector<Plugin>"; }
344 static const char* Name() { return "std::list<ti::AgentSpec>"; }
360 static const char* Name() { return "std::vector<std::string>"; }
405 static const char* Name() { return "ParseStringList<Separator>"; }
[all …]
Dcmdline_type_parser.h56 static const char* Name() { assert(false); return "UnspecializedType"; } in Name() function
Dmemory_representation.h49 static const char* Name() { in Name() function
/art/dex2oat/
Ddex2oat_options.h71 #define DEX2OAT_OPTIONS_KEY(Type, Name, ...) static const Key<Type> (Name); argument
Ddex2oat_options.cc36 static const char* Name() { return "InstructionSet"; } in Name() function
45 #define DEX2OAT_OPTIONS_KEY(Type, Name, ...) \ argument
46 const Dex2oatArgumentMap::Key<Type> Dex2oatArgumentMap::Name {__VA_ARGS__};
/art/tools/ahat/etc/
Dahat.mf1 Name: ahat/
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc384 VLOG(compiler) << "Replacing " << Instruction::Name(inst->Opcode()) in CompileReturnVoid()
385 << " by " << Instruction::Name(Instruction::RETURN_VOID_NO_BARRIER) in CompileReturnVoid()
406 VLOG(compiler) << "Removing " << Instruction::Name(inst->Opcode()) in CompileCheckCast()
439 VLOG(compiler) << "Quickening " << Instruction::Name(inst->Opcode()) in CompileInstanceFieldAccess()
440 << " to " << Instruction::Name(new_opcode) in CompileInstanceFieldAccess()
487 VLOG(compiler) << "Quickening " << Instruction::Name(inst->Opcode()) in CompileInvokeVirtual()
489 << " to " << Instruction::Name(new_opcode) in CompileInvokeVirtual()
/art/runtime/base/
Dtiming_logger.h54 return a->Name() < b->Name(); in operator()
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md35 …ST_OUT/lib64/libopenjdkjvmti.so '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' …
41 > `java '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' -cp tmp/helloworld/cla…
/art/dexlayout/
Ddex_verify.cc142 if (orig->Name()->GetIndex() != output->Name()->GetIndex()) { in VerifyId()
146 orig->Name()->GetIndex(), in VerifyId()
147 output->Name()->GetIndex()); in VerifyId()
170 if (orig->Name()->GetIndex() != output->Name()->GetIndex()) { in VerifyId()
175 orig->Name()->GetIndex(), in VerifyId()
176 output->Name()->GetIndex()); in VerifyId()

123