HomeSort by relevance Sort by last modified time
    Searched refs:GetList (Results 1 - 25 of 40) sorted by null

1 2

  /art/runtime/gc/
reference_queue.h 104 mirror::Reference* GetList() REQUIRES_SHARED(Locks::mutator_lock_) {
reference_processor.cc 277 self, cleared_references_.GetList());
  /art/runtime/gc/space/
bump_pointer_space.cc 107 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
127 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
167 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
185 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
region_space.cc 537 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
555 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList();
  /external/toolchain-utils/cros_utils/
html_tools.py 46 def GetList(items):
  /external/libchrome/base/trace_event/
trace_config_category_filter.cc 81 if (dict.GetList(kIncludedCategoriesParam, &category_list))
83 if (dict.GetList(kExcludedCategoriesParam, &category_list))
85 if (dict.GetList(kSyntheticDelaysParam, &category_list))
trace_config.cc 178 if (!args_->GetList(key, &list))
340 if (dict.GetList(kEventFiltersParam, &category_event_filters))
400 if (memory_dump_config.GetList(kAllowedDumpModesParam, &allowed_modes_list)) {
415 if (memory_dump_config.GetList(kTriggersParam, &trigger_list) &&
  /external/libchrome/base/
values.h 296 bool GetList(StringPiece path, const ListValue** out_value) const;
297 bool GetList(StringPiece path, ListValue** out_value);
427 bool GetList(size_t index, const ListValue** out_value) const;
428 bool GetList(size_t index, ListValue** out_value);
values_unittest.cc 372 settings.GetList("global.toolbar.bookmarks", &toolbar_bookmarks));
376 ASSERT_TRUE(settings.GetList("global.toolbar.bookmarks", &toolbar_bookmarks));
384 ASSERT_TRUE(settings.GetList("global.toolbar.bookmarks", &bookmark_list));
    [all...]
values.cc 838 bool DictionaryValue::GetList(StringPiece path,
851 bool DictionaryValue::GetList(StringPiece path, ListValue** out_value) {
852 return static_cast<const DictionaryValue&>(*this).GetList(
    [all...]
  /art/openjdkjvmti/
ti_object.cc 111 for (art::Thread* thd : art::Runtime::Current()->GetThreadList()->GetList()) {
ti_threadgroup.cc 174 for (art::Thread* t : art::Runtime::Current()->GetThreadList()->GetList()) {
  /bionic/libc/malloc_debug/
PointerData.h 132 static void GetList(std::vector<ListInfoType>* list, bool only_with_backtrace);
PointerData.cpp 349 void PointerData::GetList(std::vector<ListInfoType>* list, bool only_with_backtrace)
413 GetList(list, only_with_backtrace);
437 GetList(&list, false);
  /external/toolchain-utils/automation/server/monitor/
dashboard.py 169 def GetList(self):
229 group_list = groups.GetList()
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc 51 old_available_ = masm_->GetScratchRegisterList()->GetList();
52 old_available_vfp_ = masm_->GetScratchVRegisterList()->GetList();
163 uint32_t mask = list.GetList() & ~excluded_registers.GetList();
165 available->SetList(available->GetList() | mask);
172 available->SetList(available->GetList() | list.GetList());
179 available->SetList(available->GetList() & ~list.GetList());
186 available->SetList(available->GetList() & ~list.GetList())
    [all...]
instructions-aarch32.h 472 uint32_t GetList() const { return list_; }
477 void Combine(const RegisterList& other) { list_ |= other.GetList(); }
479 void Remove(const RegisterList& other) { list_ &= ~other.GetList(); }
543 return (registers.GetList() >> first) & ((1 << count) - 1);
561 uint64_t GetList() const { return list_; }
572 void Combine(const VRegisterList& other) { list_ |= other.GetList(); }
574 void Remove(const VRegisterList& other) { list_ &= ~other.GetList(); }
    [all...]
instructions-aarch32.cc 128 return PrintRegisterList(os, registers.GetList());
  /external/vixl/src/aarch64/
macro-assembler-aarch64.cc     [all...]
operands-aarch64.h 566 list_ |= other.GetList();
576 list_ &= ~other.GetList();
637 RegList GetList() const {
641 VIXL_DEPRECATED("GetList", RegList list() const) { return GetList(); }
  /art/runtime/
thread_list.h 173 std::list<Thread*> GetList() REQUIRES(Locks::thread_list_lock_) {
  /external/v8/src/regexp/
regexp-parser.h 31 // RemoveLast or GetList has been called.
82 ZoneList<T*>* GetList(Zone* zone) {
  /external/libchrome/base/metrics/
statistics_recorder_unittest.cc 383 ASSERT_TRUE(root_dict->GetList("histograms", &histogram_list));
406 ASSERT_TRUE(root_dict->GetList("histograms", &histogram_list));
  /external/vixl/test/aarch64/
test-utils-aarch64.cc 380 Clobber(masm, reg_list.GetList());
383 ClobberFP(masm, reg_list.GetList());
  /external/libchrome/base/json/
json_reader_unittest.cc 393 ASSERT_TRUE(inner_dict->GetList("array", &inner_array));
624 ASSERT_TRUE(root_dict->GetList("list", &list));

Completed in 716 milliseconds

1 2