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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/net/src/android/net/cts/
NetworkInfo_StateTest.java 19 import android.net.NetworkInfo.State;
25 assertEquals(State.CONNECTED, State.valueOf("CONNECTED"));
26 assertEquals(State.CONNECTING, State.valueOf("CONNECTING"));
27 assertEquals(State.DISCONNECTED, State.valueOf("DISCONNECTED"));
28 assertEquals(State.DISCONNECTING, State.valueOf("DISCONNECTING"));
29 assertEquals(State.SUSPENDED, State.valueOf("SUSPENDED"))
    [all...]
  /external/chromium_org/components/password_manager/core/common/
password_manager_ui.h 14 // The current state of the password manager's UI.
15 enum State {
32 // to be visible, in the management state.
36 // The icon needs to be visible, in the blacklisted state.
49 // Returns true if |state| represents a pending password.
50 bool IsPendingState(State state);
52 // Returns true if this state show cause the bubble to be shown without user
54 bool IsAutomaticDisplayState(State state);
    [all...]
password_manager_ui.cc 12 bool IsPendingState(State state) {
13 return state == PENDING_PASSWORD_AND_BUBBLE_STATE ||
14 state == PENDING_PASSWORD_STATE;
17 bool IsAutomaticDisplayState(State state) {
18 return state == PENDING_PASSWORD_AND_BUBBLE_STATE ||
19 state == CONFIRMATION_STATE;
22 State GetEndStateForAutomaticState(State state)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoaderStateMachine.h 36 // Encapsulates a state machine for FrameLoader. Note that this is different from FrameState,
37 // which stores the state of the current load that FrameLoader is executing.
43 // Once a load has been committed, the state may
46 enum State {
57 void advanceTo(State);
60 State m_state;
  /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...]
AbstractService.java 22 import com.google.common.util.concurrent.Service.State; // javadoc needs this
48 * The internal state, which equals external state unless
51 private State state = State.NEW; field in class:AbstractService
85 public final ListenableFuture<State> start() {
88 if (state == State.NEW) {
89 state = State.STARTING
225 public final State state() { method in class:AbstractService
    [all...]
ForwardingService.java 37 @Override public ListenableFuture<State> start() {
41 @Override public State state() { method in class:ForwardingService
42 return delegate().state();
45 @Override public ListenableFuture<State> stop() {
49 @Override public State startAndWait() {
53 @Override public State stopAndWait() {
67 protected State standardStartAndWait() {
77 protected State standardStopAndWait() {
  /external/chromium_org/chrome/browser/ui/search/
search_model_observer.h 13 // Informs the observer that the model's state has changed.
14 virtual void ModelChanged(const SearchModel::State& old_state,
15 const SearchModel::State& new_state) = 0;
search_model.h 21 // An observable model for UI components that care about search model state
25 struct State {
26 State();
27 State(const SearchMode& mode,
31 bool operator==(const State& rhs) const;
46 // Change the state. Change notifications are sent to observers.
47 void SetState(const State& state);
49 // Get the current state.
50 const State& state() const { return state_; function in class:SearchModel
    [all...]
  /external/chromium_org/mojo/services/gles2/
command_buffer_type_conversions.h 17 struct TypeConverter<CommandBufferStatePtr, gpu::CommandBuffer::State> {
18 static CommandBufferStatePtr Convert(const gpu::CommandBuffer::State& input);
22 struct TypeConverter<gpu::CommandBuffer::State, CommandBufferStatePtr> {
23 static gpu::CommandBuffer::State Convert(const CommandBufferStatePtr& input);
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_state.h 13 // bookmark bar's state.
23 // Returns YES if the bookmark bar is in the given state and not in an
25 - (BOOL)isInState:(BookmarkBar::State)state;
27 // Returns YES if the bookmark bar is animating from the given state (to any
28 // other state), NO otherwise.
29 - (BOOL)isAnimatingToState:(BookmarkBar::State)state;
31 // Returns YES if the bookmark bar is animating to the given state (from any
32 // other state), NO otherwise
    [all...]
  /external/clang/lib/Format/
ContinuationIndenter.cpp 72 LineState State;
73 State.FirstIndent = FirstIndent;
74 State.Column = FirstIndent;
75 State.Line = Line;
76 State.NextToken = Line->First;
77 State.Stack.push_back(ParenState(FirstIndent, Line->Level, FirstIndent,
80 State.LineContainsContinuedForLoopSection = false;
81 State.StartOfStringLiteral = 0;
82 State.StartOfLineLevel = 0;
83 State.LowestLevelOnLine = 0
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
dfa.h 11 struct State;
23 struct State *state; member in struct:Action
34 struct State **rules;
45 struct State *to;
55 typedef struct State {
58 struct State *next;
59 struct State *link;
66 } State;
68 void Go_genGoto(Go*, FILE *, State*, State*, int*)
    [all...]
  /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/chromium_org/third_party/WebKit/Source/core/dom/
DocumentLifecycle.h 42 enum State {
74 Scope(DocumentLifecycle&, State finalState);
77 void setFinalState(State finalState) { m_finalState = finalState; }
81 State m_finalState;
87 DeprecatedTransition(State from, State to);
90 State from() const { return m_from; }
91 State to() const { return m_to; }
95 State m_from;
96 State m_to
121 State state() const { return m_state; } function in class:blink::DocumentLifecycle
    [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);
  /external/chromium_org/chrome/browser/ui/passwords/
manage_passwords_icon.h 14 // Get/set the icon's state. Implementations of this class must implement
16 // the icon's state to the user.
17 void SetState(password_manager::ui::State state);
18 password_manager::ui::State state() const { return state_; } function in class:ManagePasswordsIcon
31 // Called from SetState() iff the icon's state has changed in order to do
32 // whatever platform-specific UI work is necessary given the new state.
36 // Updates the resource IDs in response to state changes.
39 password_manager::ui::State state_
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
MediaSource.java 34 public enum State {
44 public State state() { method in class:MediaSource
52 private static native State nativeState(long pointer);
  /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/chromium_org/athena/home/
home_card_gesture_manager.h 23 // Called when the gesture has ended. The state of the home card will
26 virtual void OnGestureEnded(HomeCard::State final_state,
37 HomeCard::State from_state,
38 HomeCard::State to_state,
49 // Get the final state from the last position.
50 HomeCard::State GetFinalState() const;
57 // The state when the gesture starts.
58 HomeCard::State original_state_;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilderSimulator.h 48 typedef Vector<Namespace, 1> State;
52 static State stateFor(HTMLTreeBuilder*);
54 const State& state() const { return m_namespaceStack; } function in class:blink::HTMLTreeBuilderSimulator
55 void setState(const State& state) { m_namespaceStack = state; }
65 State m_namespaceStack;
  /external/chromium_org/ui/app_list/search/
tokenized_string_char_iterator.h 24 struct State {
25 State();
26 State(size_t token_index, int char_index);
56 // Helpers to get and restore the iterator's state.
57 State GetState() const;
58 void SetState(const State& state);
  /external/chromium_org/net/quic/crypto/
quic_server_info.h 63 struct State {
64 State();
65 ~State();
77 DISALLOW_COPY_AND_ASSIGN(State);
82 const State& state() const;
83 State* mutable_state();
91 State state_;
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryParser.h 79 typedef void (MediaQueryParser::*State)(MediaQueryTokenType, const MediaQueryToken&);
81 void setStateAndRestrict(State, MediaQuery::Restrictor);
84 State m_state;
90 const static State ReadRestrictor;
91 const static State ReadMediaType;
92 const static State ReadAnd;
93 const static State ReadFeatureStart;
94 const static State ReadFeature;
95 const static State ReadFeatureColon;
96 const static State ReadFeatureValue
    [all...]

Completed in 1091 milliseconds

1 2 3 4 5 6 7 8 91011>>