Searched defs:Create (Results 1 - 25 of 46) sorted by relevance

12

/art/runtime/arch/
H A Dcontext.cc21 Context* Context::Create() { function in class:art::Context
/art/compiler/utils/
H A Djni_macro_assembler.cc49 MacroAsm32UniquePtr JNIMacroAssembler<PointerSize::k32>::Create( function in class:art::JNIMacroAssembler
84 MacroAsm64UniquePtr JNIMacroAssembler<PointerSize::k64>::Create( function in class:art::JNIMacroAssembler
/art/compiler/
H A Dcompiler.cc29 Compiler* Compiler::Create(CompilerDriver* driver, Compiler::Kind kind) { function in class:art::Compiler
/art/disassembler/
H A Ddisassembler.cc38 Disassembler* Disassembler::Create(InstructionSet instruction_set, DisassemblerOptions* options) { function in class:art::Disassembler
67 return Disassembler::Create(instruction_set, options);
/art/compiler/dex/
H A Dverified_method.cc40 const VerifiedMethod* VerifiedMethod::Create(verifier::MethodVerifier* method_verifier) { function in class:art::VerifiedMethod
/art/runtime/base/
H A Darena_bit_vector.h34 static ArenaBitVector* Create(Allocator* allocator, function in class:art::ArenaBitVector
H A Darena_bit_vector.cc55 static ArenaBitVectorAllocator* Create(ArenaAlloc* allocator, ArenaAllocKind kind) { function in class:art::FINAL
86 ArenaBitVectorAllocator<ArenaAllocator>::Create(allocator, kind)) {
95 ArenaBitVectorAllocator<ScopedArenaAllocator>::Create(allocator, kind)) {
/art/runtime/jit/
H A Dprofiling_info.cc41 bool ProfilingInfo::Create(Thread* self, ArtMethod* method, bool retry_allocation) { function in class:art::ProfilingInfo
/art/runtime/mirror/
H A Dcall_site.cc27 mirror::CallSite* CallSite::Create(Thread* const self, Handle<MethodHandle> target) { function in class:art::mirror::CallSite
H A Dmethod_type.cc28 MethodType* MethodType::Create(Thread* const self, function in class:art::mirror::MethodType
61 return Create(self, rtype, dst_ptypes);
/art/runtime/
H A Dplugin.h38 static Plugin Create(const std::string& lib) { function in class:art::Plugin
62 // Create move constructor for putting this in a list
H A Dtype_lookup_table.cc53 std::unique_ptr<TypeLookupTable> TypeLookupTable::Create(const DexFile& dex_file, function in class:art::TypeLookupTable
/art/compiler/linker/
H A Drelative_patcher.cc43 std::unique_ptr<RelativePatcher> RelativePatcher::Create( function in class:art::linker::RelativePatcher
/art/runtime/gc/accounting/
H A Dbitmap.cc60 Bitmap* Bitmap::Create(const std::string& name, size_t num_bits) { function in class:art::gc::accounting::Bitmap
81 MemoryRangeBitmap<kAlignment>* MemoryRangeBitmap<kAlignment>::Create( function in class:art::gc::accounting::MemoryRangeBitmap
H A Dcard_table.cc58 * byte is equal to GC_DIRTY_CARD. See CardTable::Create for details.
61 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) { function in class:art::gc::accounting::CardTable
H A Datomic_stack.h66 static AtomicStack* Create(const std::string& name, size_t growth_limit, size_t capacity) { function in class:art::gc::accounting::AtomicStack
H A Dmod_union_table_test.cc40 static ModUnionTable* Create(
150 ModUnionTable* ModUnionTableFactory::Create( function in class:art::gc::accounting::ModUnionTableFactory
185 // Create another space that we can put references in.
186 std::unique_ptr<space::DlMallocSpace> other_space(space::DlMallocSpace::Create(
194 std::unique_ptr<ModUnionTable> table(ModUnionTableFactory::Create(
197 // Create some fake objects and put the main space and dirty cards in the non moving space.
/art/compiler/jit/
H A Djit_compiler.cc45 JitCompiler* JitCompiler::Create() { function in class:art::jit::JitCompiler
51 auto* const jit_compiler = JitCompiler::Create();
/art/openjdkjvmti/
H A Dfixed_up_dex_file.cc104 std::unique_ptr<FixedUpDexFile> FixedUpDexFile::Create(const art::DexFile& original, function in class:openjdkjvmti::FixedUpDexFile
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.cc61 X86FeaturesUniquePtr X86InstructionSetFeatures::Create(bool x86_64, function in class:art::X86InstructionSetFeatures
110 return Create(x86_64, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2, has_POPCNT);
120 return Create(x86_64, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2, has_POPCNT);
160 return Create(x86_64, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2, has_POPCNT);
207 return Create(x86_64, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2, has_POPCNT);
330 return Create(x86_64, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2, has_POPCNT);
/art/runtime/gc/space/
H A Dzygote_space.cc44 ZygoteSpace* ZygoteSpace::Create(const std::string& name, MemMap* mem_map, function in class:art::gc::space::ZygoteSpace
/art/runtime/verifier/
H A Dregister_line-inl.h190 inline RegisterLine* RegisterLine::Create(size_t num_regs, MethodVerifier* verifier) { function in class:art::verifier::RegisterLine
/art/compiler/jni/quick/
H A Dcalling_convention.cc49 std::unique_ptr<ManagedRuntimeCallingConvention> ManagedRuntimeCallingConvention::Create( function in class:art::ManagedRuntimeCallingConvention
151 std::unique_ptr<JniCallingConvention> JniCallingConvention::Create(ArenaAllocator* allocator, function in class:art::JniCallingConvention
/art/compiler/optimizing/
H A Dregister_allocator.cc39 std::unique_ptr<RegisterAllocator> RegisterAllocator::Create(ScopedArenaAllocator* allocator, function in class:art::RegisterAllocator
134 ArenaBitVector::Create(&allocator, max_end, false, kArenaAllocRegisterAllocatorValidate));
/art/libdexfile/dex/
H A Dcompact_dex_file.h115 // Create a code item and associated preheader if required based on field values.
118 uint16_t* Create(uint16_t registers_size, function in struct:art::CompactDexFile::CodeItem

Completed in 350 milliseconds

12