HomeSort by relevance Sort by last modified time
    Searched defs:ed (Results 1 - 25 of 35) sorted by null

1 2

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppPreference.java 130 Editor ed = mNamePreference.edit(); local
131 ed.putString(remoteDevice.getAddress(), name);
132 ed.apply();
142 Editor ed = mChannelPreference.edit(); local
143 ed.putInt(key, channel);
144 ed.apply();
151 Editor ed = mChannelPreference.edit(); local
152 ed.remove(key);
153 ed.apply();
  /packages/apps/OneTimeInitializer/src/com/android/onetimeinitializer/
OneTimeInitializerService.java 97 SharedPreferences.Editor ed = mPreferences.edit(); local
98 ed.putInt(MAPPING_VERSION_PREF, version);
99 ed.commit();
  /packages/apps/Browser/src/com/android/browser/
AutofillHandler.java 225 Editor ed = PreferenceManager. local
227 ed.putInt(PreferenceKeys.PREF_AUTOFILL_ACTIVE_PROFILE_ID, activeProfileId);
228 ed.apply();
GoogleAccountLogin.java 99 Editor ed = BrowserSettings.getInstance().getPreferences().edit(); local
100 ed.putLong(PREF_AUTOLOGIN_TIME, System.currentTimeMillis());
101 ed.apply();
  /external/bison/src/
graphviz.c 109 char const *ed = enabled ? "" : "d"; local
117 source, ruleno, ed);
133 source, ruleno, ed);
  /packages/apps/MusicFX/src/com/android/musicfx/
Compatibility.java 210 Editor ed = pref.edit(); local
211 ed.putString("defaultpanelpackage", defPackage);
212 ed.putString("defaultpanelname", defName);
213 ed.commit();
  /external/quake/quake/src/WinQuake/
pr_exec.cpp 369 edict_t *ed; local
562 ed = PROG_TO_EDICT(a->edict);
564 NUM_FOR_EDICT(ed); // make sure it's in range
566 if (ed == (edict_t *)sv.edicts && sv.state == ss_active)
568 c->_int = (byte *)(ed->u.i + b->_int) - (byte *)sv.edicts;
576 ed = PROG_TO_EDICT(a->edict);
578 NUM_FOR_EDICT(ed); // make sure it's in range
580 a = (eval_t *)((void *)(ed->u.i + b->_int));
585 ed = PROG_TO_EDICT(a->edict);
587 NUM_FOR_EDICT(ed); // make sure it's in rang
    [all...]
pr_cmds.cpp 60 edict_t *ed; local
65 ed = PROG_TO_EDICT(pr_global_struct->self);
66 ED_Print (ed);
84 edict_t *ed; local
89 ed = PROG_TO_EDICT(pr_global_struct->self);
90 ED_Print (ed);
91 ED_Free (ed);
960 edict_t *ed; local
961 ed = ED_Alloc();
962 RETURN_EDICT(ed);
967 edict_t *ed; local
981 edict_t *ed; local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarms.java 491 final SharedPreferences.Editor ed = prefs.edit(); local
492 ed.putStringSet(PREF_SNOOZE_IDS, snoozedIds);
493 ed.putLong(getAlarmPrefSnoozeTimeKey(id), time);
494 ed.apply();
533 final SharedPreferences.Editor ed = prefs.edit(); local
535 ed.putStringSet(PREF_SNOOZE_IDS, snoozedIds);
536 ed.remove(getAlarmPrefSnoozeTimeKey(alarmStr));
537 ed.apply();
546 final SharedPreferences.Editor ed = prefs.edit(); local
549 ed.remove(getAlarmPrefSnoozeTimeKey(snoozeId))
    [all...]
  /external/icu4c/test/intltest/
