HomeSort by relevance Sort by last modified time
    Searched refs:newState (Results 76 - 100 of 285) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/
DebuggerScript.js 121 DebuggerScript.setPauseOnExceptionsState = function(newState)
123 DebuggerScript._pauseOnExceptionsState = newState;
125 if (DebuggerScript.PauseOnExceptionsState.PauseOnAllExceptions === newState)
130 if (DebuggerScript.PauseOnExceptionsState.PauseOnUncaughtExceptions === newState)
SerializedScriptValue.cpp 468 if (StateBase* newState = serializer.checkException(this))
469 return newState;
470 if (StateBase* newState = serializer.doSerialize(value, this))
471 return newState;
495 if (StateBase* newState = serializer.checkException(this))
496 return newState;
503 if (StateBase* newState = serializer.checkException(this))
504 return newState;
508 if (StateBase* newState = serializer.checkException(this))
509 return newState;
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBackupAgent.java 61 ParcelFileDescriptor newState) throws IOException {
82 writeBackupState(savedFileSize, savedCrc, newState);
92 ParcelFileDescriptor newState) throws IOException {
157 writeBackupState(tmpfile.length(), crc, newState);
  /frameworks/base/core/java/android/os/storage/
StorageManager.java 98 public void onStorageStateChanged(String path, String oldState, String newState) {
101 mListeners.get(i).sendStorageStateChanged(path, oldState, newState);
245 public String newState;
251 newState = newS;
274 mStorageEventListener.onStorageStateChanged(ev.path, ev.oldState, ev.newState);
291 void sendStorageStateChanged(String path, String oldState, String newState) {
292 StorageStateChangedStorageEvent e = new StorageStateChangedStorageEvent(path, oldState, newState);
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterState.java 359 private void notifyAdapterStateChange(int newState) {
363 Log.e(TAG,"notifyAdapterStateChange after cleanup:" + newState);
368 adapterProperties.setState(newState);
369 infoLog("Bluetooth adapter state changed: " + oldState + "-> " + newState);
370 adapterService.updateAdapterState(oldState, newState);
ProfileService.java 202 int profileId, int newState, int prevState) {
205 svc.onProfileConnectionStateChanged(device, profileId, newState, prevState);
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 77 ParcelFileDescriptor newState) throws IOException {
87 writeNewChecksums(stateChecksums, newState);
92 ParcelFileDescriptor newState) throws IOException {
121 private void writeNewChecksums(long[] checksums, ParcelFileDescriptor newState)
124 new FileOutputStream(newState.getFileDescriptor()));
  /frameworks/base/services/java/com/android/server/
BluetoothManagerService.java 142 public void onBluetoothStateChange(int prevState, int newState) throws RemoteException {
143 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_STATE_CHANGE,prevState,newState);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 523 Call.State newState = makeCallWait ? State.WAITING : State.INCOMING;
524 c.initIncomingCall(sipAudioCall, newState);
526 setState(newState);
663 protected void setState(State newState) {
664 if (mState != newState) {
666 + " --> " + newState + ": " + this + ": on phone "
669 if (newState == Call.State.ALERTING) {
670 mState = newState; // need in ALERTING to enable ringback
675 mState = newState;
773 Call.State newState = getCallStateFrom(call)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 522 * @param newState
525 public void setState(TransactionState newState) {
528 if (newState != TransactionState.TERMINATED
529 && newState != TransactionState.CONFIRMED)
530 newState = TransactionState.COMPLETED;
533 if (newState != TransactionState.TERMINATED)
534 newState = TransactionState.CONFIRMED;
537 currentState = newState;
539 newState = currentState;
542 sipStack.getStackLogger().logDebug("Transaction:setState " + newState
    [all...]
  /external/skia/src/gpu/
GrGpu.cpp 357 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
359 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
360 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
361 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
362 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
364 (void) newState; // silence compiler warning
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 186 * <code>newState</code>.
203 * @param newState An open, read/write ParcelFileDescriptor pointing to an
209 ParcelFileDescriptor newState) throws IOException;
216 * the final state to the <code>newState</code> file descriptor.
237 * @param newState An open, read/write ParcelFileDescriptor pointing to an
243 ParcelFileDescriptor newState)
558 ParcelFileDescriptor newState,
567 BackupAgent.this.onBackup(oldState, output, newState);
591 ParcelFileDescriptor newState,
599 BackupAgent.this.onRestore(input, appVersionCode, newState);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 100 ProgramState NewState = *state;
102 NewState.Env = EnvMgr.removeDeadBindings(NewState.Env, SymReaper, state);
105 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx,
107 NewState.setStore(newStore);
110 ProgramStateRef Result = getPersistentState(NewState);
124 ProgramStateRef newState = makeWithStore(Mgr.StoreMgr->Bind(getStore(),
128 return Mgr.getOwningEngine()->processRegionChange(newState, MR);
130 return newState;
176 ProgramStateRef newState = makeWithStore(newStore)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsBackupHelper.java 52 ParcelFileDescriptor newState) {
134 public void writeNewStateDescription(ParcelFileDescriptor newState) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/widget/
DrawerLayoutActivity.java 172 public void onDrawerStateChanged(int newState) {
173 mDrawerToggle.onDrawerStateChanged(newState);
  /external/webkit/LayoutTests/http/tests/resources/
network-simulator.php 12 function setState($newState, $file)
14 file_put_contents($file, $newState);
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
queue.js 156 function handleResponse(logType, newState) {
160 results.tests[testName].state = newState;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
dtx_dec.cpp     [all...]
  /frameworks/av/services/camera/libcameraservice/
Camera2Client.h 93 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
94 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
Paper.java 123 int newState) {
128 mState = newState;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DockEventReceiver.java 86 int newState = intent.getIntExtra(BluetoothProfile.EXTRA_STATE,
102 if (newState == BluetoothProfile.STATE_DISCONNECTED &&
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactModifier.java     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKViewInternal.h 55 - (void)_setUserInterfaceItemState:(NSString *)commandName enabled:(BOOL)isEnabled state:(int)newState;
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGatt/src/main/java/com/example/bluetooth/le/
BluetoothLeService.java 73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
75 if (newState == BluetoothProfile.STATE_CONNECTED) {
84 } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
  /external/harfbuzz/src/
harfbuzz-tibetan.c 179 TibetanForm newState = tibetan_form(uc[pos]);
180 switch(newState) {
186 state = newState;

Completed in 2858 milliseconds

1 2 34 5 6 7 8 91011>>