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

/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DAnnotationSetRefList.java23 public AnnotationSetRefItem[] list; field in class:AnnotationSetRefList
30 list = new AnnotationSetRefItem[size];
32 (list[i] = new AnnotationSetRefItem()).read(file);
41 for (AnnotationSetRefItem annotationSetRefItem : list) {
H A DEncodedCatchHandlerList.java23 public EncodedCatchHandler[] list; field in class:EncodedCatchHandlerList
28 list = new EncodedCatchHandler[size];
30 (list[i] = new EncodedCatchHandler()).read(file);
37 for (EncodedCatchHandler encodedCatchHandler : list) {
44 for (EncodedCatchHandler handler : list) {
H A DTypeList.java23 public TypeItem[] list; field in class:TypeList
30 list = new TypeItem[size];
32 (list[i] = new TypeItem()).read(file);
41 for (TypeItem typeItem : list) {
48 for (TypeItem type : list) {
60 if (list[i].typeIdx < other.list[i].typeIdx) {
62 } else if (list[i].typeIdx > other.list[i].typeIdx) {
/art/runtime/
H A Druntime_callbacks_test.cc226 bool Expect(std::initializer_list<const char*> list) { argument
227 if (cb_.data.size() != list.size()) {
228 PrintError(list);
232 if (!std::equal(cb_.data.begin(), cb_.data.end(), list.begin())) {
233 PrintError(list);
240 void PrintError(std::initializer_list<const char*> list) { argument
242 for (const char* expected : list) {
H A Dmonitor.cc497 // Acquire thread list lock so threads won't disappear from under us.
1288 // Check the monitor appears in the monitor list.
1290 MonitorList* list = Runtime::Current()->GetMonitorList(); local
1291 MutexLock mu(Thread::Current(), list->monitor_list_lock_);
1292 for (Monitor* list_mon : list->list_) {
1348 // TODO: Is it an invariant that *all* open monitors are in the list? Then we could
H A Ddex_file_verifier.cc309 // Check that the list is available. The first 4B are the count.
440 // Check that map list content is available.
453 // Sanity check the size of the map list.
640 // Check that it falls into the right class-data list.
643 ErrorStringPrintf("Static/instance field not in expected list");
1231 * times within a single parameter list. However, longer parameter lists
1538 if (!CheckListSize(field_item, field_count, sizeof(DexFile::FieldAnnotationsItem), "field_annotations list")) {
1556 if (!CheckListSize(method_item, method_count, sizeof(DexFile::MethodAnnotationsItem), "method_annotations list")) {
1576 "parameter_annotations list")) {
1896 ErrorStringPrintf("Multiple map list item
2497 const DexFile::AnnotationSetRefList* list = local
[all...]
/art/test/ti-agent/
H A Dcommon_helper.cc205 std::deque<CommonTransformationResult> list; local
206 gTransformations[name_str] = std::move(list);
/art/cmdline/
H A Dcmdline_types.h404 struct CmdlineType<std::list<ti::Agent>> : CmdlineTypeParser<std::list<ti::Agent>> {
406 assert(false && "Use AppendValues() for an Agent list type");
407 return Result::Failure("Unconditional failure: Agent list must be appended: " + args);
411 std::list<ti::Agent>& existing_value) {
416 static const char* Name() { return "std::list<ti::Agent>"; }
437 explicit ParseStringList(std::vector<std::string>&& list) : list_(list) {} argument
456 std::vector<std::string> list; local
457 art::Split(str, Separator, &list);
[all...]
/art/compiler/optimizing/
H A Dgraph_checker.cc120 // Visit this block's list of phis.
123 // Ensure this block's list of phis contains only phis.
125 AddError(StringPrintf("Block %d has a non-phi in its phi list.",
137 // Visit this block's list of instructions.
140 // Ensure this block's list of instructions does not contains phis.
142 AddError(StringPrintf("Block %d has a phi in its non-phi list.",
341 const HInstructionList& list = input->IsPhi() local
344 if (!list.Contains(input)) {
353 // and the entry in the use list is consistent.
356 const HInstructionList& list local
[all...]
H A Dgraph_visualizer.cc58 // Create an empty list
61 // Construct StringList from a linked list. List element class T
84 friend std::ostream& operator<<(std::ostream& os, const StringList& list);
87 std::ostream& operator<<(std::ostream& os, const StringList& list) { argument
88 switch (list.format_) {
89 case StringList::kArrayBrackets: return os << "[" << list.sstream_.str() << "]";
90 case StringList::kSetBrackets: return os << "{" << list.sstream_.str() << "}";
656 void PrintInstructions(const HInstructionList& list) { argument
657 for (HInstructionIterator it(list); !it.Done(); it.Advance()) {
H A Dloop_optimization.cc1430 void HLoopOptimization::RemoveDeadInstructions(const HInstructionList& list) { argument
1431 for (HBackwardInstructionIterator i(list); !i.Done(); i.Advance()) {
/art/dexlayout/
H A Ddex_writer.cc270 uint16_t list[1]; local
277 list[0] = type_id->GetIndex();
278 offset += Write(list, sizeof(uint16_t), offset);
H A Ddex_ir.cc551 const DexFile::AnnotationSetRefList* list = local
554 GenerateParameterAnnotation(dex_file, method_id, list, parameters[i].annotations_off_)));
644 // Manually walk catch handlers list and add any missing handlers unreferenced by try items.
778 // Iterate through the map list and set the offset of the CallSiteIds and MethodHandleItems.
/art/runtime/base/
H A Dmutex.cc235 // We expect waits to happen while holding the thread list suspend thread lock.
1078 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1224 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; local
1225 auto it = std::find(list.begin(), list.end(), mutex);
1226 DCHECK(it != list.end());
1227 list.erase(it);
1230 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; local
1231 auto it = std::find(list.begin(), list
1239 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; local
[all...]
/art/runtime/gc/allocator/
H A Drosalloc.h133 Slot* next_; // Next slot in the list.
138 // traverse the list from the head to the tail when merging free lists.
139 // We don't use the tail (kUseTail == false) for the free list to avoid the need to manage the
155 // Removes from the head of the free list.
221 // Merge the given list into this list. Empty the given list.
224 // supporting the kUseTail == false parameter would require a O(n) linked list traversal to do
226 void Merge(SlotFreeList<true>* list) { argument
229 CHECK(list !
[all...]
/art/dexdump/
H A Ddexdump.cc706 list = pDexFile->GetParameterAnnotationSetRefList(&pars[i]); local
707 if (list != nullptr) {
708 for (u4 j = 0; j < list->size_; j++) {
710 dumpAnnotationSetItem(pDexFile, pDexFile->GetSetRefItemItem(&list->list_[j]));
/art/runtime/openjdkjvmti/
H A Dti_redefine.cc179 // Create a new Obsolete Method and put it in the list.
542 art::ThreadList* list = art::Runtime::Current()->GetThreadList(); local
543 list->ForEach(DoAllocateObsoleteMethodsCallback, static_cast<void*>(&ctx));
/art/tools/dmtracedump/
H A Dtracedump.cc45 /* thread list in key file is not reliable, so just max out */
130 * Entry from the thread list.
149 struct MethodEntry** methods; /* list of methods in this class */
156 struct MethodEntry** methods; /* list of methods with same name */
161 * Entry from the method list.
793 * Sort the thread list entries.
805 * Sort the method list entries.
871 * signatures in the method list contain pointers into the fileData area.
882 * Dump list of threads.
893 * Dump list o
1221 sortTimedMethodList(TimedMethod* list, int32_t* num) argument
1249 printInclusiveMethod(MethodEntry* method, TimedMethod* list, int32_t numCalls, int32_t flags) argument
[all...]

Completed in 306 milliseconds