Searched refs:string (Results 176 - 200 of 430) sorted by relevance

1234567891011>>

/art/cmdline/detail/
H A Dcmdline_parse_argument_detail.h50 // (for example an out of range value, or passing in a string where an int was expected).
126 size_t this_match = token_range.MaybeMatches(token_list, std::string("_"));
153 std::string s(name);
160 && "Every argument descriptor string must have same amount of blanks (_)");
168 assert(s.back() == '_' && "The blank character must only be at the end of the string");
173 && "Every argument descriptor string must have same amount of tokens (spaces)");
181 // Tokenize every name, turning it from a string to a token list.
201 assert(("Every argument descriptor string must have equal amount of tokens (spaces)" &&
206 assert(("Every argument descriptor string must have an equal amount of blanks (_)" &&
336 std::string blank_valu
[all...]
/art/compiler/debug/
H A Delf_symtab_writer.h60 strtab->Write(""); // strtab should start with empty string.
61 std::string last_name;
72 std::string name = PrettyMethod(info.dex_method_index, *info.dex_file, with_signature);
/art/compiler/driver/
H A Ddex_compilation_unit.h109 const std::string& GetSymbol();
130 std::string symbol_;
/art/runtime/gc/
H A Dheap_test.cc56 mirror::String* string = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello, world!"); local
58 array->Set<false>(j, string);
/art/runtime/gc/space/
H A Dzygote_space.h33 static ZygoteSpace* Create(const std::string& name, MemMap* mem_map,
88 ZygoteSpace(const std::string& name, MemMap* mem_map, size_t objects_allocated);
H A Dspace.h21 #include <string>
174 Space(const std::string& name, GcRetentionPolicy gc_retention_policy);
181 std::string name_;
325 ContinuousSpace(const std::string& name, GcRetentionPolicy gc_retention_policy,
363 DiscontinuousSpace(const std::string& name, GcRetentionPolicy gc_retention_policy);
393 MemMapSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end, uint8_t* limit,
448 ContinuousMemMapAllocSpace(const std::string& name, MemMap* mem_map, uint8_t* begin,
H A Dlarge_object_space.h108 explicit LargeObjectSpace(const std::string& name, uint8_t* begin, uint8_t* end);
131 static LargeObjectMapSpace* Create(const std::string& name);
147 explicit LargeObjectMapSpace(const std::string& name);
165 static FreeListSpace* Create(const std::string& name, uint8_t* requested_begin, size_t capacity);
176 FreeListSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end);
H A Dmalloc_space.h126 virtual MallocSpace* CreateInstance(MemMap* mem_map, const std::string& name, void* allocator,
150 MallocSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end,
154 static MemMap* CreateMemMap(const std::string& name, size_t starting_size, size_t* initial_size,
/art/runtime/interpreter/mterp/mips/
H A Dop_const_string_jumbo.S1 # const/string vAA, String /* BBBBBBBB */
/art/test/972-iface-super-multidex/smali/
H A Dconcreteclass.smali60 const-string v0, "This is the wrong class to invoke!"
/art/compiler/jit/
H A Djit_compiler.cc82 std::string error;
114 for (const std::string& argument : Runtime::Current()->GetCompilerOptions()) {
120 std::string error_msg;
182 std::string perf_filename = std::string(prefix) + "/perf-" + std::to_string(getpid()) + ".map";
232 std::string str = stream.str();
/art/patchoat/
H A Dpatchoat.h52 static bool Patch(const std::string& art_location, off_t delta, File* art_out, InstructionSet isa,
56 static bool Patch(const std::string& art_location,
58 const std::string& output_directory,
81 static bool IsImagePic(const ImageHeader& image_header, const std::string& image_path);
95 static bool ReplaceOatFileWithSymlink(const std::string& input_oat_filename,
96 const std::string& output_oat_filename,
/art/runtime/
H A Ddex_file_test.cc157 std::string error_msg;
208 std::string error_msg;
248 std::string signature(raw->GetMethodSignature(method_id).ToString());
261 std::string signature(raw->GetMethodSignature(method_id).ToString());
272 std::string signature(raw->GetMethodSignature(method_id).ToString());
361 std::string dex_location_str = "/system/app/framework.jar";
373 std::string dex_location(dex_location_real.get());
376 std::string multidex_location = DexFile::GetMultiDexLocation(1, dex_location.c_str());
379 std::string dex_location_sym = dex_location + "symlink";
384 std::string multidex_location_sy
[all...]
H A Dutils_test.cc25 #include "mirror/string.h"
33 std::string PrettyArguments(const char* signature);
34 std::string PrettyReturnType(const char* signature);
207 std::vector<std::string> actual;
208 std::vector<std::string> expected;
273 std::vector<std::string> strings;
353 std::vector<std::string> command;
355 std::string android_root(GetAndroidRoot());
360 std::string error_msg;
372 std::vector<std::string> comman
[all...]
H A Druntime.cc155 std::string trace_file;
523 std::string Runtime::GetPatchoatExecutable() const {
527 std::string patchoat_executable(GetAndroidRoot());
532 std::string Runtime::GetCompilerExecutable() const {
536 std::string compiler_executable(GetAndroidRoot());
566 std::string error_msg;
783 static bool OpenDexFilesFromImage(const std::string& image_location,
789 std::vector<std::string> image_locations;
793 std::string system_filename;
795 std::string cache_filename_unuse
[all...]
H A Ddex_file_verifier.h30 const char* location, std::string* error_msg);
32 const std::string& FailureReason() const {
136 // Load a string by (type) index. Checks whether the index is in bounds, printing the error if
165 std::string* error_msg);
173 std::string* error_msg);
213 std::string failure_reason_;
H A Djava_vm_ext.h60 void SetCheckJniAbortHook(void (*hook)(void*, const std::string&), void* data) {
89 const std::string& path,
92 std::string* error_msg);
184 void (*check_jni_abort_hook_)(void* data, const std::string& reason);
193 const std::string trace_;
H A Dreference_table.cc26 #include "mirror/string-inl.h"
91 std::string className(PrettyTypeOf(obj));
102 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
181 std::string className(PrettyTypeOf(ref));
183 std::string extras;
189 std::string utf8(s->ToModifiedUtf8());
/art/test/955-lambda-smali/smali/
H A DCaptureVariables.smali98 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'Z'): value is "
113 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'B'): value is "
128 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'C'): value is "
143 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'S'): value is "
158 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'I'): value is "
173 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'J'): value is "
188 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'F'): value is "
203 const-string v0, "(CaptureVariables) (0-args, 1 captured variable 'D'): value is "
252 const-string v0, "(CaptureVariables) (0-args, 8 captured variable 'ZBCSIJFD'): value is "
253 const-string v
[all...]
/art/runtime/base/
H A Dhistogram_test.cc123 std::string text;
125 std::string expected("UpdateRange:\tSum: 2.654ms 99% C.I. 15us-212us Avg: 126.380us Max: 212us\n");
166 std::string text;
168 std::string expected("Reset:\tSum: 2.654ms 99% C.I. 15us-212us Avg: 126.380us Max: 212us\n");
207 std::string expected("MultipleCreateHist:\tSum: 2.654ms 99% C.I. 15us-212us Avg: 126.380us Max: 212us\n");
222 std::string expected = "SingleValue:\tSum: 1us 99% C.I. 1us-1us Avg: 1us Max: 1us\n";
265 std::string expected = "SpikyValues:\tSum: 14.350ms 99% C.I. 0.089us-2541.825us Avg: 95.033us Max: 10000us\n";
/art/tools/dexfuzz/src/dexfuzz/program/
H A DIdCreator.java117 Log.errorAndQuit("Did not create necessary descriptor string before finding "
131 private int findStringDataInsertionPoint(String string) { argument
134 if (stringData.getSize() > 0 && stringData.getString().compareTo(string) >= 0) {
182 // Search for (or create) the string representing the method name.
261 // Search for (or create) the string representing the class descriptor.
321 private int createString(String string) { argument
329 int newStringIdx = findStringDataInsertionPoint(string);
333 newStringData.setSize(string.length());
334 newStringData.setString(string);
369 string, newStringId
379 findString(String string) argument
396 findOrCreateString(String string) argument
[all...]
/art/compiler/
H A Dimage_test.cc20 #include <string>
67 std::string image_filename(GetSystemImageFilename(image_location.GetFilename().c_str(),
70 CHECK_NE(pos, std::string::npos) << image_filename;
71 std::string image_dir(image_filename, 0, pos);
76 std::string oat_filename(image_filename, 0, image_filename.size() - 3);
103 SafeMap<std::string, std::string> key_value_store;
212 std::unordered_set<std::string> image_classes(*compiler_driver_->GetImageClasses());
231 std::string image("-Ximage:");
/art/runtime/gc/accounting/
H A Datomic_stack.h22 #include <string>
56 static AtomicStack* Create(const std::string& name, size_t growth_limit, size_t capacity) {
211 AtomicStack(const std::string& name, size_t growth_limit, size_t capacity)
241 std::string error_msg;
253 std::string name_;
/art/compiler/utils/arm/
H A Dassembler_thumb2_test.cc29 std::string GetArchitectureString() OVERRIDE {
33 std::string GetAssemblerParameters() OVERRIDE {
41 std::string GetDisassembleParameters() OVERRIDE {
82 std::string RepeatInsn(size_t count, const std::string& insn) {
83 std::string result;
390 std::string expected =
416 std::string expected =
450 std::string expected =
486 std::string expecte
[all...]
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86_test.cc24 std::string error_msg;
37 std::string error_msg;
74 std::string error_msg;

Completed in 633 milliseconds

1234567891011>>