Home
last modified time | relevance | path

Searched refs:ed (Results 1 – 25 of 127) sorted by relevance

123456

/external/webkit/WebKit/win/WebCoreSupport/
DWebEditorClient.cpp625 COMPtr<IWebEditingDelegate> ed; in ignoreWordInSpellDocument() local
626 if (FAILED(m_webView->editingDelegate(&ed)) || !ed.get()) in ignoreWordInSpellDocument()
630 ed->ignoreWordInSpellDocument(m_webView, BString(word)); in ignoreWordInSpellDocument()
635 COMPtr<IWebEditingDelegate> ed; in learnWord() local
636 if (FAILED(m_webView->editingDelegate(&ed)) || !ed.get()) in learnWord()
639 ed->learnWord(BString(word)); in learnWord()
647 COMPtr<IWebEditingDelegate> ed; in checkSpellingOfString() local
648 if (FAILED(m_webView->editingDelegate(&ed)) || !ed.get()) in checkSpellingOfString()
652 ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength); in checkSpellingOfString()
668 COMPtr<IWebEditingDelegate> ed; in checkGrammarOfString() local
[all …]
/external/qemu/hw/
Dusb-ohci.c496 uint32_t addr, struct ohci_ed *ed) in ohci_read_ed() argument
498 return get_dwords(ohci, addr, (uint32_t *)ed, sizeof(*ed) >> 2); in ohci_read_ed()
523 uint32_t addr, struct ohci_ed *ed) in ohci_put_ed() argument
525 return put_dwords(ohci, addr, (uint32_t *)ed, sizeof(*ed) >> 2); in ohci_put_ed()
602 static int ohci_service_iso_td(OHCIState *ohci, struct ohci_ed *ed, in ohci_service_iso_td() argument
620 addr = ed->head & OHCI_DPTR_MASK; in ohci_service_iso_td()
639 ed->head & OHCI_DPTR_MASK, ed->tail & OHCI_DPTR_MASK, in ohci_service_iso_td()
657 ed->head &= ~OHCI_DPTR_MASK; in ohci_service_iso_td()
658 ed->head |= (iso_td.next & OHCI_DPTR_MASK); in ohci_service_iso_td()
668 dir = OHCI_BM(ed->flags, ED_D); in ohci_service_iso_td()
[all …]
/external/quake/quake/src/WinQuake/
Dpr_exec.cpp369 edict_t *ed; in PR_ExecuteProgram() local
562 ed = PROG_TO_EDICT(a->edict); in PR_ExecuteProgram()
564 NUM_FOR_EDICT(ed); // make sure it's in range in PR_ExecuteProgram()
566 if (ed == (edict_t *)sv.edicts && sv.state == ss_active) in PR_ExecuteProgram()
568 c->_int = (byte *)(ed->u.i + b->_int) - (byte *)sv.edicts; in PR_ExecuteProgram()
576 ed = PROG_TO_EDICT(a->edict); in PR_ExecuteProgram()
578 NUM_FOR_EDICT(ed); // make sure it's in range in PR_ExecuteProgram()
580 a = (eval_t *)(ed->u.i + b->_int); in PR_ExecuteProgram()
585 ed = PROG_TO_EDICT(a->edict); in PR_ExecuteProgram()
587 NUM_FOR_EDICT(ed); // make sure it's in range in PR_ExecuteProgram()
[all …]
Dpr_edict.cpp122 void ED_Free (edict_t *ed) in ED_Free() argument
124 SV_UnlinkEdict (ed); // unlink from world bsp in ED_Free()
126 ed->free = true; in ED_Free()
127 ed->u.v.model = 0; in ED_Free()
128 ed->u.v.takedamage = 0; in ED_Free()
129 ed->u.v.modelindex = 0; in ED_Free()
130 ed->u.v.colormap = 0; in ED_Free()
131 ed->u.v.skin = 0; in ED_Free()
132 ed->u.v.frame = 0; in ED_Free()
133 VectorCopy (vec3_origin, ed->u.v.origin); in ED_Free()
[all …]
Dpr_cmds.cpp60 edict_t *ed; in PF_error() local
65 ed = PROG_TO_EDICT(pr_global_struct->self); in PF_error()
66 ED_Print (ed); in PF_error()
84 edict_t *ed; in PF_objerror() local
89 ed = PROG_TO_EDICT(pr_global_struct->self); in PF_objerror()
90 ED_Print (ed); in PF_objerror()
91 ED_Free (ed); in PF_objerror()
960 edict_t *ed; in PF_Spawn() local
961 ed = ED_Alloc(); in PF_Spawn()
962 RETURN_EDICT(ed); in PF_Spawn()
[all …]
Dprogs.h79 void ED_Free (edict_t *ed);
84 void ED_Print (edict_t *ed);
85 void ED_Write (FILE *f, edict_t *ed);
138 eval_t *GetEdictFieldValue(edict_t *ed, const char *field);
/external/quake/quake/src/QW/server/
Dpr_exec.c369 edict_t *ed; in PR_ExecuteProgram() local
562 ed = PROG_TO_EDICT(a->edict); in PR_ExecuteProgram()
564 NUM_FOR_EDICT(ed); // make sure it's in range in PR_ExecuteProgram()
566 if (ed == (edict_t *)sv.edicts && sv.state == ss_active) in PR_ExecuteProgram()
568 c->_int = (byte *)((int *)&ed->v + b->_int) - (byte *)sv.edicts; in PR_ExecuteProgram()
576 ed = PROG_TO_EDICT(a->edict); in PR_ExecuteProgram()
578 NUM_FOR_EDICT(ed); // make sure it's in range in PR_ExecuteProgram()
580 a = (eval_t *)((int *)&ed->v + b->_int); in PR_ExecuteProgram()
585 ed = PROG_TO_EDICT(a->edict); in PR_ExecuteProgram()
587 NUM_FOR_EDICT(ed); // make sure it's in range in PR_ExecuteProgram()
[all …]
Dpr_edict.c118 void ED_Free (edict_t *ed) in ED_Free() argument
120 SV_UnlinkEdict (ed); // unlink from world bsp in ED_Free()
122 ed->free = true; in ED_Free()
123 ed->v.model = 0; in ED_Free()
124 ed->v.takedamage = 0; in ED_Free()
125 ed->v.modelindex = 0; in ED_Free()
126 ed->v.colormap = 0; in ED_Free()
127 ed->v.skin = 0; in ED_Free()
128 ed->v.frame = 0; in ED_Free()
129 VectorCopy (vec3_origin, ed->v.origin); in ED_Free()
[all …]
Dpr_cmds.c61 edict_t *ed; in PF_error() local
65 ed = PROG_TO_EDICT(pr_global_struct->self); in PF_error()
66 ED_Print (ed); in PF_error()
84 edict_t *ed; in PF_objerror() local
88 ed = PROG_TO_EDICT(pr_global_struct->self); in PF_objerror()
89 ED_Print (ed); in PF_objerror()
90 ED_Free (ed); in PF_objerror()
835 edict_t *ed; in PF_Spawn() local
836 ed = ED_Alloc(); in PF_Spawn()
837 RETURN_EDICT(ed); in PF_Spawn()
[all …]
Dprogs.h74 void ED_Free (edict_t *ed);
79 void ED_Print (edict_t *ed);
80 void ED_Write (FILE *f, edict_t *ed);
135 eval_t *GetEdictFieldValue(edict_t *ed, char *field);
/external/libvpx/vpx_scale/dm642/
Dgen_scalers_c64.c58 unsigned int ba, cb, dc, ed; in horizontal_line_4_5_scale_c64() local
93 ed = _unpkhu4(_shrmb(src_next, src_current)); in horizontal_line_4_5_scale_c64()
100 des [4] = _dotprsu2(ed, const_51_205); in horizontal_line_4_5_scale_c64()
145 unsigned int ba, cb, dc, ed; in vertical_band_4_5_scale_c64() local
170 ed = _pack2(e, d); in vertical_band_4_5_scale_c64()
182 des [dest_pitch*4] = _dotprsu2(ed, const_51_205); in vertical_band_4_5_scale_c64()
/external/icu4c/test/intltest/
Dtzbdtest.cpp240 UDate ed = (epochHours * H); in verifyMapping() local
243 e + " (" + ed + ")"); in verifyMapping()
247 ", expected " + epochHours + " (" + ed + ")"); in verifyMapping()
249 cal.setTime(ed, status); in verifyMapping()
254 logln(UnicodeString("Ok: ") + epochHours + " (" + ed + ") => " + in verifyMapping()
260 dataerrln(UnicodeString("FAIL: ") + epochHours + " (" + ed + ") => " + in verifyMapping()
/external/chromium/third_party/icu/source/test/intltest/
Dtzbdtest.cpp240 UDate ed = (epochHours * H); in verifyMapping() local
243 e + " (" + ed + ")"); in verifyMapping()
247 ", expected " + epochHours + " (" + ed + ")"); in verifyMapping()
249 cal.setTime(ed, status); in verifyMapping()
254 logln(UnicodeString("Ok: ") + epochHours + " (" + ed + ") => " + in verifyMapping()
260 dataerrln(UnicodeString("FAIL: ") + epochHours + " (" + ed + ") => " + in verifyMapping()
/external/dropbear/libtomcrypt/notes/
Dtech0006.txt80 …nding the X9.63 shared secret and hashing it. The hash is then simply XOR'ed against the message …
86 skey OCTET STRING -- The encrypted text (which the hash was XOR'ed against)
Domac_tv.txt1 OMAC Tests. In these tests messages of N bytes long (00,01,02,...,NN-1) are OMAC'ed. The initial …
Dpmac_tv.txt1 PMAC Tests. In these tests messages of N bytes long (00,01,02,...,NN-1) are OMAC'ed. The initial …
/external/icu4c/data/region/
Drm.txt25 019{"America dal Nord, America Centrala ed America dal Sid"}
64 BA{"Bosnia ed Erzegovina"}
/external/openssl/crypto/pkcs7/t/
Dc.pem21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
Ds.pem30 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
Dserver.pem21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
/external/openssl/crypto/pkcs7/
Dinfo.pem21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
/external/e2fsprogs/intl/
Dlibgnuintl.h.in66 4. in the dlopen()ed shared libraries, in the order in which they were
67 dlopen()ed.
72 * libintl.so is a dependency of a dlopen()ed shared library but not
/external/expat/conftools/
Dac_c_bigendian_cross.m47 dnl the binary it will be grep'ed for some symbols that will look
/external/icu4c/data/curr/
Drm.txt104 "dinar da la Bosnia ed Erzegovina",
112 "nov dinar da la Bosnia ed Erzegovina",
/external/tcpdump/tests/
Dprint-XX.new169 0x07d0: 6564 2069 6e20 3c54 543e 2f76 6172 2f6c ed.in.<TT>/var/l
200 0x09c0: 6564 2066 6f72 0a69 6e20 7468 6520 3c54 ed.for.in.the.<T
320 0x1140: 6564 2062 7920 7468 6520 3c41 0a48 5245 ed.by.the.<A.HRE
392 0x15c0: 6564 3a20 2444 6174 653a 2032 3030 342f ed:.$Date:.2004/

123456