/external/webkit/Source/WebCore/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 { 60 void advanceTo(State); 63 State m_state;
|
/external/webkit/Source/WebCore/platform/brew/ |
PlatformTouchEventBrew.cpp | 40 PlatformTouchPoint::State state; local 45 state = PlatformTouchPoint::TouchPressed; 49 state = PlatformTouchPoint::TouchReleased; 54 state = PlatformTouchPoint::TouchMoved; 66 m_touchPoints.append(PlatformTouchPoint(id, windowPos, state));
|
/frameworks/base/libs/rs/ |
rsMesh.h | 43 struct State { 56 State state; member in struct:android::renderscript::Mesh::Hal 62 mHal.state.vertexBuffers[index] = vb; 67 mHal.state.indexBuffers[index] = idx; 68 mHal.state.primitives[index] = prim;
|
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
SipPhoneBase.java | 56 private State state = State.IDLE; field in class:SipPhoneBase 126 public State getState() { 127 return state; 163 * Notify any interested party of a Phone state change {@link Phone.State} 170 * Notify registrants of a change in the call state. This notifies changes in {@link Call.State} 171 * Use this when changes in the precise call state are needed, else use notifyPhoneStateChanged [all...] |
/frameworks/media/libvideoeditor/osal/inc/ |
LV_Macros.h | 72 * @note This macro compares a current state with a state value. If they are different, 78 #define CHECK_STATE(fct, stateValue, state) \ 80 if((stateValue) != (state)) \ 82 M4OSA_TRACE1_1("" #fct " called in bad state %d", state) ; \
|
/hardware/ril/mock-ril/src/cpp/ |
experiments.cpp | 61 int state = static_cast<int *>(p)[0]; local 62 LOGD("GetReqScreenState state=%d", state); 63 return v8::Integer::New(state); 164 bool state = ss->state(); local 165 LOGD("state=%d", state); 167 state = ss->state(); [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
HasAttributes.java | 74 boolean state; 78 state = addrNode.hasAttributes(); 79 assertFalse("throw_False", state); 85 boolean state; 89 state = addrNode.hasAttributes(); 90 assertTrue("throw_True", state);
|
/frameworks/media/libvideoeditor/osal/src/ |
M4OSA_Thread.c | 59 threadContext->state = M4OSA_kThreadRunning; 63 while(threadContext->state == M4OSA_kThreadRunning) 71 if(threadContext->state == M4OSA_kThreadRunning) 74 //PR 2354 - ACO : Suppress stopping state and don't 76 threadContext->state = M4OSA_kThreadOpened; 112 * @note Once the thread is created, the state is M4OSA_kThreadOpened. 154 threadContext->state = M4OSA_kThreadOpened; 191 * Before calling this method, the state is M4OSA_kThreadOpened. 192 * Once the method is called, the state is M4OSA_kThreadStarting. 193 * Once the thread is running, the state is M4OSA_kThreadRunning [all...] |
/external/jpeg/ |
jchuff.c | 12 * back up to the start of the current MCU. To do this, we copy state 58 savable_state saved; /* Bit buffer & DC state at start of MCU */ 60 /* These fields are NOT loaded into local working state. */ 76 /* Working state while writing an MCU. 83 savable_state cur; /* Current bit buffer & DC state */ 270 #define emit_byte(state,val,action) \ 271 { *(state)->next_output_byte++ = (JOCTET) (val); \ 272 if (--(state)->free_in_buffer == 0) \ 273 if (! dump_buffer(state)) \ 278 dump_buffer (working_state * state) 479 working_state state; local 536 working_state state; local [all...] |
jdhuff.h | 83 typedef struct { /* Bitreading state saved across MCUs */ 88 typedef struct { /* Bitreading working state within an MCU */ 126 * but the state struct might not be (jpeg_huff_decode needs this). 127 * CHECK_BIT_BUFFER(state,n,action); 139 #define CHECK_BIT_BUFFER(state,nbits,action) \ 141 if (! jpeg_fill_bit_buffer(&(state),get_buffer,bits_left,nbits)) \ 143 get_buffer = (state).get_buffer; bits_left = (state).bits_left; } } 156 JPP((bitread_working_state * state, register bit_buf_type get_buffer, 177 #define HUFF_DECODE(result,state,htbl,failaction,slowlabel) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | 85 const ProgramState *state = StateMgr.getInitialState(InitLoc); local 105 const MemRegion *R = state->getRegion(PD, InitLoc); 109 SVal V = state->getSVal(loc::MemRegionVal(R)); 110 SVal Constraint_untested = evalBinOp(state, BO_GT, V, 120 if (const ProgramState *newState = state->assume(*Constraint, true)) 121 state = newState; 130 const MemRegion *R = state->getRegion(SelfD, InitLoc); 131 SVal V = state->getSVal(loc::MemRegionVal(R)); 135 state = state->assume(*LV, true) 344 const ProgramState *state = Pred->getState(); local 402 const ProgramState *state = pred->getState(); local 521 const ProgramState *state = Pred->getState(); local 537 const ProgramState *state = Pred->getState(); local 609 const ProgramState *state = Pred->getState(); local 780 const ProgramState *state = Pred->getState(); local 790 const ProgramState *state = Pred->getState(); local 1032 const ProgramState *state = builder.getState(); local 1083 const ProgramState *state = builder.getState(); local 1189 const ProgramState *state = Pred->getState(); local 1238 const ProgramState *state = (*it)->getState(); local 1262 const ProgramState *state = Pred->getState(); local 1300 const ProgramState *state = (*I)->getState(); local 1566 const ProgramState *state = Pred->getState(); local 1627 const ProgramState *state = Pred->getState(); local 1834 const ProgramState *state = N->getState(); local [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
ConnectivityManagerTest.java | 33 import android.net.NetworkInfo.State; 78 State state = ni.getState(); local 79 assertTrue(State.UNKNOWN.ordinal() >= state.ordinal() 80 && state.ordinal() >= State.CONNECTING.ordinal()); 87 State state = ni.getState(); local 88 assertTrue(State.UNKNOWN.ordinal() >= state.ordinal( [all...] |
/cts/tools/dasm/src/java_cup/ |
lalr_state.java | 8 /** This class represents a state in the LALR viable prefix recognition machine. 9 * A state consists of an LALR item set and a set of transitions to other 10 * states under terminal and non-terminal symbols. Each state represents 11 * a potential configuration of the parser. If the item set of a state 15 * this indicates that when the parser is in this state it is currently 19 * by several items). In our example above, the state would also include 30 * In a shift, it consumes one token and makes a transition to a new state. 32 * in the state (these new shifted items will then be found in the state at 37 * production. This leaves the machine in the same state is was in when th [all...] |
/external/llvm/utils/TableGen/ |
CallingConvEmitter.cpp | 33 << "ISD::ArgFlagsTy ArgFlags, CCState &State);\n"; 51 << "ISD::ArgFlagsTy ArgFlags, CCState &State) {\n"; 91 << "(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))\n" 96 O << IndentStr << "if (unsigned Reg = State.AllocateReg("; 107 O << IndentStr << "if (unsigned Reg = State.AllocateReg(RegList" 110 O << IndentStr << " State.addLoc(CCValAssign::getReg(ValNo, ValVT, " 122 O << IndentStr << "if (unsigned Reg = State.AllocateReg("; 148 O << IndentStr << "if (unsigned Reg = State.AllocateReg(RegList" 152 O << IndentStr << " State.addLoc(CCValAssign::getReg(ValNo, ValVT, " 161 << " = State.AllocateStack(" [all...] |
/packages/apps/Phone/src/com/android/phone/ |
InCallControlState.java | 30 * or "checked" state of the various controls available in the in-call 31 * UI, based on the current telephony state. 37 * state and/or enabledness of all possible in-call user operations. 50 // Our "public API": Boolean flags to indicate the state and/or 95 * Updates all our public boolean flags based on the current state of 99 final Phone.State state = mCM.getState(); // coarse-grained voice call state local 101 final Call.State fgCallState = fgCall.getState(); 102 final boolean hasActiveForegroundCall = (fgCallState == Call.State.ACTIVE) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
custom_button.h | 53 void set_paint_override(int state) { paint_override_ = state; } 65 // Get the CairoCachedSurface from |surfaces_| for |state|. 66 CairoCachedSurface* PixbufForState(int state); 68 // We store one surface for each possible state of the button; 69 // INSENSITIVE is the last available state; 75 // If non-negative, the state to paint the button. 98 // of controlling the hover state of a button. The "hover state" refers to the 177 // Set the state to draw. We will paint the widget as if it were in thi [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_prng.h | 70 /** size in bytes of exported state */ 72 /** Start a PRNG state 73 @param prng [out] The state to initialize 80 @param prng The PRNG state 84 /** Ready a PRNG state to read from 85 @param prng The PRNG state to ready 92 @param prng The PRNG state to read from 96 /** Terminate a PRNG state 97 @param prng The PRNG state to terminate 101 /** Export a PRNG state [all...] |
/external/speex/include/speex/ |
speex_jitter.h | 50 /** Generic adaptive jitter buffer state */ 53 /** Generic adaptive jitter buffer state */ 122 * @return Newly created jitter buffer state 126 /** Restores jitter buffer to its original state 128 * @param jitter Jitter buffer state 134 * @param jitter Jitter buffer state 140 * @param jitter Jitter buffer state 147 * @param jitter Jitter buffer state 157 * @param jitter Jitter buffer state 164 * @param jitter Jitter buffer state [all...] |
/external/webkit/Source/WebCore/storage/ |
IDBKeyPath.cpp | 167 // The basic state machine is: 177 ParserState state; 179 state = Identifier; 181 state = Array; 183 state = End; 190 switch (state) { 201 state = Dot; 203 state = Array; 205 state = End; 235 state = Dot [all...] |
/frameworks/base/core/java/android/net/ |
DummyDataStateTracker.java | 25 * A dummy data state tracker for use when we don't have a real radio 123 * Record the detailed state of a network, and if it is a 124 * change from the previous state, send a notification to 126 * @param state the new @{code DetailedState} 127 * @param reason a {@code String} indicating a reason for the state change, 129 * @param extraInfo optional {@code String} providing extra information about the state change 131 private void setDetailedState(NetworkInfo.DetailedState state, String reason, 133 if (DBG) log("setDetailed state, old =" 134 + mNetworkInfo.getDetailedState() + " and new state=" + state); [all...] |
/frameworks/base/core/java/android/preference/ |
TwoStatePreference.java | 33 * enabled/disabled based on the current state. 72 * Sets the checked state and saves it to the {@link SharedPreferences}. 74 * @param checked The checked state. 86 * Returns the checked state. 88 * @return The checked state. 171 * @param disableDependentsState The preference state that should disable dependents. 243 // No need to save instance state since it's persistent 253 protected void onRestoreInstanceState(Parcelable state) { 254 if (state == null || !state.getClass().equals(SavedState.class)) [all...] |
/frameworks/base/libs/rs/driver/ |
rsdMeshObj.cpp | 82 for (uint32_t ct=0; ct < mRSMesh->mHal.state.vertexBuffersCount; ct++) { 83 const Element *elem = mRSMesh->mHal.state.vertexBuffers[ct]->getType()->getElement(); 105 for (uint32_t ct=0; ct < mRSMesh->mHal.state.vertexBuffersCount; ct++) { 106 const Element *elem = mRSMesh->mHal.state.vertexBuffers[ct]->getType()->getElement(); 135 if (len < 1 || primIndex >= mRSMesh->mHal.state.primitivesCount || mAttribCount == 0) { 140 for (uint32_t ct=0; ct < mRSMesh->mHal.state.vertexBuffersCount; ct++) { 141 const Allocation *alloc = mRSMesh->mHal.state.vertexBuffers[ct]; 148 // update attributes with either buffer information or data ptr based on their current state 151 Allocation *alloc = mRSMesh->mHal.state.vertexBuffers[allocIndex]; 166 const Allocation *idxAlloc = mRSMesh->mHal.state.indexBuffers[primIndex] [all...] |
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
KeyguardUpdateMonitor.java | 72 private IccCard.State mSimState = IccCard.State.READY; 110 * the intent and provide a {@link SimCard.State} result. 113 public final IccCard.State simState; 115 SimArgs(IccCard.State state) { 116 simState = state; 120 IccCard.State state; local 131 state = IccCard.State.PERM_DISABLED 375 final IccCard.State state = simArgs.simState; local [all...] |
/frameworks/ex/common/java/com/android/common/ |
NetworkConnectivityListener.java | 34 * state information, independent of network type (mobile, Wi-Fi, etc.). 45 private State mState; 77 mState = State.NOT_CONNECTED; 79 mState = State.CONNECTED; 107 public enum State { 110 /** This state is returned if there is connectivity to any network **/ 113 * This state is returned if there is no connectivity to any network. This is set 128 mState = State.UNKNOWN; 133 * This method starts listening for network connectivity state changes. 164 * the network connectivity state changes [all...] |
/frameworks/support/v4/java/android/support/v4/app/ |
FragmentStatePagerAdapter.java | 31 * saving and restoring of fragment's state. 36 * state of that fragment. This allows the pager to hold on to much less 92 // from its saved state, where the fragment manager has already 171 Bundle state = null; local 173 state = new Bundle(); 176 state.putParcelableArray("states", fss); 181 if (state == null) { 182 state = new Bundle(); 185 mFragmentManager.putFragment(state, key, f); 188 return state; [all...] |