HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 1426 - 1450 of 8554) sorted by null

<<51525354555657585960>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeParser.cs 59 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state )
60 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), state )
65 public DebugTreeParser( ITreeNodeStream input, RecognizerSharedState state )
66 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, null ), state )
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeParser.java 48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) {
49 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), state);
53 public DebugTreeParser(TreeNodeStream input, RecognizerSharedState state) {
54 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,null), state);
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionManager.java 70 ClientConnectionRequest requestConnection(HttpRoute route, Object state)
  /external/bluetooth/bluedroid/bta/include/
bta_ag_co.h 29 /* Definitions for audio state callout function "state" parameter */
58 ** state - Audio state
67 BTA_API extern void bta_ag_co_audio_state(UINT16 handle, UINT8 app_id, UINT8 state);
  /external/bluetooth/bluedroid/stack/avdt/
avdt_ad.c 125 ** the given state.
133 tAVDT_TC_TBL *avdt_ad_tc_tbl_by_st(UINT8 type, tAVDT_CCB *p_ccb, UINT8 state)
146 (p_tbl->state == state))
163 (p_tbl->state == state))
173 (p_tbl->state == state))
271 if (p_tbl->state == AVDT_AD_ST_UNUSED)
284 p_tbl->state = AVDT_AD_ST_IDLE
    [all...]
  /external/chromium/chrome/browser/sync/glue/
data_type_controller_mock.h 25 MOCK_CONST_METHOD0(state, State());
  /external/chromium/chrome/browser/ui/views/location_bar/
page_action_with_badge_view.h 24 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
  /external/chromium/third_party/libjingle/source/talk/examples/login/
xmppthread.h 53 void OnStateChange(buzz::XmppEngine::State state);
  /external/chromium/webkit/glue/
p2p_transport.h 19 enum State {
32 // Called when readable of writable state of the stream changes.
33 virtual void OnStateChange(State state) = 0;
  /external/chromium_org/ash/launcher/
launcher_button.h 22 // Used to indicate the current state of the button.
23 enum State {
49 // |state| is or'd into the current state.
50 void AddState(State state);
51 void ClearState(State state);
52 int state() const { return state_; } function in class:ash::internal::LauncherButton
99 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE
    [all...]
  /external/chromium_org/base/android/
activity_status_unittest.cc 26 // Used to generate a callback that stores the new state at a given location.
27 void StoreStateTo(ActivityState* target, ActivityState state) {
28 *target = state;
36 // Shared state for the multi-threaded test.
37 // This uses a thread to register for events and listen to them, while state
60 // Change state, then wait for the thread to modify state.
84 void StoreStateAndSignal(ActivityState state) {
86 state_ = state;
105 // Create a new listener that stores the new state into |result| on ever
    [all...]
  /external/chromium_org/chrome/browser/prefs/
proxy_prefs.h 38 // State of proxy configuration.
66 std::string ConfigStateToDebugString(ConfigState state);
  /external/chromium_org/chrome/browser/sync/glue/
autofill_profile_data_type_controller.cc 50 DCHECK_EQ(state(), MODEL_STARTING);
79 DCHECK_EQ(state(), MODEL_STARTING);
110 DCHECK(state() == STOPPING || state() == NOT_RUNNING);
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_util.h 40 int EventFlagsFromGdkState(guint state);
  /external/chromium_org/chrome/browser/ui/panels/
panel_bounds_animation.h 30 virtual void AnimateToState(double state) OVERRIDE {}
  /external/chromium_org/chrome/browser/ui/views/infobars/
infobar_container_view.h 25 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/location_bar/
page_action_with_badge_view.h 27 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
  /external/chromium_org/chrome/installer/util/
eula_util.cc 55 // Attempts to initialize |state| with any Chrome-related product.
57 bool GetAnyChromeProductState(bool system_level, ProductState* state) {
58 return state->Initialize(system_level, BrowserDistribution::CHROME_BROWSER)
59 || state->Initialize(system_level, BrowserDistribution::CHROME_FRAME)
60 || state->Initialize(system_level, BrowserDistribution::CHROME_APP_HOST);
76 // System-level. Try to use Chrome binaries product state.
78 // Fall back to Chrome Browser product state only.
  /external/chromium_org/chromeos/login/
login_state.cc 60 void LoginState::SetLoggedInState(LoggedInState state,
62 if (state == logged_in_state_ && type == logged_in_user_type_)
64 VLOG(1) << "LoggedInState: " << state << " UserType: " << type;
65 logged_in_state_ = state;
  /external/chromium_org/content/renderer/
internal_document_state_data.h 25 // Stores internal state per WebDataSource.
75 void set_is_overriding_user_agent(bool state) {
76 is_overriding_user_agent_ = state;
79 // True if we have to reset the scroll and scale state of the page
84 void set_must_reset_scroll_and_scale_state(bool state) {
85 must_reset_scroll_and_scale_state_ = state;
90 // state by way of clear_cache_policy_override.
  /external/chromium_org/media/audio/
audio_output_ipc.h 15 // Contains IPC notifications for the state of the server side
16 // (AudioOutputController) audio state changes and when an AudioOutputController
21 // sends information about the current playback state and error to the
23 enum State {
29 // Called when state of an audio stream has changed.
30 virtual void OnStateChanged(State state) = 0;
  /external/chromium_org/sync/engine/
backoff_delay_provider.h 41 const sessions::ModelNeutralState& state) const;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppthread.h 55 void OnStateChange(buzz::XmppEngine::State state);
  /external/chromium_org/third_party/openssl/openssl/ssl/
d1_clnt.c 153 int new_state,state,skip=0; local
194 state=s->state;
196 switch(s->state)
200 s->state=SSL_ST_CONNECT;
245 s->state=SSL3_ST_CW_CLNT_HELLO_A;
267 s->state=s->s3->tmp.next_state;
286 s->state=s->d1->next_state;
304 s->state=SSL3_ST_CW_FLUSH;
308 s->state=SSL3_ST_CR_SRVR_HELLO_A
    [all...]
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFShader.h 47 class State;
51 ShaderCanonicalEntry(SkPDFObject* pdfShader, const State* state);
55 const State* fState;
64 static SkPDFObject* GetPDFShaderByState(State* shaderState);

Completed in 3520 milliseconds

<<51525354555657585960>>