Searched refs:string (Results 126 - 150 of 430) sorted by relevance

1234567891011>>

/art/runtime/
H A Dgc_root-inl.h38 inline std::string RootInfo::ToString() const {
H A Dreference_table.h22 #include <string>
62 std::string name_;
H A Dsignal_catcher.cc49 // Note: The string "Cmd line:" is chosen to match the format used by debuggerd.
50 std::string current_cmd_line;
67 SignalCatcher::SignalCatcher(const std::string& stack_trace_file)
102 void SignalCatcher::Output(const std::string& s) {
138 std::string fingerprint = runtime->GetFingerprint();
147 std::string maps;
H A Dprofiler.cc104 std::string data(os.str());
271 std::string full_name = output_filename_;
298 std::string data(os.str());
329 const std::string& output_filename, const ProfilerOptions& options) {
392 const std::string& output_filename, const ProfilerOptions& options)
432 std::string method_full_name = PrettyMethod(method);
590 std::string method_name = PrettyMethod(method);
616 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file));
630 std::vector<std::string> context_vector;
637 std::string context_si
[all...]
/art/runtime/lambda/
H A Dclosure_builder-inl.h21 #include <string.h>
H A Dclosure_builder.h66 const std::string& GetCapturedVariableShortyTypes() const;
98 std::string shorty_types_;
/art/compiler/debug/
H A Delf_debug_line_writer.h64 std::unordered_map<std::string, size_t> files_map;
65 std::vector<std::string> directories;
66 std::unordered_map<std::string, size_t> directories_map;
178 std::string file_name(source_file);
180 std::string class_name(dex->GetClassDescriptor(dex_class_def));
182 std::string full_path(file_name);
186 if (file_name_slash == std::string::npos && // Just filename.
188 class_name_slash != std::string::npos) { // Has package name.
189 std::string package_name = class_name.substr(1, class_name_slash - 1);
/art/compiler/driver/
H A Dcompiler_options.h21 #include <string>
73 const std::vector<std::string>* verbose_methods,
76 const std::string& dump_cfg_file_name,
213 bool IsVerboseMethod(const std::string& pretty_method) const {
214 for (const std::string& cur_method : *verbose_methods_) {
215 if (pretty_method.find(cur_method) != std::string::npos) {
236 const std::string& GetDumpCfgFileName() const {
285 const std::vector<std::string>* verbose_methods_;
294 std::string dump_cfg_file_name_;
/art/runtime/base/
H A Dstringpiece.h20 #include <string.h>
21 #include <string>
25 // A string-like object that points to a sized piece of memory.
28 // a "const char*" or a "string" value that will be implicitly converted to
48 // in a "const char*" or a "string" wherever a "StringPiece" is
53 StringPiece(const std::string& str) // NOLINT implicit constructor desired
60 // terminated string.
106 std::string as_string() const {
107 return std::string(data(), size());
109 // We also define ToString() here, since many other string
[all...]
/art/compiler/
H A Delf_writer.cc44 std::string error_msg;
60 std::string error_msg;
H A Delf_writer_test.cc54 std::string elf_location = GetCoreOatLocation();
55 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
66 std::string error_msg;
78 std::string error_msg;
90 std::string error_msg;
H A Doat_test.cc48 std::string error;
92 const std::vector<std::string>& compiler_options,
93 /*out*/std::string* error_msg) {
98 for (const std::string& option : compiler_options) {
129 SafeMap<std::string, std::string>& key_value_store,
148 SafeMap<std::string, std::string>& key_value_store,
163 SafeMap<std::string, std::string>
[all...]
/art/runtime/interpreter/mterp/mips/
H A Dop_const_string.S1 # const/string vAA, String /* BBBB */
/art/runtime/native/
H A Dlibcore_util_CharsetUtils.cc18 #include "mirror/string.h"
19 #include "mirror/string-inl.h"
25 #include <string.h>
157 Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String*>(java_string)));
158 if (string.Get() == nullptr) {
168 const jchar* src = &(string->GetValue()[offset]);
195 Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String*>(java_string)));
196 if (string.Get() == nullptr) {
207 jint ch = string->CharAt(i);
221 jchar low = (i + 1 != end) ? string
[all...]
/art/runtime/verifier/
H A Dinstruction_flags.h21 #include <string>
110 std::string ToString() const;
H A Dmethod_verifier_test.cc32 void VerifyClass(const std::string& descriptor)
39 std::string error_msg;
H A Dreg_type.cc64 std::string PreciseConstType::Dump() const {
81 std::string BooleanType::Dump() const {
85 std::string ConflictType::Dump() const {
89 std::string ByteType::Dump() const {
93 std::string ShortType::Dump() const {
97 std::string CharType::Dump() const {
101 std::string FloatType::Dump() const {
105 std::string LongLoType::Dump() const {
109 std::string LongHiType::Dump() const {
113 std::string DoubleLoTyp
[all...]
H A Dreg_type.h23 #include <string>
197 virtual std::string Dump() const
311 std::string Dump() const OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
340 std::string Dump() const OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
379 std::string Dump() const OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
397 std::string Dump() const OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
416 std::string Dump() const OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
434 std::string Dump() const OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
452 std::string Dump() const OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
470 std::string Dum
[all...]
/art/test/595-profile-saving/
H A Dprofile-saving.cc43 std::string m_name(m->GetName());
78 return ProfileSaver::HasSeenMethod(std::string(filename_chars.c_str()),
/art/test/955-lambda-smali/smali/
H A DSanityCheck.smali31 const-string v0, "SanityCheck"
/art/test/973-default-multidex/smali/
H A Dconcreteclass.smali38 const-string v0, "STRING!!!"
/art/test/utils/python/testgen/
H A Dutils.py23 import string namespace
34 map(lambda n: itertools.product(string.ascii_lowercase, repeat=n),
46 Takes a string returns the same string sans empty lines
/art/runtime/gc/space/
H A Dimage_space.cc47 ImageSpace::ImageSpace(const std::string& image_filename,
81 static bool GenerateImage(const std::string& image_filename, InstructionSet image_isa,
82 std::string* error_msg) {
83 const std::string boot_class_path_string(Runtime::Current()->GetBootClassPathString());
84 std::vector<std::string> boot_class_path;
96 std::vector<std::string> arg_vector;
98 std::string dex2oat(Runtime::Current()->GetCompilerExecutable());
101 std::string image_option_string("--image=");
106 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
109 std::string oat_file_option_strin
[all...]
/art/cmdline/detail/
H A Dcmdline_parser_detail.h20 #include <string>
85 // Convert any kind of type to an std::string, even if there's no
91 std::string ToStringAny(const T& value,
100 std::string ToStringAny(const std::vector<T> value,
119 std::string ToStringAny(const T&,
123 return std::string("(unknown type [no operator<< implemented] for )");
/art/imgdiag/
H A Dimgdiag.cc23 #include <string>
53 const std::string& image_location,
85 static bool EndsWith(const std::string& str, const std::string& suffix) {
91 static std::string BaseName(const std::string& str) {
93 if (idx == std::string::npos) {
106 std::string proc_pid_str =
147 static std::string PrettyFieldValue(ArtField* field, mirror::Object* obj)
208 std::string descripto
[all...]

Completed in 5410 milliseconds

1234567891011>>