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

1 2 3 4

  /external/chromium_org/chrome/browser/ui/search/
search_model_observer.h 14 virtual void ModelChanged(const SearchModel::State& old_state,
search_model.cc 42 const State old_state = state_; local
46 ModelChanged(old_state, state_));
57 const State old_state = state_; local
61 ModelChanged(old_state, state_));
72 const State old_state = state_; local
75 ModelChanged(old_state, state_));
86 const State old_state = state_; local
90 ModelChanged(old_state, state_));
search_delegate.h 30 virtual void ModelChanged(const SearchModel::State& old_state,
instant_page.cc 83 void InstantPage::ModelChanged(const SearchModel::State& old_state,
85 if (old_state.instant_support != new_state.instant_support)
search_delegate.cc 19 void SearchDelegate::ModelChanged(const SearchModel::State& old_state,
search_model_unittest.cc 21 virtual void ModelChanged(const SearchModel::State& old_state,
47 const SearchModel::State& old_state,
49 actual_old_state_ = old_state;
instant_page.h 108 virtual void ModelChanged(const SearchModel::State& old_state,
  /external/qemu/distrib/sdl-1.2.15/src/video/dc/
SDL_dcevents.c 93 static kbd_state_t old_state; local
111 SDL_memset(&old_state,0,sizeof(old_state));
119 shiftkeys = state->shift_keys ^ old_state.shift_keys;
128 if (state->matrix[i]!=old_state.matrix[i]) {
137 old_state = *state;
  /external/chromium_org/chromeos/ime/
fake_ime_keyboard.cc 45 bool old_state = caps_lock_is_enabled_; local
47 if (old_state != enable_caps_lock) {
  /external/chromium_org/chrome/browser/ui/
browser_instant_controller.cc 123 const SearchModel::State& old_state,
125 if (old_state.mode != new_state.mode) {
136 instant_.SearchModeChanged(old_state.mode, new_mode);
139 if (old_state.instant_support != new_state.instant_support)
browser_instant_controller.h 52 virtual void ModelChanged(const SearchModel::State& old_state,
  /external/qemu/qobject/
json-lexer.c 68 from OLD_STATE required lookahead. This happens whenever the table
70 #define TERMINAL_NEEDED_LOOKAHEAD(old_state, terminal) \
71 (json_lexer[(old_state)][0] == (terminal))
  /art/runtime/
thread-inl.h 115 int16_t old_state = old_state_and_flags.as_struct.state; local
116 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable);
120 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state);
125 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state);
130 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state);
138 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state);
152 return static_cast<ThreadState>(old_state);
  /external/chromium_org/third_party/cython/src/Cython/Plex/
DFA.py 32 for (key, old_state) in old_machine.initial_states.iteritems():
33 new_state = state_map.old_to_new(epsilon_closure(old_state))
39 for old_state in state_map.new_to_old(new_state):
40 for event, old_target_states in old_state.transitions.iteritems():
92 old_to_new_dict = None # {(old_state,...) : new_state}
115 #for old_state in old_state_set.keys():
116 #new_state.merge_actions(old_state)
Machines.py 141 for old_state in old_machine.states:
143 old_to_new[old_state] = new_state
144 for name, old_state in old_machine.initial_states.iteritems():
145 initial_states[name] = old_to_new[old_state]
146 for old_state in old_machine.states:
147 new_state = old_to_new[old_state]
148 for event, old_state_set in old_state.transitions.iteritems():
153 new_state['action'] = old_state.action
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsubstateclient.h 63 C old_state; member in struct:buzz::PubSubStateChange
216 C old_state = has_old_state ? state_by_key_[key] : default_state_; local
217 if ((retracted && !has_old_state) || StatesEqual(new_state, old_state)) {
235 change.old_state = old_state;
hangoutpubsubclient.cc 257 change.published_nick, change.old_state, change.new_state);
276 bool was_muted = change.old_state;
341 change.published_nick, change.old_state, change.new_state);
358 change.published_nick, change.old_state, change.new_state);
375 change.published_nick, change.old_state, change.new_state);
394 bool was_blockee = change.old_state;
  /external/chromium_org/chrome/browser/metrics/
thread_watcher_unittest.cc 93 State old_state; local
96 old_state = thread_watcher_state_;
97 if (old_state != DEACTIVATED)
107 return old_state;
111 WaitState old_state; local
114 old_state = wait_state_;
118 return old_state;
122 State old_state = UpdateState(ACTIVATED); variable
123 EXPECT_EQ(old_state, INITIALIZED);
128 State old_state = UpdateState(DEACTIVATED) variable
135 State old_state = UpdateState(SENT_PING); variable
141 State old_state = UpdateState(RECEIVED_PONG); variable
    [all...]
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_tab_helper.cc 93 const bool old_state = is_starred_; local
97 if (is_starred_ != old_state && delegate_)
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar_thumb.cc 129 CustomButton::ButtonState old_state = state_;
131 scroll_bar_->OnThumbStateChanged(old_state, state);
  /external/fio/
libfio.c 179 int old_state = td->runstate; local
182 return old_state;
185 void td_restore_runstate(struct thread_data *td, int old_state)
187 td_set_runstate(td, old_state);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old.h 76 enum wpa_states old_state);
  /external/chromium_org/athena/wm/
bezel_controller.cc 86 State old_state = state_;
96 } else if (old_state == BEZEL_SCROLLING_TWO_FINGERS) {
  /external/chromium_org/mojo/system/
local_message_pipe_endpoint.cc 33 HandleSignalsState old_state = GetHandleSignalsState(); local
37 if (!new_state.equals(old_state))
  /external/chromium_org/chrome/browser/ui/panels/
native_panel.h 57 virtual void PanelExpansionStateChanging(Panel::ExpansionState old_state,

Completed in 881 milliseconds

1 2 3 4