Home
last modified time | relevance | path

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

/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc30 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, suffix2, instrumented_bool, allocator_type)… argument
31 extern "C" mirror::Object* artAllocObjectFromCode ##suffix##suffix2( \
58 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \
85 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \
110 extern "C" mirror::Object* artAllocObjectFromCodeWithAccessCheck##suffix##suffix2( \
116 extern "C" mirror::Array* artAllocArrayFromCode##suffix##suffix2( \
123 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
130 extern "C" mirror::Array* artAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
137 extern "C" mirror::Array* artCheckAndAllocArrayFromCode##suffix##suffix2( \
147 extern "C" mirror::Array* artCheckAndAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
[all …]
/art/cmdline/
Dcmdline_types.h764 std::string suffix = RemovePrefix(option);
771 type_parser.Parse(suffix));
777 type_parser.Parse(suffix));
783 type_parser.Parse(suffix));
789 type_parser.Parse(suffix));
795 type_parser.Parse(suffix),
807 type_parser.Parse(suffix),
815 type_parser.Parse(suffix),
829 type_parser.Parse(suffix));
/art/runtime/
Dcommon_runtime_test.h43 ScratchFile(const ScratchFile& other, const char* suffix);
153 static std::string GetCoreFileLocation(const char* suffix);
Dcommon_runtime_test.cc78 ScratchFile::ScratchFile(const ScratchFile& other, const char* suffix) { in ScratchFile() argument
80 filename_ += suffix; in ScratchFile()
559 std::string CommonRuntimeTest::GetCoreFileLocation(const char* suffix) { in GetCoreFileLocation() argument
560 CHECK(suffix != nullptr); in GetCoreFileLocation()
566 location = StringPrintf("%s/framework/core.%s", host_dir, suffix); in GetCoreFileLocation()
568 location = StringPrintf("/data/art-test/core.%s", suffix); in GetCoreFileLocation()
Dstack_map.cc205 const std::string& suffix = "") { in DumpRegisterMapping() argument
208 << " (" << location.GetValue() << ")" << suffix << '\n'; in DumpRegisterMapping()
Ddex_file.cc1034 const char* suffix = dex_location + base_location.size(); in GetDexCanonicalLocation() local
1035 DCHECK(suffix[0] == 0 || suffix[0] == kMultiDexSeparator); in GetDexCanonicalLocation()
1038 return std::string(path.get()) + suffix; in GetDexCanonicalLocation()
1039 } else if (suffix[0] == 0) { in GetDexCanonicalLocation()
Dutils.h106 bool EndsWith(const std::string& s, const char* suffix);
Dutils.cc941 bool EndsWith(const std::string& s, const char* suffix) { in EndsWith() argument
942 size_t suffix_length = strlen(suffix); in EndsWith()
948 return s.compare(offset, suffix_length, suffix) == 0; in EndsWith()
Dclass_linker.cc4129 const char* suffix) { in DumpClass() argument
4131 os << dex_file.GetClassDescriptor(dex_class_def) << suffix << ":\n"; in DumpClass()
/art/imgdiag/
Dimgdiag.cc80 static bool EndsWith(const std::string& str, const std::string& suffix) { in EndsWith() argument
81 return str.size() >= suffix.size() && in EndsWith()
82 str.compare(str.size() - suffix.size(), suffix.size(), suffix) == 0; in EndsWith()
/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/build/
DAndroid.gtest.mk53 ART_TEST_HOST_GTEST_MainStripped_DEX := $(basename $(ART_TEST_HOST_GTEST_Main_DEX))Stripped$(suffix
54 …inStripped_DEX := $(basename $(ART_TEST_TARGET_GTEST_Main_DEX))Stripped$(suffix $(ART_TEST_TARGET_…
/art/compiler/dex/
Dmir_graph.cc933 const char *suffix, int nr, std::string* output) { in CreateDumpFile() argument
942 suffix == nullptr ? "" : suffix, nr); in CreateDumpFile()
957 void MIRGraph::DumpCFG(const char* dir_prefix, bool all_blocks, const char *suffix) { in DumpCFG() argument
969 suffix, nr, &fpath)) { in DumpCFG()
Dmir_graph.h679 void DumpCFG(const char* dir_prefix, bool all_blocks, const char* suffix = nullptr);