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

1 2 3 4

  /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/opencore/oscl/oscl/osclio/src/
oscl_socket_serv_imp_base.h 52 //server state
61 TSocketServState State()const
  /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 59 enum State {
65 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/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/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;
  /frameworks/base/awt/org/apache/harmony/awt/state/
State.java 21 package org.apache.harmony.awt.state;
30 * State of the component
32 public interface State {
  /frameworks/base/include/media/stagefright/
HTTPDataSource.h 62 enum State {
68 State mState;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
NetworkInfo.java 26 public enum State {
37 State state = State.UNKNOWN; field in class:NetworkInfo
55 public State
57 return state;
63 State state) {
69 this.state = state;
    [all...]
  /packages/apps/Camera/src/com/android/camera/
BitmapManager.java 43 private static enum State {CANCEL, ALLOW}
45 public State mState = State.ALLOW;
51 if (mState == State.CANCEL) {
53 } else if (mState == State.ALLOW) {
58 s = "thread state = " + s + ", options = " + mOptions;
90 boolean result = (status.mState != State.CANCEL);
  /bionic/libc/tools/
gensyscalls.py 248 class State:
603 state = State() variable
604 state.process_file(bionic_root+"SYSCALLS.TXT")
605 state.regenerate()

Completed in 1578 milliseconds

1 2 3 4