HomeSort by relevance Sort by last modified time
    Searched defs:current_entry (Results 1 - 14 of 14) sorted by null

  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
map.c 25 bool current_entry = ui_browser__is_current_entry(self, row); local
28 ui_browser__set_percent_color(self, 0, current_entry);
scripts.c 79 bool current_entry = ui_browser__is_current_entry(browser, row); local
81 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED :
annotate.c 97 bool current_entry = ui_browser__is_current_entry(browser, row); local
99 (!current_entry || (browser->use_navkeypressed &&
114 current_entry);
118 ui_browser__set_percent_color(browser, 0, current_entry);
152 current_entry);
196 if (current_entry)
hists.c 587 bool current_entry; member in struct:hpp_arg
611 ui_browser__set_percent_color(arg->b, percent, arg->current_entry);
646 arg->current_entry);
654 arg->current_entry);
669 arg->current_entry);
676 if (!arg->current_entry || !arg->b->navkeypressed)
728 bool current_entry = ui_browser__is_current_entry(&browser->b, row); local
733 if (current_entry) {
747 .current_entry = current_entry,
1760 bool current_entry = ui_browser__is_current_entry(browser, row); local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
util.c 20 bool current_entry = ui_browser__is_current_entry(browser, row); local
22 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED :
  /external/chromium_org/chrome/browser/chromeos/policy/
cloud_external_data_policy_observer.cc 92 const PolicyMap::Entry* current_entry = current.Get(parent_->policy_); local
93 if ((!previous_entry && current_entry) ||
94 (previous_entry && !current_entry) ||
95 (previous_entry && current_entry &&
96 !previous_entry->Equals(*current_entry))) {
99 parent_->HandleExternalDataPolicyUpdate(user_id_, current_entry);
  /external/chromium_org/components/dom_distiller/core/
dom_distiller_model.cc 180 ArticleEntry current_entry; local
181 if (GetEntryById(entry_id, &current_entry)) {
182 RemoveEntry(current_entry);
192 ArticleEntry current_entry; local
193 if (!GetEntryById(entry_id, &current_entry)) {
198 if (!AreEntriesEqual(current_entry, entry)) {
201 RemoveEntry(current_entry);
  /external/valgrind/main/callgrind/
callstack.c 190 call_entry* current_entry; local
198 current_entry = &(CLG_(current_call_stack).entry[CLG_(current_call_stack).sp]);
213 CLG_ASSERT(current_entry->cxt != 0);
214 CLG_(copy_cost_lz)( CLG_(sets).full, &(current_entry->enter_cost),
248 current_entry->jcc = jcc;
249 current_entry->sp = sp;
250 current_entry->ret_addr = ret_addr;
251 current_entry->nonskipped = CLG_(current_state).nonskipped;
257 current_entry++;
258 current_entry->cxt = 0
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 322 int current_entry = contents->GetController().GetCurrentEntryIndex(); local
325 int chapter_id = current_entry;
  /external/lldb/source/Symbol/
DWARFCallFrameInfo.cpp 339 const dw_offset_t current_entry = offset; local
341 dw_offset_t next_entry = current_entry + len + 4;
346 m_cie_map[current_entry] = ParseCIE (current_entry);
351 const dw_offset_t cie_offset = current_entry + 4 - cie_id;
361 FDEEntryMap::Entry fde (addr, length, current_entry);
370 current_entry);
382 lldb::offset_t current_entry = offset; local
401 cie_offset = current_entry + 4 - cie_offset;
418 const dw_offset_t end_offset = current_entry + length + 4
    [all...]
  /system/core/fastbootd/commands/
partitions.c 271 struct GPT_entry_raw *current_entry = GPT_get_pointer(table, old_entry); local
273 if (GPT_check_overlap_except(table, new_entry, current_entry)) {
278 if (current_entry == NULL) {
283 *current_entry = *new_entry;
459 struct GPT_entry_raw *current_entry; local
466 current_entry = &table->entries[current];
468 (char *) current_entry->partition_guid , 16) == 0;
469 dontcheck |= current_entry->type_guid[0] == 0;
470 dontcheck |= current_entry == exclude;
472 if (!dontcheck && ((entry->last_lba >= current_entry->first_lba &
    [all...]
  /external/chromium_org/chrome/browser/sync/sessions/
sessions_sync_manager.cc 840 const NavigationEntry* current_entry = local
852 const NavigationEntry* current_entry = local
    [all...]
  /external/chromium_org/content/browser/frame_host/
render_frame_host_manager.cc 773 // no current_entry.
791 const NavigationEntry* current_entry,
795 return current_entry && web_ui_.get() &&
797 controller.GetBrowserContext(), current_entry->GetURL()) ==
820 const NavigationEntry* current_entry = local
979 NavigationEntry* current_entry = controller.GetLastCommittedEntry(); local
1485 const NavigationEntry* current_entry = local
    [all...]
  /external/chromium_org/base/
values.cc 359 ValueMap::const_iterator current_entry = dictionary_.find(key); local
360 DCHECK((current_entry == dictionary_.end()) || current_entry->second);
361 return current_entry != dictionary_.end();
803 for (ValueMap::const_iterator current_entry(dictionary_.begin());
804 current_entry != dictionary_.end(); ++current_entry) {
805 result->SetWithoutPathExpansion(current_entry->first,
806 current_entry->second->DeepCopy());

Completed in 311 milliseconds