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

1 2 3 4 5 6

  /external/webkit/WebCore/bindings/generic/
GenericBinding.h 40 // Class to represent execution state for each language binding.
42 class State {};
44 // Common notion of execution state for language bindings.
46 class State<GenericBinding> {
  /external/webkit/WebCore/bindings/v8/specialization/
V8BindingState.h 39 // Singleton implementation of State<V8Binding>. Uses V8's global data
40 // structures to return information about relevant execution state.
42 class State<V8Binding> : public State<GenericBinding> {
45 static State* Only();
54 explicit State() {}
55 ~State();
58 typedef State<V8Binding> V8BindingState;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
panoramiXext.h 41 int State; /* PanroamiXOff, PanoramiXOn */
  /external/webkit/WebCore/inspector/front-end/
Drawer.js 35 this.state = WebInspector.Drawer.State.Hidden;
121 this.state = (this.fullPanel ? WebInspector.Drawer.State.Full : WebInspector.Drawer.State.Variable);
170 this.state = WebInspector.Drawer.State.Hidden;
178 if (this.state === WebInspector.Drawer.State.Hidden)
183 if (this.state === WebInspector.Drawer.State.Variable)
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_vms.h 31 enum State {
  /external/skia/include/effects/
SkColorMatrixFilter.h 40 struct State {
55 typedef void (*Proc)(State*, unsigned r, unsigned g, unsigned b,
59 State fState;
SkBlurDrawLooper.h 59 enum State {
64 State fState;
  /frameworks/base/media/libstagefright/include/
HTTPStream.h 63 enum State {
69 State mState;
NuHTTPDataSource.h 49 enum State {
57 State mState;
  /frameworks/base/telephony/java/com/android/internal/telephony/
MmiCode.java 27 public enum State {
36 * @return Current state of MmiCode request
38 public State getState();
49 * State becomes CANCELLED unless already COMPLETE or FAILED
  /external/chromium/net/proxy/
init_proxy_resolver.h 53 enum State {
77 // Returns OK and rewinds the state machine when there
81 // Gets the initial state (we skip fetching when the
83 State GetStartState() const;
103 State next_state_;
  /external/guava/src/com/google/common/base/
Service.java 23 * An object with an operational state, plus asynchronous {@link #start()} and
24 * {@link #stop()} lifecycle methods to transfer into and out of this state.
28 * <li>{@link State#NEW} -&gt;</li>
29 * <li>{@link State#STARTING} -&gt;</li>
30 * <li>{@link State#RUNNING} -&gt;</li>
31 * <li>{@link State#STOPPING} -&gt;</li>
32 * <li>{@link State#TERMINATED}</li>
35 * If the service fails while starting, running or stopping, its state will be
36 * {@link State#FAILED}, and its behavior is undefined. Such a service cannot be
42 * the threading and state management easier
86 State state(); method in interface:Service
    [all...]
  /external/guava/src/com/google/common/collect/
AbstractIterator.java 30 * end-of-data status without changing the iterator's state, using the {@link
62 private State state = State.NOT_READY; field in class:AbstractIterator
64 private enum State {
118 state = State.DONE;
123 checkState(state != State.FAILED);
124 switch (state) {
    [all...]
  /external/skia/bench/
SkBenchmark.h 14 enum State {
41 void setDither(SkTriState::State state) {
42 fDither = state;
62 SkTriState::State fDither;
  /external/webkit/WebCore/platform/
PlatformTouchPoint.h 39 enum State {
50 PlatformTouchPoint(const IntPoint& windowPos, State);
54 State state() const { return m_state; } function in class:WebCore::PlatformTouchPoint
60 State m_state;
PurgeableBuffer.h 61 enum State { NonVolatile, Volatile, Purged };
62 mutable State m_state;
  /external/webkit/WebCore/websockets/
WebSocket.h 60 enum State {
74 State readyState() const;
110 State m_state;
  /external/webkit/WebKit/android/
RenderSkinAndroid.h 50 enum State {
  /bootable/recovery/edify/
expr.h 42 } State;
53 typedef Value* (*Function)(const char* name, State* state,
67 Value* EvaluateValue(State* state, Expr* expr);
74 char* Evaluate(State* state, Expr* expr);
77 Value* Literal(const char* name, State* state, int argc, Expr* argv[]);
82 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/base/
watchdog.h 51 // Reset static data to initial state. Useful for tests, to ensure
67 enum State {ARMED, DISARMED, SHUTDOWN };
73 State state_;
  /external/chromium/net/flip/
flip_network_transaction.h 60 enum State {
75 // Runs the state transition loop.
78 // Each of these methods corresponds to a State value. Those with an input
79 // argument receive the result from the previous state. If a method returns
81 // next state method as the result arg.
110 // The next state in the state machine.
111 State next_state_;
  /external/chromium/net/socket/
tcp_client_socket_pool.h 40 enum State {
55 // Runs the state transition loop.
68 State next_state_;
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_phyuv_c.h 51 unsigned long State;
  /external/webkit/WebCore/page/
EventSource.h 66 enum State {
72 State readyState() const;
111 State m_state;

Completed in 1275 milliseconds

1 2 3 4 5 6