tzbdtest.cpp 240 UDate ed = (epochHours * H); local
243 e + " (" + ed + ")"); local
247 ", expected " + epochHours + " (" + ed + ")"); local
249 cal.setTime(ed, status);
254 logln(UnicodeString("Ok: ") + epochHours + " (" + ed + ") => " +
260 dataerrln(UnicodeString("FAIL: ") + epochHours + " (" + ed + ") => " +
  /external/quake/quake/src/QW/server/
pr_exec.c 369 edict_t *ed; local
562 ed = PROG_TO_EDICT(a->edict);
564 NUM_FOR_EDICT(ed); // make sure it's in range
566 if (ed == (edict_t *)sv.edicts && sv.state == ss_active)
568 c->_int = (byte *)((int *)&ed->v + b->_int) - (byte *)sv.edicts;
576 ed = PROG_TO_EDICT(a->edict);
578 NUM_FOR_EDICT(ed); // make sure it's in range
580 a = (eval_t *)((int *)&ed->v + b->_int);
585 ed = PROG_TO_EDICT(a->edict);
587 NUM_FOR_EDICT(ed); // make sure it's in rang
    [all...]
pr_cmds.c 61 edict_t *ed; local
65 ed = PROG_TO_EDICT(pr_global_struct->self);
66 ED_Print (ed);
84 edict_t *ed; local
88 ed = PROG_TO_EDICT(pr_global_struct->self);
89 ED_Print (ed);
90 ED_Free (ed);
835 edict_t *ed; local
836 ed = ED_Alloc();
837 RETURN_EDICT(ed);
842 edict_t *ed; local
855 edict_t *ed; local
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu12.c 282 uint8_t ed[] = { local
287 0xed, 0x8a, 0xbb, // random ed .. ..
289 run_test(buff, sizeof buff, ed, sizeof ed);
298 if (i == 0x0d) continue; // special case ed
325 ed[0] = 0xed; // valid
326 ed[1] = 0x7f; // invalid because outside [0x80 .. 0x9f]
327 ed[2] = 0x80; // valid
328 run_test(buff, sizeof buff, ed, sizeof ed);
    [all...]
cu12_1.c 282 uint8_t ed[] = { local
287 0xed, 0x8a, 0xbb, // random ed .. ..
289 run_test(buff, sizeof buff, ed, sizeof ed);
298 if (i == 0x0d) continue; // special case ed
325 ed[0] = 0xed; // valid
326 ed[1] = 0x7f; // invalid because outside [0x80 .. 0x9f]
327 ed[2] = 0x80; // valid
328 run_test(buff, sizeof buff, ed, sizeof ed);
    [all...]
cu14.c 282 uint8_t ed[] = { local
287 0xed, 0x8a, 0xbb, // random ed .. ..
289 run_test(buff, sizeof buff, ed, sizeof ed);
298 if (i == 0x0d) continue; // special case ed
325 ed[0] = 0xed; // valid
326 ed[1] = 0x7f; // invalid because outside [0x80 .. 0x9f]
327 ed[2] = 0x80; // valid
328 run_test(buff, sizeof buff, ed, sizeof ed);
    [all...]
cu14_1.c 282 uint8_t ed[] = { local
287 0xed, 0x8a, 0xbb, // random ed .. ..
289 run_test(buff, sizeof buff, ed, sizeof ed);
298 if (i == 0x0d) continue; // special case ed
325 ed[0] = 0xed; // valid
326 ed[1] = 0x7f; // invalid because outside [0x80 .. 0x9f]
327 ed[2] = 0x80; // valid
328 run_test(buff, sizeof buff, ed, sizeof ed);
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider.java 417 Editor ed = p.edit(); local
418 ed.putBoolean("fix_picasa", false);
419 ed.apply();
    [all...]
  /external/aac/libAACenc/src/
intensity.cpp 667 FIXP_DBL tmp, d, ed = FL2FXCONST_DBL(0.0f); local
672 ed += fMultDiv2(d,d)>>(MDCT_SPEC_SF-1);
675 tmp = fDivNorm(sfbEnergyLeft[sfb+sfboffs],ed,&s1);
  /external/llvm/include/llvm/CodeGen/PBQP/Heuristics/
Briggs.h 195 EdgeData &ed = getHeuristicEdgeData(eItr); local
196 ed.isUpToDate = false;
267 EdgeData &ed = getHeuristicEdgeData(eItr);
268 (void)ed;
269 assert(ed.isUpToDate && "Edge data is not up to date.");
308 EdgeData &ed = getHeuristicEdgeData(eItr); local
310 if (ed.isUpToDate)
321 ed.worst = 0;
322 ed.reverseWorst = 0;
323 ed.unsafe.clear()
356 EdgeData &ed = getHeuristicEdgeData(eItr); local
383 EdgeData &ed = getHeuristicEdgeData(eItr); local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
correction.cpp 570 int ed = 0; local
584 ed = getCurrentEditDistance(editDistanceTable, correction->mInputSize, outputLength,
588 max(inputSize, outputLength) - ed);
596 ed = max(0, ed - quoteDiffCount);
597 adjustedProximityMatchedCount = min(max(0, ed - (outputLength - inputSize)),
600 if (ed == 1 && (inputSize == outputLength - 1 || inputSize == outputLength + 1)) {
609 } else if (ed == 0) {
717 if (ed == 0) {
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 629 COMPtr<IWebEditingDelegate> ed; local
630 if (FAILED(m_webView->editingDelegate(&ed)) || !ed.get())
634 ed->ignoreWordInSpellDocument(m_webView, BString(word));
639 COMPtr<IWebEditingDelegate> ed; local
640 if (FAILED(m_webView->editingDelegate(&ed)) || !ed.get())
643 ed->learnWord(BString(word));
651 COMPtr<IWebEditingDelegate> ed; local
652 if (FAILED(m_webView->editingDelegate(&ed)) || !ed.get()
672 COMPtr<IWebEditingDelegate> ed; local
715 COMPtr<IWebEditingDelegate> ed; local
732 COMPtr<IWebEditingDelegate> ed; local
741 COMPtr<IWebEditingDelegate> ed; local
750 COMPtr<IWebEditingDelegate> ed; local
765 COMPtr<IWebEditingDelegate> ed; local
    [all...]
  /external/aac/libSBRenc/src/
env_est.cpp 1116 SBR_ENV_TEMP_DATA *ed = &eData[ch]; local
1589 SBR_ENV_TEMP_DATA *ed = &eData[ch]; local
1653 SBR_ENV_TEMP_DATA *ed = &eData[ch]; local
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 1098 Editor ed = prefs.edit(); local
    [all...]
  /external/qemu/hw/
usb-ohci.c 496 uint32_t addr, struct ohci_ed *ed)
498 return get_dwords(ohci, addr, (uint32_t *)ed, sizeof(*ed) >> 2);
523 uint32_t addr, struct ohci_ed *ed)
525 return put_dwords(ohci, addr, (uint32_t *)ed, sizeof(*ed) >> 2);
602 static int ohci_service_iso_td(OHCIState *ohci, struct ohci_ed *ed,
620 addr = ed->head & OHCI_DPTR_MASK;
632 printf("--- ISO_TD ED head 0x%.8x tailp 0x%.8x\n"
639 ed->head & OHCI_DPTR_MASK, ed->tail & OHCI_DPTR_MASK
1037 struct ohci_ed ed; local
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/TlCm/
cmp.h 354 cmpAuthCmdEd_t ed; member in struct:__anon21318
386 cmpAuthRspEd_t ed; member in struct:__anon21323
421 cmpRootRegActCmdEd_t ed; member in struct:__anon21328
450 cmpRootRegActRspEd_t ed; member in struct:__anon21333
486 cmpRootUnregCmdEd_t ed; member in struct:__anon21338
515 cmpRootUnregRspEd_t ed; member in struct:__anon21343
569 cmpRootLockByRootRspEd_t ed; member in struct:__anon21351
623 cmpRootUnlockByRootRspEd_t ed; member in struct:__anon21359
659 cmpSpRegActCmdEd_t ed; member in struct:__anon21364
689 cmpSpRegActRspEd_t ed; member in struct:__anon21369
726 cmpSpRegisterCmdEd_t ed; member in struct:__anon21374
756 cmpSpRegisterRspEd_t ed; member in struct:__anon21379
793 cmpSpActivateCmdEd_t ed; member in struct:__anon21384
822 cmpSpActivateRspEd_t ed; member in struct:__anon21389
877 cmpSpUnregRspEd_t ed; member in struct:__anon21397
933 cmpSpLockByRootRspEd_t ed; member in struct:__anon21405
989 cmpSpUnlockByRootRspEd_t ed; member in struct:__anon21413
1044 cmpSpLockBySpRspEd_t ed; member in struct:__anon21421
1099 cmpSpUnlockBySpRspEd_t ed; member in struct:__anon21429
1136 cmpTltRegCmdEd_t ed; member in struct:__anon21434
1166 cmpTltRegRspEd_t ed; member in struct:__anon21439
1224 cmpTltActRspEd_t ed; member in struct:__anon21447
1261 cmpTltRegActCmdEd_t ed; member in struct:__anon21452
1291 cmpTltRegActRspEd_t ed; member in struct:__anon21457
1348 cmpTltUnregRspEd_t ed; member in struct:__anon21465
1405 cmpTltLockBySpRspEd_t ed; member in struct:__anon21473
1462 cmpTltUnlockBySpRspEd_t ed; member in struct:__anon21481
1570 cmpTltContPersonalizeCmdEd_t ed; member in struct:__anon21494
1601 cmpTltContPersonalizeRspEd_t ed; member in struct:__anon21499
    [all...]

Completed in 763 milliseconds

1 2