/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
watch.js | 34 var state = 0; 36 switch (state++) { 56 switch (state++) {
|
/external/webkit/LayoutTests/http/tests/appcache/ |
fail-on-update-2.html | 8 function setManifestDeleted(state) 11 req.open("GET", "resources/fail-on-update.php?command=" + (state ? "delete" : "reset"), false); 58 // If the manifest script happened to be in a wrong state, reset it.
|
fail-on-update.html | 8 function setManifestDeleted(state) 11 req.open("GET", "resources/fail-on-update.php?command=" + (state ? "delete" : "reset"), false); 41 // If the manifest script happened to be in a wrong state, reset it.
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
fail-on-update-2.php | 20 $state = getState($tmpFile); variable 30 } else if ($state == "Uninitialized") { 36 } else if ($state == "Deleted") {
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptsyntaxcheckresult.h | 29 enum State { 39 State state() const;
|
/external/webkit/Source/WebCore/platform/android/ |
PlatformTouchPointAndroid.cpp | 33 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state) 35 , m_state(state)
|
/external/webkit/Source/WebCore/platform/brew/ |
PlatformTouchPointBrew.cpp | 33 PlatformTouchPoint::PlatformTouchPoint(int id, const IntPoint& windowPos, State state) 35 , m_state(state)
|
/external/webkit/Source/WebCore/platform/chromium/ |
ScrollbarThemeChromiumLinux.cpp | 55 PlatformBridge::ThemePaintState state = scrollbar->hoveredPart() == partType ? PlatformBridge::StateHover : PlatformBridge::StateNormal; local 65 state, 73 PlatformBridge::ThemePaintState state = PlatformBridge::StateNormal; local 95 state = PlatformBridge::StateDisabled; 98 state = PlatformBridge::StatePressed; 100 state = PlatformBridge::StateHover; 102 PlatformBridge::paintThemePart(gc, paintPart, state, rect, 0); 107 PlatformBridge::ThemePaintState state; local 110 state = PlatformBridge::StatePressed; 112 state = PlatformBridge::StateHover [all...] |
/external/webkit/Source/WebCore/platform/efl/ |
PlatformTouchPointEfl.cpp | 35 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state) 37 , m_state(state)
|
/frameworks/base/cmds/keystore/ |
keystore.h | 20 // note state values overlap with ResponseCode for the purposes of the state() API 21 enum State {
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothProfile.java | 32 * Extra for the connection state intents of the individual profiles. 34 * This extra represents the current connection state of the profile of the 37 public static final String EXTRA_STATE = "android.bluetooth.profile.extra.STATE"; 40 * Extra for the connection state intents of the individual profiles. 42 * This extra represents the previous connection state of the profile of the 48 /** The profile is in disconnected state */ 50 /** The profile is in connecting state */ 52 /** The profile is in connected state */ 54 /** The profile is in disconnecting state */ 120 * <p> Return the set of devices which are in state {@link #STATE_CONNECTED [all...] |
/frameworks/base/core/jni/ |
android_media_AudioSystem.cpp | 66 bool state = false; local 67 AudioSystem::isMicrophoneMuted(&state); 68 return state; 74 bool state = false; local 75 AudioSystem::isStreamActive(stream, &state, inPastMs); 76 return state; 132 android_media_AudioSystem_setDeviceConnectionState(JNIEnv *env, jobject thiz, jint device, jint state, jstring device_address) 136 static_cast <audio_policy_dev_state_t>(state), 146 int state = static_cast <int>(AudioSystem::getDeviceConnectionState(static_cast <audio_devices_t>(device), local 149 return state; [all...] |
/frameworks/base/libs/rs/driver/ |
rsdProgramStore.cpp | 49 switch (ps->mHal.state.depthFunc) { 80 if ((ps->mHal.state.blendSrc == RS_BLEND_SRC_ONE) && 81 (ps->mHal.state.blendDst == RS_BLEND_DST_ZERO)) { 85 switch (ps->mHal.state.blendSrc) { 118 switch (ps->mHal.state.blendDst) { 159 RSD_CALL_GL(glColorMask, ps->mHal.state.colorRWriteEnable, 160 ps->mHal.state.colorGWriteEnable, 161 ps->mHal.state.colorBWriteEnable, 162 ps->mHal.state.colorAWriteEnable); 172 RSD_CALL_GL(glDepthMask, ps->mHal.state.depthWriteEnable) [all...] |
/frameworks/base/media/jni/ |
android_media_AmrInputStream.cpp | 63 GsmAmrEncoderState *state = (GsmAmrEncoderState *) gae; local 64 int32_t nResult = AMREncodeInit(&state->mEncState, &state->mSidState, false); 79 GsmAmrEncoderState *state = (GsmAmrEncoderState *) gae; local 80 int32_t length = AMREncode(state->mEncState, state->mSidState, 84 (Frame_Type_3GPP*) &state->mLastModeUsed, 109 GsmAmrEncoderState *state = (GsmAmrEncoderState *)gae; local 110 AMREncodeExit(&state->mEncState, &state->mSidState) [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmCallTracker.java | 85 Phone.State state = Phone.State.IDLE; field in class:GsmCallTracker 172 // note that this triggers call state changed notif 176 throw new CallStateException("cannot dial in current state"); 182 if (foregroundCall.getState() == GsmCall.State.ACTIVE) { 189 // Fake local state so that 196 if (foregroundCall.getState() != GsmCall.State.IDLE) { 198 throw new CallStateException("cannot dial in current state"); 247 if (ringingCall.getState() == GsmCall.State.INCOMING) [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WpsStateMachine.java | 20 import com.android.internal.util.State; 45 * After a successful WPS setup, the state machine 61 private State mDefaultState = new DefaultState(); 62 private State mInactiveState = new InactiveState(); 63 private State mActiveState = new ActiveState(); 76 //start the state machine 85 class DefaultState extends State { 131 class ActiveState extends State { 144 SupplicantState supState = (SupplicantState) stateChangeResult.state; 169 if (DBG) Log.d(TAG, "Ignoring supplicant state " + supState.name()) [all...] |
/frameworks/media/libvideoeditor/osal/inc/ |
M4OSA_Thread_priv.h | 43 M4OSA_ThreadState state; /* thread automaton state */ member in struct:M4OSA_ThreadContext 44 M4OSA_Context stateMutex; /* mutex for thread state management */
|
/packages/apps/Stk/src/com/android/stk/ |
StkAppInstaller.java | 51 int state = install ? PackageManager.COMPONENT_ENABLED_STATE_ENABLED local 55 pm.setComponentEnabledSetting(cName, state, 58 CatLog.d("StkAppInstaller", "Could not change STK app state");
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
ppp-comp.h | 72 void (*comp_free) (void *state); 75 int (*comp_init) (void *state, unsigned char *options, 79 void (*comp_reset) (void *state); 82 int (*compress) (void *state, unsigned char *rptr, 86 void (*comp_stat) (void *state, struct compstat *stats); 92 void (*decomp_free) (void *state); 95 int (*decomp_init) (void *state, unsigned char *options, 100 void (*decomp_reset) (void *state); 103 int (*decompress) (void *state, unsigned char *ibuf, int isize, 106 /* Update state for an incompressible packet received * [all...] |
/system/core/nexus/ |
SupplicantStateChangeEvent.cpp | 35 mState = atoi(p + strlen("state=") + 1); 38 SupplicantStateChangeEvent::SupplicantStateChangeEvent(int state) : 40 mState = state;
|
/external/libnfc-nxp/src/ |
phHciNfc_Sequence.h | 23 * \brief State Machine Management for the HCI and the Function Sequence * 24 * for a particular State. * 81 * The phHciNfc_FSM_Update function Validates the HCI State to 86 * \param[in] state state is the state to which the 87 * current HCI Layer state is validated. 88 * \param[in] validate_type validate the state by the type of the 92 * \retval NFCSTATUS_INVALID_STATE The supplied state parameter is invalid. 100 phHciNfc_eState_t state, [all...] |
/external/webkit/Tools/DumpRenderTree/win/ |
AccessibilityUIElementWin.cpp | 321 VARIANT state; local 322 element->get_accState(self(), &state); local 324 ASSERT(V_VT(&state) == VT_I4); 326 DWORD result = state.lVal; 327 VariantClear(&state); 340 DWORD state = accessibilityState(m_element); local 341 return (state & STATE_SYSTEM_SELECTED) == STATE_SYSTEM_SELECTED; 406 DWORD state = accessibilityState(m_element); local 407 return (state & STATE_SYSTEM_UNAVAILABLE) != STATE_SYSTEM_UNAVAILABLE; 622 DWORD state = accessibilityState(m_element) local 629 DWORD state = accessibilityState(m_element); local 635 DWORD state = accessibilityState(m_element); local 641 DWORD state = accessibilityState(m_element); local 647 DWORD state = accessibilityState(m_element); local 659 DWORD state = accessibilityState(m_element); local [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFDebugLine.cpp | 94 DWARFDebugLine::State::~State() {} 96 void DWARFDebugLine::State::appendRowToMatrix(uint32_t offset) { 123 State state; local 124 if (!parseStatementTable(debug_line_data, &offset, state)) 126 pos.first->second = state; 188 uint32_t *offset_ptr, State &state) { 191 Prologue *prologue = &state.Prologue [all...] |
/system/media/wilhelm/src/itf/ |
IObject.c | 35 SLuint8 state; local 37 // check object state 39 state = thiz->mState; 40 switch (state) { 49 state = SL_RESULT_SUCCESS == result ? SL_OBJECT_STATE_REALIZED : 53 state = SL_OBJECT_STATE_REALIZED; 59 state = SL_OBJECT_STATE_UNREALIZED; 69 // mutex is locked, update state 70 thiz->mState = state; 79 (*callback)(&thiz->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state, NULL) 89 SLuint8 state; local 178 SLuint8 state; local 233 SLuint8 state; local 293 SLuint8 state = thiz->mState; local 589 SLuint32 state = *--interfaceStateP; local [all...] |
/external/dropbear/libtomcrypt/src/hashes/ |
rmd256.c | 91 /* load state */ 92 aa = md->rmd256.state[0]; 93 bb = md->rmd256.state[1]; 94 cc = md->rmd256.state[2]; 95 dd = md->rmd256.state[3]; 96 aaa = md->rmd256.state[4]; 97 bbb = md->rmd256.state[5]; 98 ccc = md->rmd256.state[6]; 99 ddd = md->rmd256.state[7]; 254 md->rmd256.state[0] += aa [all...] |