Searched defs:list (Results 1 - 4 of 4) sorted by relevance

/art/compiler/dex/
H A Dpass_driver.h67 // Now add to the list.
145 * @brief Gets the list of passes currently schedule to execute.
156 static void SetDumpPassList(const std::string& list) { argument
157 dump_pass_list_ = list;
160 static void SetPrintPassList(const std::string& list) { argument
161 print_pass_list_ = list;
198 /** @brief The default pass list is used to initialize pass_list_. */
/art/compiler/optimizing/
H A Dgraph_visualizer.cc172 void PrintInstructions(const HInstructionList& list) { argument
174 for (HInstructionIterator it(list); !it.Done(); it.Advance()) {
/art/runtime/
H A Dmonitor.cc331 // Acquire thread list lock so threads won't disappear from under us.
1063 // Check the monitor appears in the monitor list.
1065 MonitorList* list = Runtime::Current()->GetMonitorList(); local
1066 MutexLock mu(Thread::Current(), list->monitor_list_lock_);
1067 for (Monitor* list_mon : list->list_) {
1121 // TODO: Is it an invariant that *all* open monitors are in the list? Then we could
H A Ddex_file_verifier.cc205 // Check that the list is available. The first 4B are the count.
290 // Check that map list content is available.
303 // Sanity check the size of the map list.
455 ErrorStringPrintf("Static/instance field not in expected list");
479 ErrorStringPrintf("Direct/virtual method not in expected list");
732 * times within a single parameter list. However, longer parameter lists
1039 if (!CheckListSize(field_item, field_count, sizeof(DexFile::FieldAnnotationsItem), "field_annotations list")) {
1057 if (!CheckListSize(method_item, method_count, sizeof(DexFile::MethodAnnotationsItem), "method_annotations list")) {
1077 "parameter_annotations list")) {
1368 ErrorStringPrintf("Multiple map list item
1794 const DexFile::AnnotationSetRefList* list = local
[all...]

Completed in 498 milliseconds