HomeSort by relevance Sort by last modified time
    Searched defs:State (Results 101 - 125 of 724) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/media/audio/
audio_input_device.h 28 // State sequences:
108 AudioInputIPCDelegate::State state) OVERRIDE;
113 enum State {
142 // Current state (must only be accessed from the IO thread). See comments for
143 // State enum above.
144 State state_;
150 // Stores the Automatic Gain Control state. Default is false.
audio_output_device.h 22 // State sequences.
34 // deferred until OnStreamCreated, with the last valid state being used)
104 virtual void OnStateChanged(AudioOutputIPCDelegate::State state) OVERRIDE;
118 enum State {
129 // upon state changes.
149 // Current state (must only be accessed from the IO thread). See comments for
150 // State enum above.
151 State state_;
153 // State of Play() / Pause() calls before OnStreamCreated() is called
    [all...]
  /external/chromium_org/media/formats/webm/
webm_parser.h 59 // Resets the state of the parser so it can start parsing a new list.
73 enum State {
88 void ChangeState(State new_state);
126 State state_;
138 // Stack of state for all the lists currently being parsed. Lists are
  /external/chromium_org/remoting/jingle_glue/
signal_strategy.h 21 enum State {
46 // Called after state of the connection has changed. If the state
49 virtual void OnSignalStrategyStateChange(State state) = 0;
71 // Returns current state.
72 virtual State GetState() const = 0;
74 // Returns the last error. Set when state changes to DISCONNECT.
  /external/chromium_org/remoting/protocol/
session.h 28 enum State {
59 // Called after session state has changed. It is safe to destroy
60 // the session from within the handler if |state| is AUTHENTICATING
62 virtual void OnSessionStateChange(State state) = 0;
107 // destroyed, unless the state is set to FAILED or CLOSED.
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
CSSPreloadScanner.h 50 enum State {
69 State m_state;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
DateTimeFormat.cpp 105 enum State {
111 } state = StateLiteral; local
119 switch (state) {
122 state = StateInQuoteQuote;
132 state = StateInQuote;
142 state = StateLiteral;
152 state = StateSymbol;
157 state = StateQuote;
176 state = StateSymbol;
181 state = ch == '\'' ? StateLiteral : StateInQuote
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebTouchPoint.h 43 , state(StateUndefined)
51 enum State {
61 State state; member in class:blink::WebTouchPoint
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
muc.h 43 enum State { MUC_JOINING, MUC_JOINED, MUC_LEAVING };
44 State state() const { return state_; } function in class:buzz::Muc
45 void set_state(State state) { state_ = state; }
58 State state_;
  /external/deqp/execserver/
xsTestDriver.hpp 49 enum State
67 State m_state;
  /external/deqp/framework/platform/android/
tcuAndroidWindow.hpp 45 enum State
78 State m_state;
  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 32 private State state = State.NOT_READY; field in class:AbstractIterator
36 private enum State {
45 state = State.DONE;
51 checkState(state != State.FAILED);
52 switch (state) {
63 state = State.FAILED; // temporary pessimis
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractIterator.java 31 * end-of-data status without changing the iterator's state, using the {@link
65 private State state = State.NOT_READY; field in class:AbstractIterator
70 private enum State {
124 state = State.DONE;
130 checkState(state != State.FAILED);
131 switch (state) {
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 24 * An object with an operational state, plus asynchronous {@link #start()} and
25 * {@link #stop()} lifecycle methods to transfer into and out of this state.
29 * <li>{@link State#NEW} -&gt;</li>
30 * <li>{@link State#STARTING} -&gt;</li>
31 * <li>{@link State#RUNNING} -&gt;</li>
32 * <li>{@link State#STOPPING} -&gt;</li>
33 * <li>{@link State#TERMINATED}</li>
36 * If the service fails while starting, running or stopping, its state will be
37 * {@link State#FAILED}, and its behavior is undefined. Such a service cannot be
42 * make the threading and state management easier
87 State state(); method in interface:Service
    [all...]
  /frameworks/av/include/common_time/
ICommonClock.h 54 enum State {
83 virtual status_t getState(State* state) = 0;
  /frameworks/av/include/media/stagefright/
MediaMuxer.h 126 enum State {
132 State mState;
  /frameworks/av/include/media/stagefright/timedtext/
TimedTextDriver.h 68 enum State {
86 State mState;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
abstract_host.js 24 cvox.AbstractHost.State = {
109 * @param {boolean} active The desired state; true for active, false for
113 this.onStateChanged_(active ? cvox.AbstractHost.State.ACTIVE :
114 cvox.AbstractHost.State.INACTIVE);
122 this.onStateChanged_(cvox.AbstractHost.State.KILLED);
131 * @param {cvox.AbstractHost.State} state The new state.
134 cvox.AbstractHost.prototype.onStateChanged_ = function(state) {
135 var active = state == cvox.AbstractHost.State.ACTIVE
    [all...]
  /external/chromium_org/remoting/webapp/
host_dispatcher.js 23 /** @type {remoting.HostDispatcher.State} @private */
24 this.state_ = remoting.HostDispatcher.State.UNKNOWN;
33 remoting.HostDispatcher.State = {
43 if (this.state_ != remoting.HostDispatcher.State.UNKNOWN)
55 that.state_ = remoting.HostDispatcher.State.NATIVE_MESSAGING;
60 that.state_ = remoting.HostDispatcher.State.NOT_INSTALLED;
76 case remoting.HostDispatcher.State.UNKNOWN:
80 case remoting.HostDispatcher.State.NATIVE_MESSAGING:
83 case remoting.HostDispatcher.State.NOT_INSTALLED:
96 case remoting.HostDispatcher.State.UNKNOWN
    [all...]
  /bootable/recovery/edify/
expr.h 46 } State;
57 typedef Value* (*Function)(const char* name, State* state,
71 Value* EvaluateValue(State* state, Expr* expr);
78 char* Evaluate(State* state, Expr* expr);
81 Value* Literal(const char* name, State* state, int argc, Expr* argv[]);
86 Value* ConcatFn(const char* name, State* state, int argc, Expr* argv[])
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMScheme.java 47 enum State {
58 private State state; field in class:NTLMScheme
67 this.state = State.UNINITIATED;
94 if (this.state == State.UNINITIATED) {
95 this.state = State.CHALLENGE_RECEIVED;
97 this.state = State.FAILED
    [all...]
  /external/chromium_org/ash/shelf/
shelf_button.h 20 // Used to indicate the current state of the button.
21 enum State {
51 // |state| is or'd into the current state.
52 void AddState(State state);
53 void ClearState(State state);
54 int state() const { return state_; } function in class:ash::ShelfButton
103 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE
    [all...]
  /external/chromium_org/base/
linux_util.cc 44 // The simple state machine goes from:
49 // Retrieve the current state, if we're in STATE_DID_NOT_CHECK,
52 LinuxDistroState State() {
97 LinuxDistroState state = distro_state_singleton->State();
98 if (STATE_CHECK_FINISHED == state)
100 if (STATE_CHECK_STARTED == state)
102 DCHECK_EQ(state, STATE_DID_NOT_CHECK);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
GoogleServiceAuthError.java 10 * This class mirrors the native GoogleServiceAuthError class State enum from:
15 public enum State {
60 State(int code, int message) {
65 public static State fromCode(int code) {
66 for (State state : State.values()) {
67 if (state.mCode == code) {
68 return state;
71 throw new IllegalArgumentException("No state for code: " + code)
    [all...]
  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_tab_reloader.h 39 enum State {
46 // this state either on a main frame SSL error that may be caused by a
48 // tab will remain in this state until the current load succeeds, a new
53 // The TabHelper switches to this state from STATE_MAYBE_BROKEN_BY_PORTAL in
55 // state until a new provisional load starts, the original load successfully
62 // state, if the page already timed out. If anything else happens
63 // when in this state (Another error, successful navigation, or the original
83 // Called when a non-error main frame load starts. Resets current state,
100 // Sets state to STATE_NONE, unless this is a login tab.
117 State state() const { return state_; function in class:CaptivePortalTabReloader
    [all...]

Completed in 2453 milliseconds

1 2 3 45 6 7 8 91011>>