HomeSort by relevance Sort by last modified time
    Searched full:state (Results 451 - 475 of 14455) sorted by null

<<11121314151617181920>>

  /external/mesa3d/docs/
openvg.html 3 <TITLE>OpenVG State Tracker</TITLE>
11 <H1>OpenVG State Tracker</H1>
14 The current version of the OpenVG state tracker implements OpenVG 1.0.
22 The OpenVG state tracker depends on the Gallium architecture and a working EGL implementation.
  /external/oprofile/events/i386/pii/
unit_masks 6 0x08 (M)odified cache state
7 0x04 (E)xclusive cache state
8 0x02 (S)hared cache state
9 0x01 (I)nvalid cache state
  /external/oprofile/events/i386/piii/
unit_masks 6 0x08 (M)odified cache state
7 0x04 (E)xclusive cache state
8 0x02 (S)hared cache state
9 0x01 (I)nvalid cache state
  /external/qemu/
migration.c 180 dprintf("setting error state\n");
181 s->state = MIG_STATE_ERROR;
256 if (s->state != MIG_STATE_ACTIVE) {
257 dprintf("put_ready returning because of non-active state\n");
263 int state; local
270 state = MIG_STATE_ERROR;
272 state = MIG_STATE_COMPLETED;
275 s->state = state;
282 return s->state;
    [all...]
  /external/webkit/Source/WebCore/css/
MediaQueryListListener.cpp 34 void MediaQueryListListener::queryChanged(ScriptState* state, MediaQueryList* query)
36 ScriptCallback callback(state, m_value);
38 callback.appendArgument(toJS(state, query));
41 v8::Handle<v8::Context> context = state->context();
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 80 state: "default" 0.0;
89 state: "default" 0.0;
103 state: "default" 0.0;
111 state: "disabled" 0.0;
116 state: "hovered" 0.0;
124 state: "focused" 0.0;
132 state: "pressed" 0.0;
146 state: "default" 0.0;
163 state: "default" 0.0;
172 state: "disabled" 0.0
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
WebPluginSiteDataManager.cpp 162 GetSitesWithDataState* state = new GetSitesWithDataState(this, callbackID); local
163 m_pendingGetSitesWithData.set(callbackID, state);
164 state->getSitesWithDataForNextPlugin();
223 ClearSiteDataState* state = new ClearSiteDataState(this, sitesVector, flags, maxAgeInSeconds, callbackID); local
224 m_pendingClearSiteData.set(callbackID, state);
225 state->clearSiteDataForNextPlugin();
262 GetSitesWithDataState* state = m_pendingGetSitesWithData.get(callbackID); local
263 ASSERT(state);
265 state->didGetSitesWithDataForSinglePlugin(sites);
270 OwnPtr<GetSitesWithDataState> state = adoptPtr(m_pendingGetSitesWithData.take(callbackID)) local
278 ClearSiteDataState* state = m_pendingClearSiteData.get(callbackID); local
286 OwnPtr<ClearSiteDataState> state = adoptPtr(m_pendingClearSiteData.take(callbackID)); local
    [all...]
  /external/wpa_supplicant_8/hostapd/
dump_state.h 2 * hostapd / State dump
  /frameworks/base/cmds/ip-up-vpn/
ip-up-vpn.c 68 FILE *state = fopen(DIR ".tmp", "wb"); local
69 if (!state) {
70 ALOGE("Cannot create state: %s", strerror(errno));
76 fprintf(state, "%s\n", argv[1]);
77 fprintf(state, "%s/32\n", argv[4]);
78 fprintf(state, "0.0.0.0/0\n");
79 fprintf(state, "%s %s\n", env("DNS1"), env("DNS2"));
80 fprintf(state, "\n");
137 fprintf(state, "%s\n", interface);
138 fprintf(state, "%s/%s\n", address, env("INTERNAL_CIDR4"))
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageEventListener.java 26 * Called when the detection state of a USB Mass Storage host has changed.
33 * Called when storage has changed state
35 * @param oldState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
36 * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 31 void notifyCallState(int state, String incomingNumber);
32 void notifyServiceState(in ServiceState state);
36 void notifyDataActivity(int state);
37 void notifyDataConnection(int state, boolean isDataConnectivityPossible,
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
  /frameworks/rs/
rsType.h 39 struct State {
54 State state; member in struct:android::renderscript::Type::Hal
66 uint32_t getDimX() const {return mHal.state.dimX;}
67 uint32_t getDimY() const {return mHal.state.dimY;}
68 uint32_t getDimZ() const {return mHal.state.dimZ;}
70 bool getDimFaces() const {return mHal.state.faces;}
73 rsAssert(lod < mHal.state.lodCount);
74 return mHal.state.lodDimX[lod];
77 rsAssert(lod < mHal.state.lodCount)
    [all...]
  /hardware/ril/mock-ril/src/proto/
ctrl.proto 28 // request of setting radio state
30 required ril_proto.RadioState state = 1;
33 // response of set/get radio state
35 required ril_proto.RadioState state = 1;
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 43 private byte state = 0; field in class:QuotedPrintableInputStream
128 switch (state) {
129 case 0: // start state, no bytes pending
132 break; // state remains 0
134 state = 1;
139 state = 2;
142 state = 3;
148 * Emit one = and stay in this state.
160 state = 0;
167 state = 0;
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
Summary.java 25 static String get(Context context, String ssid, DetailedState state) {
28 int index = state.ordinal();
36 static String get(Context context, DetailedState state) {
37 return get(context, null, state);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
IGLPropertyAccessor.java 17 package com.android.ide.eclipse.gltrace.state.transforms;
19 import com.android.ide.eclipse.gltrace.state.IGLProperty;
26 /** Obtain a specific property from the given state. */
27 IGLProperty getProperty(IGLProperty state);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
ShaderUniformDetailsProvider.java 20 import com.android.ide.eclipse.gltrace.state.GLCompositeProperty;
21 import com.android.ide.eclipse.gltrace.state.GLStateType;
22 import com.android.ide.eclipse.gltrace.state.IGLProperty;
39 public boolean isApplicable(IGLProperty state) {
40 return getShaderUniformProperty(state) != null;
59 public void updateControl(IGLProperty state) {
60 IGLProperty uniform = getShaderUniformProperty(state);
154 * the state hierarchy.
156 private IGLProperty getShaderUniformProperty(IGLProperty state) {
157 if (state.getType() == GLStateType.PER_UNIFORM_STATE)
    [all...]
VboDetailProvider.java 21 import com.android.ide.eclipse.gltrace.state.GLCompositeProperty;
22 import com.android.ide.eclipse.gltrace.state.GLStateType;
23 import com.android.ide.eclipse.gltrace.state.IGLProperty;
62 public boolean isApplicable(IGLProperty state) {
63 return getVboProperty(state) != null;
132 public void updateControl(IGLProperty state) {
133 IGLProperty vbo = getVboProperty(state);
175 * the state hierarchy.
177 private IGLProperty getVboProperty(IGLProperty state) {
178 if (state.getType() == GLStateType.VBO_COMPOSITE)
    [all...]
  /system/core/libcorkscrew/arch-arm/
backtrace-arm.c 41 * state and running cleanup functions. Unwinding is performed virtually on
81 /* Unwind state. */
241 static void set_reg(unwind_state_t* state, uint32_t reg, uint32_t value) {
243 state->gregs[reg] = value;
246 static bool try_pop_registers(const memory_t* memory, unwind_state_t* state, uint32_t mask) {
247 uint32_t sp = state->gregs[R_SP];
258 set_reg(state, i, value);
263 set_reg(state, R_SP, sp);
278 * virtual register state (including the stack pointer) such that
282 unwind_state_t* state, byte_stream_t* stream, int pr_index)
562 unwind_state_t state; local
580 unwind_state_t state; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 38 /** A DFA state represents a set of possible NFA configurations.
39 * As Aho, Sethi, Ullman p. 117 says "The DFA uses its state
42 * input a1a2..an, the DFA is in a state that represents the
44 * NFA's start state along some path labeled a1a2..an."
48 * state as well, however. More importantly, we need to maintain
56 * is both a state (ala normal conversion) and an NFAContext describing
57 * the chain of rules (if any) followed to arrive at that state. There
61 * A DFA state may have multiple references to a particular state,
63 * meaning that state was reached via a different set of rule invocations
    [all...]
  /external/quake/quake/src/QW/client/
cl_ents.c 164 // set everything to the state we are delta'ing from
662 player_state_t *state; local
672 state = &cl.frames[parsecountmod].playerstate[num];
674 flags = state->flags = MSG_ReadShort ();
676 state->messagenum = cl.parsecount;
677 state->origin[0] = MSG_ReadCoord ();
678 state->origin[1] = MSG_ReadCoord ();
679 state->origin[2] = MSG_ReadCoord ();
681 state->frame = MSG_ReadByte ();
689 state->state_time = parsecounttime - msec*0.001;
795 player_state_t *state; local
911 entity_state_t *state; local
953 player_state_t *state; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
GenericTaintChecker.cpp 159 ProgramStateRef State,
161 return (State->isTainted(E, C.getLocationContext()) || isStdin(E, C) ||
163 State->isTainted(getPointedToSymbol(C, E))));
300 ProgramStateRef State = 0;
310 State = Rule.process(CE, C);
311 if (!State)
313 C.addTransition(State);
323 State = (this->*evalFunction)(CE, C);
324 if (!State)
326 C.addTransition(State);
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
shortest-path.h 54 // (a) is w.r.t a PDT search state - a pair of a PDT state and
55 // a 'start' state, which is either the PDT start state or
56 // the destination state of an open parenthesis.
57 // (b) the Distance() is from this 'start' state to the search state.
58 // (c) Parent().state is kNoLabel for the 'start' state.
62 // (a) the Distance() is from the Parent() 'start' state to th
85 StateId state; \/\/ PDT state member in struct:fst::PdtShortestPathData::SearchState
538 StateId state = state_queue_->Head(); local
    [all...]
  /dalvik/hit/src/com/android/hit/
RootObj.java 48 public final String getClassName(State state) {
52 theClass = state.findClass(mId);
54 Instance instance = state.findReference(mId);
56 theClass = state.findClass(instance.mClassId);
99 public final void resolveReferences(State state) {

Completed in 1582 milliseconds

<<11121314151617181920>>