/external/chromium_org/chrome/common/extensions/api/ |
idle.json | 27 "name": "newState", 56 "name": "newState",
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
pixel.h | 50 _mesa_update_pixel( struct gl_context *ctx, GLuint newstate ); 64 _mesa_update_pixel(struct gl_context *ctx, GLuint newstate)
|
matrix.c | 63 * __struct gl_contextRec::NewState. 87 ctx->NewState |= ctx->CurrentStack->DirtyFlag; 105 * __struct gl_contextRec::NewState. 131 ctx->NewState |= ctx->CurrentStack->DirtyFlag; 238 * Marks __struct gl_contextRec::NewState with the stack dirty flag. 267 ctx->NewState |= stack->DirtyFlag; 278 * Marks __struct gl_contextRec::NewState with the dirty stack flag. 305 ctx->NewState |= stack->DirtyFlag; 316 * Marks __struct gl_contextRec::NewState with the stack dirty flag. 328 ctx->NewState |= ctx->CurrentStack->DirtyFlag [all...] |
/external/mesa3d/src/mesa/main/ |
pixel.h | 50 _mesa_update_pixel( struct gl_context *ctx, GLuint newstate ); 64 _mesa_update_pixel(struct gl_context *ctx, GLuint newstate)
|
matrix.c | 63 * __struct gl_contextRec::NewState. 87 ctx->NewState |= ctx->CurrentStack->DirtyFlag; 105 * __struct gl_contextRec::NewState. 131 ctx->NewState |= ctx->CurrentStack->DirtyFlag; 238 * Marks __struct gl_contextRec::NewState with the stack dirty flag. 267 ctx->NewState |= stack->DirtyFlag; 278 * Marks __struct gl_contextRec::NewState with the dirty stack flag. 305 ctx->NewState |= stack->DirtyFlag; 316 * Marks __struct gl_contextRec::NewState with the stack dirty flag. 328 ctx->NewState |= ctx->CurrentStack->DirtyFlag [all...] |
/frameworks/base/libs/storage/ |
IMountServiceListener.cpp | 42 String16 newState = data.readString16(); 43 onStorageStateChanged(path, oldState, newState);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
parse.py | 123 for i, newstate in arcs: 129 self.shift(type, value, newstate, context) 131 state = newstate 147 self.push(t, self.grammar.dfas[t], newstate, context) 175 def shift(self, type, value, newstate, context): 182 self.stack[-1] = (dfa, newstate, node) 184 def push(self, type, newdfa, newstate, context): 188 self.stack[-1] = (dfa, newstate, node)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
parse.py | 123 for i, newstate in arcs: 129 self.shift(type, value, newstate, context) 131 state = newstate 147 self.push(t, self.grammar.dfas[t], newstate, context) 175 def shift(self, type, value, newstate, context): 182 self.stack[-1] = (dfa, newstate, node) 184 def push(self, type, newdfa, newstate, context): 188 self.stack[-1] = (dfa, newstate, node)
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/riscos/ |
SDL_sysjoystick.c | 121 int newstate = regs.r[0]; local 123 if (newstate != oldstate) 125 if ((newstate & 0xFF) != (oldstate & 0xFF)) 132 if ((newstate & 0xFF00) != (oldstate & 0xFF00)) 139 if ((newstate & 0xFF0000) != (oldstate & 0xFF0000)) 153 joystick->hwdata->joystate = newstate;
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
RobolectricPackageManager.java | 135 public void setComponentEnabledSetting(ComponentName componentName, int newState, int flags) { 136 componentList.put(componentName, new ComponentState(newState, flags)); 194 public int newState; 197 public ComponentState(int newState, int flags) { 198 this.newState = newState;
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastReceiver.java | 215 int newState = ss.getState(); 216 if (newState != mServiceState) { 217 Log.d(TAG, "Service state changed! " + newState + " Full: " + ss); 218 mServiceState = newState; 219 if (newState == ServiceState.STATE_IN_SERVICE || 220 newState == ServiceState.STATE_EMERGENCY_ONLY) {
|
/packages/services/Telephony/src/com/android/phone/ |
CdmaPhoneCallState.java | 92 public void setCurrentCallState(PhoneCallState newState) { 94 mCurrentCallState = newState; 121 public void setThreeWayCallOrigState(boolean newState) { 122 mThreeWayCallOrigStateDialing = newState; 135 public void setAddCallMenuStateAfterCallWaiting(boolean newState) { 136 mAddCallMenuStateAfterCW = newState;
|
/external/chromium/third_party/libjingle/source/talk/base/ |
task.cc | 219 int newstate = STATE_ERROR; local 223 newstate = OnTimeout(); 228 newstate = STATE_START; 231 newstate = ProcessStart(); 234 newstate = ProcessResponse(); 238 newstate = STATE_BLOCKED; 243 return newstate;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
StorageNotification.java | 76 final String oldState, final String newState) { 80 onStorageStateChangedAsync(path, oldState, newState); 123 private void onStorageStateChangedAsync(String path, String oldState, String newState) { 125 "Media {%s} state changed from {%s} -> {%s}", path, oldState, newState)); 126 if (newState.equals(Environment.MEDIA_SHARED)) { 138 } else if (newState.equals(Environment.MEDIA_CHECKING)) { 148 } else if (newState.equals(Environment.MEDIA_MOUNTED)) { 155 } else if (newState.equals(Environment.MEDIA_UNMOUNTED)) { 194 } else if (newState.equals(Environment.MEDIA_NOFS)) { 208 } else if (newState.equals(Environment.MEDIA_UNMOUNTABLE)) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
LL1DFA.java | 52 DFAState s0 = newState(); 61 DFAState acceptAltState = newState(); 78 DFAState s0 = newState(); 91 DFAState s = newState(); 110 predDFATarget = newState(); // create if not there.
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/ |
RTCPeerConnectionSyncObserver.m | 173 iceGatheringChanged:(RTCICEGatheringState)newState { 177 if (newState == RTCICEGatheringGathering) { 181 NSAssert(expectedState == (int)newState, @"Empty expectation array"); 185 iceConnectionChanged:(RTCICEConnectionState)newState { 187 NSAssert(expectedState == (int)newState, @"Empty expectation array");
|
/frameworks/base/core/java/android/app/ |
IBackupAgent.aidl | 41 * @param newState Read-write file, empty when onBackup() is called, 46 * data has been written to the data and newState files. 53 in ParcelFileDescriptor newState, 67 * @param newState Read-write file, empty when onRestore() is called, 80 in ParcelFileDescriptor newState, int token, IBackupManager callbackBinder);
|
/external/chromium_org/base/android/java/src/org/chromium/base/ |
PowerMonitor.java | 74 public void onActivityStateChange(int newState) { 75 if (newState == ActivityStatus.RESUMED) { 79 } else if (newState == ActivityStatus.PAUSED) {
|
/frameworks/base/core/java/android/app/backup/ |
FileBackupHelper.java | 64 * stream, and fill in <code>newState</code> with the state as it exists 74 ParcelFileDescriptor newState) { 85 performBackup_checked(oldState, data, newState, fullPaths, files);
|
FileBackupHelperBase.java | 54 ParcelFileDescriptor newState, String[] files, String[] keys) { 71 FileDescriptor newStateFd = newState.getFileDescriptor(); 122 int data, FileDescriptor newState, String[] files, String[] keys);
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
RawContactModifierTests.java | [all...] |
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/ |
Display.java | 255 public void reportConnectionState(final int newState, 257 obtainMessage(MSG_REPORT_CONNECTION_STATE, newState, 0, 296 private void handleReportConnectionState(int newState, 299 if (newState != currentConnectionState 302 newState); 304 currentConnectionState = newState;
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
regex_internal.c | 1627 re_dfastate_t *newstate; local 1677 re_dfastate_t *newstate; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/ |
RTCPeerConnectionDelegate.h | 60 iceConnectionChanged:(RTCICEConnectionState)newState; 64 iceGatheringChanged:(RTCICEGatheringState)newState;
|
/external/icu4c/layout/ |
ContextualGlyphSubstProc2.cpp | 43 le_uint16 newState = SWAPW(entry->newStateIndex); 70 return newState;
|