| /external/icu/icu4c/source/data/zone/ |
| D | ee.txt | 22 ls{"Xexeme gaƒoƒoɖoanyi me"} 28 ld{"Ireland nutome gaƒoƒo me"} 34 ld{"British dzomeŋɔli gaƒoƒo me"} 43 ls{"Afghanistan gaƒoƒo me"} 46 ls{"Central Africa gaƒoƒo me"} 50 ls{"East Africa gaƒoƒo me"} 54 ls{"South Africa nutome gaƒoƒo me"} 58 ld{"West Africa dzomeŋɔli gaƒoƒo me"} 59 lg{"West Africa gaƒoƒo me"} 60 ls{"West Africa nutome gaƒoƒo me"} [all …]
|
| /external/cronet/third_party/icu/source/data/zone/ |
| D | ee.txt | 952 ls{"Xexeme gaƒoƒoɖoanyi me"} 998 ld{"Ireland nutome gaƒoƒo me"} 1035 ld{"British dzomeŋɔli gaƒoƒo me"} 1290 ls{"Afghanistan gaƒoƒo me"} 1293 ls{"Central Africa gaƒoƒo me"} 1297 ls{"East Africa gaƒoƒo me"} 1301 ls{"South Africa nutome gaƒoƒo me"} 1305 ld{"West Africa dzomeŋɔli gaƒoƒo me"} 1306 lg{"West Africa gaƒoƒo me"} 1307 ls{"West Africa nutome gaƒoƒo me"} [all …]
|
| /external/fastrpc/src/ |
| D | BufBound.c | 72 #define PCSAT(me) ((me)->pcBuf + INT_MAX) argument 75 // Advance me->pcWrite, saturating. 84 BufBound_ValidateWrite(BufBound *me, int *pnLen) in BufBound_ValidateWrite() argument 87 char *pcWrite = me->pcWrite; in BufBound_ValidateWrite() 88 int nMaxCopy = me->pcEnd - pcWrite; // could be negative! in BufBound_ValidateWrite() 92 int nMaxAdvance = PCSAT(me) - pcWrite; // max amount to advance in BufBound_ValidateWrite() 106 me->pcWrite = pcWrite + nLen; in BufBound_ValidateWrite() 110 void BufBound_Write(BufBound *me, const char *pc, int nLen) in BufBound_Write() argument 113 char *pcDest = BufBound_ValidateWrite(me, &nLen); in BufBound_Write() 121 void BufBound_Putnc(BufBound *me, char c, int nLen) in BufBound_Putnc() argument [all …]
|
| D | mod_table.c | 119 static int static_mod_table_ctor(struct static_mod_table* me) { in static_mod_table_ctor() argument 120 if(me->bInit == 0) { in static_mod_table_ctor() 121 RW_MUTEX_CTOR(me->mut); in static_mod_table_ctor() 122 me->staticMods = 0; in static_mod_table_ctor() 123 me->staticModOverrides = 0; in static_mod_table_ctor() 124 me->bInit = 1; in static_mod_table_ctor() 129 static void static_mod_table_dtor_imp(struct static_mod_table* me) { in static_mod_table_dtor_imp() argument 132 if(me->bInit != 0) { in static_mod_table_dtor_imp() 133 if( me->staticMods || me->constMods || me->staticModOverrides) { in static_mod_table_dtor_imp() 134 RW_MUTEX_LOCK_WRITE(me->mut); in static_mod_table_dtor_imp() [all …]
|
| D | std_strlprintf.c | 79 typedef int (*pfnFormatFloat)(FieldFormat* me, double dNumber, char* pcBuffer); 109 FormatNumber(FieldFormat *me, char pcBuf[FORMATNUMBER_SIZE], uint64 uNum64) in FormatNumber() argument 111 char cType = me->cType; in FormatNumber() 119 me->nPrecision = 8; in FormatNumber() 122 if (me->nPrecision >= 0) { in FormatNumber() 123 me->nNumWidth = me->nPrecision; in FormatNumber() 126 me->flags &= ~FF_ZERO; in FormatNumber() 128 me->nNumWidth = 1; in FormatNumber() 137 } else if (me->flags & FF_PLUS) { in FormatNumber() 139 } else if (me->flags & FF_BLANK) { in FormatNumber() [all …]
|
| /external/rust/crates/h2/src/proto/streams/ |
| D | streams.rs | 122 let mut me = self.inner.lock().unwrap(); in set_target_connection_window_size() localVariable 123 let me = &mut *me; in set_target_connection_window_size() localVariable 125 me.actions in set_target_connection_window_size() 127 .set_target_connection_window(size, &mut me.actions.task) in set_target_connection_window_size() 131 let mut me = self.inner.lock().unwrap(); in next_incoming() localVariable 132 let me = &mut *me; in next_incoming() localVariable 133 me.actions.recv.next_incoming(&mut me.store).map(|key| { in next_incoming() 134 let stream = &mut me.store.resolve(key); in next_incoming() 142 me.refs += 1; in next_incoming() 146 me.counts.dec_num_remote_reset_streams(); in next_incoming() [all …]
|
| /external/fastrpc/inc/ |
| D | AEEQList.h | 56 static __inline void QNode_InsPrev(QNode *me, QNode *pn) in QNode_InsPrev() argument 58 QNode *pPrev = me->pPrev; in QNode_InsPrev() 60 pn->pNext = me; in QNode_InsPrev() 63 me->pPrev = pn; in QNode_InsPrev() 67 static __inline void QNode_InsNext(QNode *me, QNode *pn) in QNode_InsNext() argument 69 QNode *pNext = me->pNext; in QNode_InsNext() 71 pn->pPrev = me; in QNode_InsNext() 74 me->pNext = pn; in QNode_InsNext() 79 static __inline void QNode_Dequeue(QNode *me) in QNode_Dequeue() argument 81 QNode *pNext = me->pNext; in QNode_Dequeue() [all …]
|
| D | pls.h | 64 static __inline int pls_thread_init(struct pls_table* me, uintptr_t tid) { in pls_thread_init() argument 65 if(tid == me->primThread) { in pls_thread_init() 68 if(0 == atomic_CompareOrAdd(&me->uRefs, 0, 1)) { in pls_thread_init() 77 static __inline void pls_ctor(struct pls_table* me, uintptr_t primThread) { in pls_ctor() argument 78 me->uRefs = 1; in pls_ctor() 79 me->primThread = primThread; in pls_ctor() 82 static __inline struct pls_table* pls_thread_deinit(struct pls_table* me) { in pls_thread_deinit() argument 83 if(me && 0 != me->uRefs && 0 == atomic_Add(&me->uRefs, -1)) { in pls_thread_deinit() 85 lst = me->lst; in pls_thread_deinit() 86 me->lst = 0; in pls_thread_deinit() [all …]
|
| D | AEEBufBound.h | 61 extern void BufBound_Init(BufBound *me, char *pBuf, int nLen); 62 extern void BufBound_Write(BufBound *me, const char *pc, int nLen); 63 extern void BufBound_Putc(BufBound *me, char c); 64 extern void BufBound_Putnc(BufBound *me, char c, int nCount); 65 extern void BufBound_ForceNullTerm(BufBound *me); 66 extern void BufBound_Puts(BufBound *me, const char* cpsz); 67 extern void BufBound_Advance(BufBound *me, int nLen); 68 extern void BufBound_WriteLE(BufBound* me, 71 extern void BufBound_WriteBE(BufBound* me, 74 extern int BufBound_BufSize(BufBound *me); [all …]
|
| /external/libcxx/test/std/input.output/filesystems/fs.enum/ |
| D | enum.perms.pass.cpp | 25 constexpr fs::perms ME(int val) { return static_cast<fs::perms>(val); } in ME() function 41 E::none == ME(0) && in main() 43 E::owner_read == ME(0400) && in main() 44 E::owner_write == ME(0200) && in main() 45 E::owner_exec == ME(0100) && in main() 46 E::owner_all == ME(0700) && in main() 48 E::group_read == ME(040) && in main() 49 E::group_write == ME(020) && in main() 50 E::group_exec == ME(010) && in main() 51 E::group_all == ME(070) && in main() [all …]
|
| /external/cronet/third_party/libc++/src/test/std/input.output/filesystems/fs.enum/ |
| D | enum.perms.pass.cpp | 23 constexpr fs::perms ME(int val) { return static_cast<fs::perms>(val); } in ME() function 39 E::none == ME(0) && in main() 41 E::owner_read == ME(0400) && in main() 42 E::owner_write == ME(0200) && in main() 43 E::owner_exec == ME(0100) && in main() 44 E::owner_all == ME(0700) && in main() 46 E::group_read == ME(040) && in main() 47 E::group_write == ME(020) && in main() 48 E::group_exec == ME(010) && in main() 49 E::group_all == ME(070) && in main() [all …]
|
| /external/cldr/common/annotationsDerived/ |
| D | sq.xml | 36 …<annotation cp="">dorë | dorë e ngritur me gishtat të hapur | dorë e ngritur me gishtat të hap… 37 …<annotation cp="" type="tts">dorë e ngritur me gishtat të hapur: nuancë lëkure e çelët</annota… 38 …<annotation cp="">dorë | dorë e ngritur me gishtat të hapur | dorë e ngritur me gishtat të hap… 39 …<annotation cp="" type="tts">dorë e ngritur me gishtat të hapur: nuancë lëkure gjysmë e çelët<… 40 …<annotation cp="">dorë | dorë e ngritur me gishtat të hapur | dorë e ngritur me gishtat të hap… 41 …<annotation cp="" type="tts">dorë e ngritur me gishtat të hapur: nuancë lëkure zeshkane</annot… 42 …<annotation cp="">dorë | dorë e ngritur me gishtat të hapur | dorë e ngritur me gishtat të hap… 43 …<annotation cp="" type="tts">dorë e ngritur me gishtat të hapur: nuancë lëkure gjysmë e errët<… 44 …<annotation cp="">dorë | dorë e ngritur me gishtat të hapur | dorë e ngritur me gishtat të hap… 45 …<annotation cp="" type="tts">dorë e ngritur me gishtat të hapur: nuancë lëkure e errët</annota… [all …]
|
| /external/cldr/common/annotations/ |
| D | sq.xml | 66 <annotation cp="‽">pikëpyetje me pikëçuditje</annotation> 67 <annotation cp="‽" type="tts">pikëpyetje me pikëçuditje</annotation> 84 …<annotation cp="“">citim | citim me thonjëza të harkuara | thonjëz | thonjëz dyshe | thonjëz e maj… 86 …<annotation cp="”">citim | citim me thonjëza të harkuara | thonjëz | thonjëz dyshe | thonjëz e dja… 182 <annotation cp="←">majtas | shigjetë | shigjetë me drejtim majtas</annotation> 183 <annotation cp="←" type="tts">shigjetë me drejtim majtas</annotation> 186 <annotation cp="→">djathtas | shigjetë | shigjetë me drejtim djathtas</annotation> 187 <annotation cp="→" type="tts">shigjetë me drejtim djathtas</annotation> 190 <annotation cp="↑">lart | shigjetë | shigjetë me drejtim lart</annotation> 191 <annotation cp="↑" type="tts">shigjetë me drejtim lart</annotation> [all …]
|
| /external/autotest/client/site_tests/firmware_LockedME/ |
| D | firmware_LockedME.py | 50 """See if we can detect an ME. 54 way to identify systems that have ME hardware. 56 logging.info('See if we have an ME...') 61 """If we can modify the ME section, restore it and raise an error.""" 80 raise error.TestFail('%s is writable, ME is unlocked' % sectname) 85 # See if coreboot told us that the ME is still in Manufacturing Mode. 93 if re.search('ME: Manufacturing Mode', line): 96 raise error.TestFail("The ME is still in Manufacturing Mode") 104 """Fail unless the ME is locked. 106 @param expect_me_present: False means the system has no ME. [all …]
|
| /external/MPAndroidChart/MPChartLib/src/main/java/com/github/mikephil/charting/listener/ |
| D | OnChartGestureListener.java | 15 * @param me 18 void onChartGestureStart(MotionEvent me, ChartTouchListener.ChartGesture lastPerformedGesture); in onChartGestureStart() argument 23 * @param me 26 void onChartGestureEnd(MotionEvent me, ChartTouchListener.ChartGesture lastPerformedGesture); in onChartGestureEnd() argument 31 * @param me 33 void onChartLongPressed(MotionEvent me); in onChartLongPressed() argument 38 * @param me 40 void onChartDoubleTapped(MotionEvent me); in onChartDoubleTapped() argument 45 * @param me 47 void onChartSingleTapped(MotionEvent me); in onChartSingleTapped() argument [all …]
|
| /external/rust/crates/tokio/src/io/util/ |
| D | buf_writer.rs | 59 let mut me = self.project(); in flush_buf() localVariable 61 let len = me.buf.len(); in flush_buf() 63 while *me.written < len { in flush_buf() 64 match ready!(me.inner.as_mut().poll_write(cx, &me.buf[*me.written..])) { in flush_buf() 72 Ok(n) => *me.written += n, in flush_buf() 79 if *me.written > 0 { in flush_buf() 80 me.buf.drain(..*me.written); in flush_buf() 82 *me.written = 0; in flush_buf() 128 let me = self.project(); in poll_write() localVariable 129 if buf.len() >= me.buf.capacity() { in poll_write() [all …]
|
| D | chain.rs | 59 let me = self.project(); in get_pin_mut() localVariable 60 (me.first, me.second) in get_pin_mut() 92 let me = self.project(); in poll_read() localVariable 94 if !*me.done_first { in poll_read() 96 ready!(me.first.poll_read(cx, buf))?; in poll_read() 98 *me.done_first = true; in poll_read() 103 me.second.poll_read(cx, buf) in poll_read() 113 let me = self.project(); in poll_fill_buf() localVariable 115 if !*me.done_first { in poll_fill_buf() 116 match ready!(me.first.poll_fill_buf(cx)?) { in poll_fill_buf() [all …]
|
| /external/rust/crates/tokio-stream/src/stream_ext/ |
| D | chunks_timeout.rs | 42 let mut me = self.as_mut().project(); in poll_next() localVariable 44 match me.stream.as_mut().poll_next(cx) { in poll_next() 47 if me.items.is_empty() { in poll_next() 48 me.deadline.set(Some(sleep(*me.duration))); in poll_next() 49 me.items.reserve_exact(*me.cap); in poll_next() 51 me.items.push(item); in poll_next() 52 if me.items.len() >= *me.cap { in poll_next() 53 return Poll::Ready(Some(std::mem::take(me.items))); in poll_next() 58 let last = if me.items.is_empty() { in poll_next() 61 Some(std::mem::take(me.items)) in poll_next() [all …]
|
| /external/brotli/tests/testdata/ |
| D | asyoulik.txt | 84 bequeathed me by will but poor a thousand crowns, 86 blessing, to breed me well: and there begins my 89 he keeps me rustically at home, or, to speak more 90 properly, stays me here at home unkept; for call you 99 plentifully gives me, the something that nature gave 100 me his countenance seems to take from me: he lets 101 me feed with his hinds, bars me the place of a 104 grieves me; and the spirit of my father, which I 105 think is within me, begins to mutiny against this 112 shake me up. [all …]
|
| /external/doclava/res/assets/templates/assets/ |
| D | doclava-developer-reference.js | 98 function new_node(me, mom, text, link, children_data, api_level) argument 127 node.plus_img.src = me.toroot + "assets/images/triangle-closed-small.png"; 130 expand_node(me, node); 136 node.plus_img.src = me.toroot + "assets/images/triangle-closed-small.png"; 149 a.href = me.toroot + link; 177 function expand_node(me, node) argument 183 get_node(me, node); 187 node.plus_img.src = me.toroot + "assets/images/triangle-opened-small.png"; 196 function get_node(me, mom) argument 201 mom.children[i] = new_node(me, mom, node_data[0], node_data[1], [all …]
|
| /external/lzma/C/ |
| D | Lzma2Enc.c | 498 CLzma2Enc *me, in Lzma2Enc_EncodeMt1() argument 521 p->enc = LzmaEnc_Create(me->alloc); in Lzma2Enc_EncodeMt1() 535 if (!me->tempBufLzma) in Lzma2Enc_EncodeMt1() 537 me->tempBufLzma = (Byte *)ISzAlloc_Alloc(me->alloc, LZMA2_CHUNK_SIZE_COMPRESSED_MAX); in Lzma2Enc_EncodeMt1() 538 if (!me->tempBufLzma) in Lzma2Enc_EncodeMt1() 543 RINOK(Lzma2EncInt_InitStream(p, &me->props)) in Lzma2Enc_EncodeMt1() 553 limitedInStream.limit = me->props.blockSize; in Lzma2Enc_EncodeMt1() 559 if (me->expectedDataSize != (UInt64)(Int64)-1 in Lzma2Enc_EncodeMt1() 560 && me->expectedDataSize >= unpackTotal) in Lzma2Enc_EncodeMt1() 561 expected = me->expectedDataSize - unpackTotal; in Lzma2Enc_EncodeMt1() [all …]
|
| /external/icu/icu4c/source/data/locales/ |
| D | ee.txt | 319 Bh{"'ga' h 'le' B 'me'"} 320 Bhm{"'ga' h 'aɖabaƒoƒo' mm 'le' B 'me'"} 321 Bhms{"h:mm:ss 'le' B 'me'"} 322 EBhm{"'ga' h:mm 'le' E B 'me'"} 323 EBhms{"'ga' h:mm:ss 'le' E B 'me'"} 361 one{"'kɔsiɖa' w 'lia' 'le' 'ƒe' Y 'me'"} 362 other{"'kɔsiɖa' w 'lia' 'le' 'ƒe' Y 'me'"} 582 one{"le ŋkeke {0} me"} 583 other{"le ŋkeke {0} wo me"} 592 dn{"ŋkekea me"} [all …]
|
| /external/harfbuzz_ng/perf/texts/ |
| D | en-thelittleprince.txt | 47 The grown-ups’ response, this time, was to advise me to lay aside my drawings of boa 55 parts of the world; and it is true that geography has been very useful to me. At a glance I can 61 Whenever I met one of them who seemed to me at all clear-sighted, I tried the experiment of 70 with me neither a mechanic nor any passengers, I set myself to attempt the difficult repairs all 71 alone. It was a question of life or death for me: I had scarcely enough drinking water to last a 81 It said: “If you please, draw me a sheep!” 85 “Draw me a sheep!” 88 around me. And I saw a most extraordinary small person, who stood there examining me with 92 That, however, is not my fault. The grown-ups discouraged me in my painter’s career when I was 105 “If you please, draw me a sheep...” [all …]
|
| /external/rust/crates/arc-swap/src/ |
| D | ref_cnt.rs | 49 fn into_ptr(me: Self) -> *mut Self::Base; in into_ptr() 54 fn as_ptr(me: &Self) -> *mut Self::Base; in as_ptr() 72 fn inc(me: &Self) -> *mut Self::Base { in inc() 73 Self::into_ptr(Self::clone(me)) in inc() 92 fn into_ptr(me: Arc<T>) -> *mut T { in into_ptr() 93 Arc::into_raw(me) as *mut T in into_ptr() 95 fn as_ptr(me: &Arc<T>) -> *mut T { in as_ptr() 99 // me as &T as *const T as *mut T in as_ptr() 101 // We first create a "shallow copy" of me - one that doesn't really own its ref count in as_ptr() 102 // (that's OK, me _does_ own it, so it can't be destroyed in the meantime). in as_ptr() [all …]
|
| /external/cronet/third_party/icu/source/data/locales/ |
| D | ee.txt | 404 Bh{"'ga' h 'le' B 'me'"} 405 Bhm{"'ga' h 'aɖabaƒoƒo' mm 'le' B 'me'"} 406 Bhms{"h:mm:ss 'le' B 'me'"} 408 EBhm{"'ga' h:mm 'le' E B 'me'"} 409 EBhms{"'ga' h:mm:ss 'le' E B 'me'"} 454 one{"'kɔsiɖa' w 'lia' 'le' 'ƒe' Y 'me'"} 455 other{"'kɔsiɖa' w 'lia' 'le' 'ƒe' Y 'me'"} 855 one{"le ŋkeke {0} me"} 856 other{"le ŋkeke {0} wo me"} 865 dn{"ŋkekea me"} [all …]
|