Searched refs:list (Results 1 - 25 of 36) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/rawdex/
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) {
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) {
/art/compiler/dex/
H A Dpass_manager.h49 void SetDisablePassList(const std::string& list) { argument
50 disable_pass_list_ = list;
56 void SetPrintPassList(const std::string& list) { argument
57 print_pass_list_ = list;
63 void SetDumpPassList(const std::string& list) { argument
64 dump_pass_list_ = list;
77 void SetOverriddenPassOptions(const std::string& list) { argument
78 overridden_pass_options_list_ = list;
141 /** @brief The default pass list is used to initialize pass_list_. */
/art/build/
H A DAndroid.common_test.mk167 # If the input test directory contains a file called main.list and main.jpp,
168 # then a multi-dex file is created passing main.list as the --main-dex-list
182 ifneq ($(wildcard $(LOCAL_PATH)/$(2)/main.list),)
183 LOCAL_DX_FLAGS := --multi-dex --main-dex-list=$(LOCAL_PATH)/$(2)/main.list --minimal-main-dex
198 ifneq ($(wildcard $(LOCAL_PATH)/$(2)/main.list),)
199 LOCAL_DX_FLAGS := --multi-dex --main-dex-list=$(LOCAL_PATH)/$(2)/main.list --minimal-main-dex
/art/test/061-out-of-memory/src/
H A DMain.java67 * list afterwards. Even if we null out list when we're done, the conservative
73 LinkedList<Object> list = new LinkedList<Object>();
82 list.add((Object)new byte[objSize]);
/art/compiler/
H A Dcommon_compiler_test.h20 #include <list>
102 // Chunks must not move their storage after being created - use the node-based std::list.
103 std::list<std::vector<uint8_t>> header_code_and_maps_chunks_;
/art/runtime/
H A Dinstrumentation.cc207 // need to push a DEX pc into the dex_pcs_ list to match size of instrumentation stack.
416 std::list<InstrumentationListener*>* modified;
418 modified = new std::list<InstrumentationListener*>(*dex_pc_listeners_.get());
420 modified = new std::list<InstrumentationListener*>();
427 std::list<InstrumentationListener*>* modified;
429 modified = new std::list<InstrumentationListener*>(*field_read_listeners_.get());
431 modified = new std::list<InstrumentationListener*>();
438 std::list<InstrumentationListener*>* modified;
440 modified = new std::list<InstrumentationListener*>(*field_write_listeners_.get());
442 modified = new std::list<InstrumentationListene
[all...]
H A Dthread_list.h27 #include <list>
135 // Add/remove current thread from list.
144 // Return a copy of the thread list.
145 std::list<Thread*> GetList() EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_) {
175 // The actual list of all threads.
176 std::list<Thread*> list_ GUARDED_BY(Locks::thread_list_lock_);
H A Dinstrumentation.h21 #include <list>
469 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
470 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
471 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
472 std::list<InstrumentationListener*> backward_branch_listeners_ GUARDED_BY(Locks::mutator_lock_);
473 std::shared_ptr<std::list<InstrumentationListener*>> dex_pc_listeners_
475 std::shared_ptr<std::list<InstrumentationListener*>> field_read_listeners_
477 std::shared_ptr<std::list<InstrumentationListener*>> field_write_listeners_
479 std::shared_ptr<std::list<InstrumentationListener*>> exception_caught_listeners_
H A Dtransaction.h29 #include <list>
225 std::list<InternStringLog> intern_string_logs_ GUARDED_BY(log_lock_);
H A Dmonitor.h25 #include <list>
272 // Free list for monitor pool.
299 typedef std::list<Monitor*, TrackingAllocator<Monitor*, kAllocatorTagMonitorList>> Monitors;
H A Doat_file.h20 #include <list>
254 // Create a dependency list (dex locations and checksums) for the given dex files.
257 // Check the given dependency list against their dex files - thus the name "Static," this does
261 // Get the dex locations of a dependency list. Note: this is *not* cleaned for synthetic
356 // elements. std::list<> and std::deque<> satisfy this requirement, std::vector<> doesn't.
357 mutable std::list<std::string> string_cache_ GUARDED_BY(secondary_lookup_lock_);
H A Dtransaction.cc27 #include <list>
226 // most recent operation is at list begin so just have to iterate over it.
243 std::list<ObjectPair> moving_roots;
271 std::list<ArrayPair> moving_roots;
/art/test/092-locale/src/
H A DMain.java103 String[] list = syms.getAmPmStrings();
104 System.out.println("USA dfs: " + Arrays.deepToString(list));
/art/runtime/gc/space/
H A Dbump_pointer_space.cc106 // TODO: Not do a copy of the thread list?
107 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
126 // TODO: Not do a copy of the thread list?
127 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
219 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
237 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
H A Dregion_space.cc385 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
403 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
/art/compiler/optimizing/
H A Doptimizing_unit_test.h94 typedef std::list<std::pair<std::string, std::string>> diff_t;
H A Dgraph_checker.cc89 // Visit this block's list of phis.
92 // Ensure this block's list of phis contains only phis.
94 AddError(StringPrintf("Block %d has a non-phi in its phi list.",
106 // Visit this block's list of instructions.
109 // Ensure this block's list of instructions does not contains phis.
111 AddError(StringPrintf("Block %d has a phi in its non-phi list.",
162 const HInstructionList& list = input->IsPhi() local
165 if (!list.Contains(input)) {
174 // and the entry in the use list is consistent.
178 const HInstructionList& list local
[all...]
H A Dgraph_visualizer.cc269 void PrintInstructions(const HInstructionList& list) { argument
271 for (HInstructionIterator it(list); !it.Done(); it.Advance()) {
/art/compiler/utils/
H A Dswap_space.h21 #include <list>
75 std::list<SpaceChunk> maps_;
/art/cmdline/
H A Dcmdline_types.h400 explicit ParseStringList(std::vector<std::string>&& list) : list_(list) {} argument
419 std::vector<std::string> list; local
420 art::Split(str, Separator, &list);
421 return ParseStringList<Separator>(std::move(list));
/art/tools/
H A Dchecker.py31 # be listed with the '--list-groups' command-line flag).
247 # Takes in a list of Match objects and returns the minimal start point among
266 # from the line, parse them and add to the list of line parts.
376 def __headAndTail(self, list):
377 return list[0], list[1:]
379 # Splits a list of check lines at index 'i' such that lines[i] is the first
405 # respectively. The 'lineFilter' parameter can be used to supply a list of
536 return list(map(lambda group: self._processGroup(group[0], group[1], group[2]), allGroups))
600 checkLines = list(ma
[all...]
/art/tools/dexfuzz/src/dexfuzz/program/
H A DCodeTranslator.java38 * Translates from a CodeItem (the raw list of Instructions) to MutatableCode
97 // Populate the proper list of mutatable instructions.
167 // This new list will be attached to the CodeItem at the end...
170 // Go through our new list of MInsns, adding them to the new
171 // list of instructions that will be attached to the CodeItem.
230 // We've already seen it, and we're making a set, not a list.
279 EncodedCatchHandler encodedCatchHandler = codeItem.handlers.list[handlerIdx];
308 // Now finally add the new MutatableTryBlock into this MutatableCode's list!
364 codeItem.handlers.list[offsetIndexMap.get(tryItem.handlerOff)];
H A DIdCreator.java61 Log.errorAndQuit("Did not create necessary parameter list before finding insertion "
620 // and then one to put them in the type list.
625 // Now actually put them in the list.
631 typeList.list = typeItemList.toArray(new TypeItem[]{});
637 Log.info("Need to create first type list.");
647 // Finally, add this new TypeList to the list of them.
671 for (TypeItem typeItem : typeList.list) {
707 // Search for (or create) the parameter list.
767 // Only look for a TypeList if there's a parameter list.

Completed in 459 milliseconds

12