Home
last modified time | relevance | path

Searched refs:suffix (Results 1 – 11 of 11) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc28 #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/
Dcommon_runtime_test.h42 ScratchFile(const ScratchFile& other, const char* suffix);
Dcommon_runtime_test.cc65 ScratchFile::ScratchFile(const ScratchFile& other, const char* suffix) { in ScratchFile() argument
67 filename_ += suffix; in ScratchFile()
Ddex_file.cc971 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()
Dutils.cc977 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()
Dutils.h313 bool EndsWith(const std::string& s, const char* suffix);
Dclass_linker.cc4536 const char* suffix) { in DumpClass() argument
4538 os << dex_file.GetClassDescriptor(dex_class_def) << suffix << ":\n"; in DumpClass()
/art/tools/
Dcpplint.py2942 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/
Dmir_graph.cc874 void MIRGraph::DumpCFG(const char* dir_prefix, bool all_blocks, const char *suffix) { in DumpCFG() argument
885 suffix == nullptr ? "" : suffix, in DumpCFG()
Dmir_graph.h645 void DumpCFG(const char* dir_prefix, bool all_blocks, const char* suffix = nullptr);
/art/compiler/utils/
Dassembler_thumb_test.cc119 std::string suffix = subdir.substr(eabi + strlen(TOOL_PREFIX)); in GetAndroidToolsDir() local
120 double version = strtod(suffix.c_str(), nullptr); in GetAndroidToolsDir()