Searched refs:suffix (Results 1 – 11 of 11) sorted by relevance
/art/runtime/entrypoints/quick/ |
D | quick_alloc_entrypoints.cc | 28 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, suffix2, instrumented_bool, allocator_type)… argument 29 extern "C" mirror::Object* artAllocObjectFromCode ##suffix##suffix2( \ 36 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \ 43 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \ 50 extern "C" mirror::Object* artAllocObjectFromCodeWithAccessCheck##suffix##suffix2( \ 57 extern "C" mirror::Array* artAllocArrayFromCode##suffix##suffix2( \ 65 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \ 73 extern "C" mirror::Array* artAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \ 81 extern "C" mirror::Array* artCheckAndAllocArrayFromCode##suffix##suffix2( \ 92 extern "C" mirror::Array* artCheckAndAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \ [all …]
|
/art/runtime/ |
D | common_runtime_test.h | 42 ScratchFile(const ScratchFile& other, const char* suffix);
|
D | common_runtime_test.cc | 65 ScratchFile::ScratchFile(const ScratchFile& other, const char* suffix) { in ScratchFile() argument 67 filename_ += suffix; in ScratchFile()
|
D | dex_file.cc | 971 const char* suffix = dex_location + base_location.size(); in GetDexCanonicalLocation() local 972 DCHECK(suffix[0] == 0 || suffix[0] == kMultiDexSeparator); in GetDexCanonicalLocation() 975 return std::string(path.get()) + suffix; in GetDexCanonicalLocation() 976 } else if (suffix[0] == 0) { in GetDexCanonicalLocation()
|
D | utils.cc | 977 bool EndsWith(const std::string& s, const char* suffix) { in EndsWith() argument 978 size_t suffix_length = strlen(suffix); in EndsWith() 984 return s.compare(offset, suffix_length, suffix) == 0; in EndsWith()
|
D | utils.h | 313 bool EndsWith(const std::string& s, const char* suffix);
|
D | class_linker.cc | 4536 const char* suffix) { in DumpClass() argument 4538 os << dex_file.GetClassDescriptor(dex_class_def) << suffix << ":\n"; in DumpClass()
|
/art/tools/ |
D | cpplint.py | 2942 for suffix in ('test.cc', 'regtest.cc', 'unittest.cc', 2944 if (filename.endswith(suffix) and len(filename) > len(suffix) and 2945 filename[-len(suffix) - 1] in ('-', '_')): 2946 return filename[:-len(suffix) - 1]
|
/art/compiler/dex/ |
D | mir_graph.cc | 874 void MIRGraph::DumpCFG(const char* dir_prefix, bool all_blocks, const char *suffix) { in DumpCFG() argument 885 suffix == nullptr ? "" : suffix, in DumpCFG()
|
D | mir_graph.h | 645 void DumpCFG(const char* dir_prefix, bool all_blocks, const char* suffix = nullptr);
|
/art/compiler/utils/ |
D | assembler_thumb_test.cc | 119 std::string suffix = subdir.substr(eabi + strlen(TOOL_PREFIX)); in GetAndroidToolsDir() local 120 double version = strtod(suffix.c_str(), nullptr); in GetAndroidToolsDir()
|