Searched defs:names (Results 1 - 5 of 5) sorted by relevance

/art/runtime/native/
H A Djava_lang_reflect_Executable.cc166 MutableHandle<mirror::ObjectArray<mirror::String>> names = local
169 if (!annotations::GetParametersMetadataForMethod(art_method, &names, &access_flags)) {
174 if (UNLIKELY(names == nullptr || access_flags == nullptr)) {
176 StringPrintf("Missing parameter metadata for names or access flags for %s",
182 int32_t names_count = names.Get()->GetLength();
187 "Inconsistent parameter metadata for %s. names length: %d, access flags length: %d",
220 name.Assign(names.Get()->Get(parameter_index));
/art/test/046-reflect/src/
H A DMain.java864 public void aMethod(Set<String> names) {} argument
865 public void aMethodIdentical(Set<String> names) {} argument
869 public void aMethod(T[] names) {} argument
870 public void aMethodIdentical(T[] names) {} argument
/art/cmdline/
H A Dcmdline_parser.h130 // Map the list of names into the list of values. List of names must not have
226 void SetNames(std::vector<const char*>&& names) { argument
227 argument_info_.names_ = names;
230 void SetNames(std::initializer_list<const char*> names) { argument
231 argument_info_.names_ = names;
319 void SetNames(std::vector<const char*>&& names) { argument
320 names_ = std::move(names);
323 void SetNames(std::initializer_list<const char*> names) { argument
324 names_ = names;
371 Define(std::initializer_list<const char*> names) argument
[all...]
/art/compiler/debug/
H A Delf_debug_info_writer.h51 std::vector<const char*> names; local
61 names.push_back(mi->dex_file->StringDataByIdx(dex::StringIndex(id)));
65 return names;
240 // Parameter names may not be always available.
/art/runtime/dex/
H A Ddex_file_annotations.cc1169 MutableHandle<mirror::ObjectArray<mirror::String>>* names,
1189 // Extract the parameters' names String[].
1201 "names",
1223 names->Assign(names_obj.Get()->AsObjectArray<mirror::String>());
1168 GetParametersMetadataForMethod(ArtMethod* method, MutableHandle<mirror::ObjectArray<mirror::String>>* names, MutableHandle<mirror::IntArray>* access_flags) argument

Completed in 91 milliseconds