/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | TypeList.java | 23 public TypeItem[] list; field in TypeList 30 list = new TypeItem[size]; in read() 32 (list[i] = new TypeItem()).read(file); in read() 41 for (TypeItem typeItem : list) { in write() 48 for (TypeItem type : list) { in incrementIndex() 60 if (list[i].typeIdx < other.list[i].typeIdx) { in comesBefore() 62 } else if (list[i].typeIdx > other.list[i].typeIdx) { in comesBefore()
|
D | EncodedCatchHandlerList.java | 23 public EncodedCatchHandler[] list; field in EncodedCatchHandlerList 28 list = new EncodedCatchHandler[size]; in read() 30 (list[i] = new EncodedCatchHandler()).read(file); in read() 37 for (EncodedCatchHandler encodedCatchHandler : list) { in write() 44 for (EncodedCatchHandler handler : list) { in incrementIndex()
|
D | AnnotationSetRefList.java | 23 public AnnotationSetRefItem[] list; field in AnnotationSetRefList 30 list = new AnnotationSetRefItem[size]; in read() 32 (list[i] = new AnnotationSetRefItem()).read(file); in read() 41 for (AnnotationSetRefItem annotationSetRefItem : list) { in write()
|
/art/test/911-get-stack-trace/src/art/ |
D | ThreadListTraces.java | 32 Thread list[] = new Thread[N/2 + 1]; in doTest() local 43 list[i/2] = t; in doTest() 46 list[list.length - 1] = Thread.currentThread(); in doTest() 52 printList(list, 0); in doTest() 54 printList(list, 5); in doTest() 56 printList(list, 25); in doTest()
|
/art/test/596-monitor-inflation/ |
D | expected.txt | 2 Monitor list grew by at least 4000 monitors 3 Monitor list shrank correctly
|
/art/build/ |
D | Android.common_test.mk | 220 ifneq ($(wildcard $(LOCAL_PATH)/$(2)/main.list),) 221 LOCAL_DX_FLAGS := --multi-dex --main-dex-list=$(LOCAL_PATH)/$(2)/main.list --minimal-main-dex 236 ifneq ($(wildcard $(LOCAL_PATH)/$(2)/main.list),) 237 LOCAL_DX_FLAGS := --multi-dex --main-dex-list=$(LOCAL_PATH)/$(2)/main.list --minimal-main-dex
|
/art/test/051-thread/src/ |
D | Main.java | 186 List<StackTraceElement> list = Arrays.asList(trace); in testMainThreadAllStackTraces() local 187 Iterator<StackTraceElement> it = list.iterator(); in testMainThreadAllStackTraces() 192 throw new RuntimeException(list.toString()); in testMainThreadAllStackTraces() 197 throw new RuntimeException(list.toString()); in testMainThreadAllStackTraces() 200 throw new RuntimeException(list.toString()); in testMainThreadAllStackTraces() 207 throw new RuntimeException(list.toString()); in testMainThreadAllStackTraces()
|
/art/test/089-many-methods/ |
D | expected.txt | 3 You may try using multi-dex. If multi-dex is enabled then the list of classes for the main dex list…
|
/art/test/980-redefine-object/ |
D | expected.txt | 10 Allocating an array list 12 Adding a bunch of stuff to the array list 16 Allocating a linked list 18 Adding a bunch of stuff to the linked list
|
/art/test/961-default-iface-resolution-gen/util-src/ |
D | generate_java.py | 326 ifaces.append(list(create_interface_trees_inner(sub, allow_default))) 331 yield TestInterface(list(combo) + list(supers), allow_default) 339 ifaces.append(list(create_interface_trees_inner(sub, i == cs))) 344 yield TestInterface(list(combo) + list(supers), False)
|
/art/tools/checker/match/ |
D | line.py | 20 def headAndTail(list): argument 21 return list[0], list[1:]
|
/art/tools/ |
D | findbuildbotwarnings.py | 37 warnings = collections.defaultdict(list) 91 for warning in sorted(list(sharedwarnings)):
|
/art/test/061-out-of-memory/src/ |
D | Main.java | 74 LinkedList<Object> list = new LinkedList<Object>(); in testOomeSmallInternal() local 83 list.add((Object)new byte[objSize]); in testOomeSmallInternal()
|
/art/test/062-character-encodings/ |
D | info.txt | 1 Test that the list of character encodings is what we expect.
|
/art/runtime/gc/allocator/ |
D | rosalloc.h | 226 void Merge(SlotFreeList<true>* list) { in Merge() argument 229 CHECK(list != nullptr); in Merge() 230 list->Verify(); in Merge() 232 if (list->Size() == 0) { in Merge() 240 *headp = list->Head(); in Merge() 242 *tailp = list->Tail(); in Merge() 244 size_ = list->Size(); in Merge() 247 DCHECK(list->Head() != nullptr); in Merge() 248 *headp = list->Head(); in Merge() 249 DCHECK(list->Tail() != nullptr); in Merge() [all …]
|
/art/runtime/ |
D | runtime_callbacks_test.cc | 226 bool Expect(std::initializer_list<const char*> list) { in Expect() argument 227 if (cb_.data.size() != list.size()) { in Expect() 228 PrintError(list); in Expect() 232 if (!std::equal(cb_.data.begin(), cb_.data.end(), list.begin())) { in Expect() 233 PrintError(list); in Expect() 240 void PrintError(std::initializer_list<const char*> list) { in PrintError() argument 242 for (const char* expected : list) { in PrintError()
|
D | instrumentation.h | 623 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_); 624 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_); 625 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_); 626 std::list<InstrumentationListener*> branch_listeners_ GUARDED_BY(Locks::mutator_lock_); 627 std::list<InstrumentationListener*> invoke_virtual_or_interface_listeners_ 629 std::list<InstrumentationListener*> dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_); 630 std::list<InstrumentationListener*> field_read_listeners_ GUARDED_BY(Locks::mutator_lock_); 631 std::list<InstrumentationListener*> field_write_listeners_ GUARDED_BY(Locks::mutator_lock_); 632 std::list<InstrumentationListener*> exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
|
/art/test/1906-suspend-list-me-first/ |
D | info.txt | 1 Test jvmti SuspendThreadList with the current thread as the first thread in the list.
|
/art/test/481-regression-phi-cond/ |
D | info.txt | 2 to remove a Phi from the wrong instruction list.
|
/art/test/607-daemon-stress/ |
D | info.txt | 1 Stress test for daemon threads stuck in a method that requires the thread list lock.
|
/art/runtime/gc/space/ |
D | bump_pointer_space.cc | 107 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalBuffers() 127 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalBuffersAreRevoked() 167 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetBytesAllocated() 185 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetObjectsAllocated()
|
/art/runtime/base/ |
D | mutex.cc | 1249 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; in RemoveFromExpectedMutexesOnWeakRefAccess() local 1250 auto it = std::find(list.begin(), list.end(), mutex); in RemoveFromExpectedMutexesOnWeakRefAccess() 1251 DCHECK(it != list.end()); in RemoveFromExpectedMutexesOnWeakRefAccess() 1252 list.erase(it); in RemoveFromExpectedMutexesOnWeakRefAccess() 1255 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; in RemoveFromExpectedMutexesOnWeakRefAccess() local 1256 auto it = std::find(list.begin(), list.end(), mutex); in RemoveFromExpectedMutexesOnWeakRefAccess() 1257 DCHECK(it != list.end()); in RemoveFromExpectedMutexesOnWeakRefAccess() 1258 list.erase(it); in RemoveFromExpectedMutexesOnWeakRefAccess() 1264 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; in IsExpectedOnWeakRefAccess() local 1265 return std::find(list.begin(), list.end(), mutex) != list.end(); in IsExpectedOnWeakRefAccess()
|
/art/cmdline/ |
D | cmdline_types.h | 406 struct CmdlineType<std::list<ti::Agent>> : CmdlineTypeParser<std::list<ti::Agent>> { 413 std::list<ti::Agent>& existing_value) { 439 explicit ParseStringList(std::vector<std::string>&& list) : list_(list) {} 458 std::vector<std::string> list; 459 art::Split(str, Separator, &list); 460 return ParseStringList<Separator>(std::move(list));
|
/art/compiler/optimizing/ |
D | graph_visualizer.cc | 72 explicit StringList(const Container& list, Format format = kArrayBrackets) : StringList(format) { in StringList() argument 73 for (const typename Container::value_type& current : list) { in StringList() 92 friend std::ostream& operator<<(std::ostream& os, const StringList& list); 95 std::ostream& operator<<(std::ostream& os, const StringList& list) { in operator <<() argument 96 switch (list.format_) { in operator <<() 97 case StringList::kArrayBrackets: return os << "[" << list.sstream_.str() << "]"; in operator <<() 98 case StringList::kSetBrackets: return os << "{" << list.sstream_.str() << "}"; in operator <<() 680 void PrintInstructions(const HInstructionList& list) { in PrintInstructions() argument 681 for (HInstructionIterator it(list); !it.Done(); it.Advance()) { in PrintInstructions()
|
/art/test/970-iface-super-resolution-gen/util-src/ |
D | generate_smali.py | 563 ifaces.append(list(create_interface_trees(sub))) 578 ifaces.append(list(create_interface_trees(sub))) 583 yield TestInterface(tuple([selected] + list(supers)), True) 584 yield TestInterface(tuple([selected] + list(supers)), False)
|