/external/icu/icu4c/source/samples/case/ |
D | ucase.c | 34 static const UChar unfold[] = {0x61, 0x42, 0x131, 0} ; in c_main() local 80 length = u_strFoldCase(buffer, sizeof(buffer)/sizeof(buffer[0]), unfold, in c_main() 81 sizeof(unfold)/sizeof(unfold[0]), U_FOLD_CASE_DEFAULT, in c_main() 87 u_fprintf(out, "u_strFoldCase(%S, U_FOLD_CASE_DEFAULT) -> %S\n", unfold, buffer); in c_main()
|
/external/icu/icu4c/source/common/ |
D | ucase.cpp | 39 const uint16_t *unfold; member 362 if(ucase_props_singleton.unfold==NULL || s==NULL) { in ucase_addStringCaseClosure() 376 const uint16_t *unfold=ucase_props_singleton.unfold; in ucase_addStringCaseClosure() local 377 unfoldRows=unfold[UCASE_UNFOLD_ROWS]; in ucase_addStringCaseClosure() 378 unfoldRowWidth=unfold[UCASE_UNFOLD_ROW_WIDTH]; in ucase_addStringCaseClosure() 379 unfoldStringWidth=unfold[UCASE_UNFOLD_STRING_WIDTH]; in ucase_addStringCaseClosure() 380 unfold+=unfoldRowWidth; in ucase_addStringCaseClosure() 392 const UChar *p=reinterpret_cast<const UChar *>(unfold+(i*unfoldRowWidth)); in ucase_addStringCaseClosure() 418 : unfold(reinterpret_cast<const UChar *>(ucase_props_singleton.unfold)), in FullCaseFoldingIterator() 419 unfoldRows(unfold[UCASE_UNFOLD_ROWS]), in FullCaseFoldingIterator() [all …]
|
D | ucase.h | 145 const UChar *unfold; variable
|
/external/rust/crates/futures-util/src/stream/ |
D | mod.rs | 91 mod unfold; module 92 pub use self::unfold::{unfold, Unfold};
|
D | unfold.rs | 50 pub fn unfold<T, F, Fut, Item>(init: T, f: F) -> Unfold<T, F, Fut> in unfold() function
|
/external/rust/crates/futures/tests/ |
D | sink.rs | 658 let unfold = sink::unfold((), |(), i: i32| { in sink_unfold() localVariable 665 futures::pin_mut!(unfold); in sink_unfold() 666 assert_eq!(unfold.as_mut().start_send(1), Ok(())); in sink_unfold() 667 assert_eq!(unfold.as_mut().poll_flush(cx), Poll::Ready(Ok(()))); in sink_unfold() 670 assert_eq!(unfold.as_mut().poll_ready(cx), Poll::Ready(Ok(()))); in sink_unfold() 671 assert_eq!(unfold.as_mut().start_send(2), Ok(())); in sink_unfold() 672 assert_eq!(unfold.as_mut().poll_ready(cx), Poll::Ready(Ok(()))); in sink_unfold() 673 assert_eq!(unfold.as_mut().start_send(3), Ok(())); in sink_unfold() 676 assert_eq!(unfold.as_mut().poll_ready(cx), Poll::Ready(Ok(()))); in sink_unfold() 677 assert_eq!(unfold.as_mut().start_send(4), Ok(())); in sink_unfold() [all …]
|
D | unfold.rs | 11 let mut stream = stream::unfold(0, |state| { in unfold1()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | UCaseProps.java | 85 unfold=ICUBinary.getChars(bytes, count, 0); in readData() 393 c2=unfold[unfoldOffset++]; in strcmpMax() 404 if(max==0 || unfold[unfoldOffset]==0) { in strcmpMax() 425 if(unfold==null || s==null) { in addStringCaseClosure() 440 unfoldRows=unfold[UNFOLD_ROWS]; in addStringCaseClosure() 441 unfoldRowWidth=unfold[UNFOLD_ROW_WIDTH]; in addStringCaseClosure() 442 unfoldStringWidth=unfold[UNFOLD_STRING_WIDTH]; in addStringCaseClosure() 462 …for(i=unfoldStringWidth; i<unfoldRowWidth && unfold[unfoldOffset+i]!=0; i+=UTF16.getCharCount(c)) { in addStringCaseClosure() 463 c=UTF16.charAt(unfold, unfoldOffset, unfold.length, i); in addStringCaseClosure() 1556 private char unfold[]; field in UCaseProps
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UCaseProps.java | 81 unfold=ICUBinary.getChars(bytes, count, 0); in readData() 389 c2=unfold[unfoldOffset++]; in strcmpMax() 400 if(max==0 || unfold[unfoldOffset]==0) { in strcmpMax() 421 if(unfold==null || s==null) { in addStringCaseClosure() 436 unfoldRows=unfold[UNFOLD_ROWS]; in addStringCaseClosure() 437 unfoldRowWidth=unfold[UNFOLD_ROW_WIDTH]; in addStringCaseClosure() 438 unfoldStringWidth=unfold[UNFOLD_STRING_WIDTH]; in addStringCaseClosure() 458 …for(i=unfoldStringWidth; i<unfoldRowWidth && unfold[unfoldOffset+i]!=0; i+=UTF16.getCharCount(c)) { in addStringCaseClosure() 459 c=UTF16.charAt(unfold, unfoldOffset, unfold.length, i); in addStringCaseClosure() 1551 private char unfold[]; field in UCaseProps
|
/external/rust/crates/futures-util/src/sink/ |
D | mod.rs | 47 mod unfold; module 48 pub use self::unfold::{unfold, Unfold};
|
D | unfold.rs | 39 pub fn unfold<T, F, R, Item, E>(init: T, function: F) -> Unfold<T, F, R> in unfold() function
|
/external/libnl/doc/stylesheets/ |
D | slidy.css | 344 background: transparent url(../graphics/unfold-dim.gif) no-repeat 0px 0.5em; 352 background: transparent url(../graphics/unfold.gif) no-repeat 0px 0.5em; 365 background: transparent url(../graphics/unfold-dim.gif) no-repeat 0px 0.5em; 373 background: transparent url(../graphics/unfold.gif) no-repeat 0px 0.5em;
|
/external/rust/crates/itertools/src/ |
D | sources.rs | 100 pub fn unfold<A, St, F>(initial_state: St, f: F) -> Unfold<St, F> in unfold() function
|
D | lib.rs | 176 pub use crate::sources::{repeat_call, unfold, iterate};
|
/external/python/cpython3/Modules/_decimal/libmpdec/literature/ |
D | mulmod-ppro.txt | 198 unfold Qdiv. 235 unfold Qdiv.
|
/external/doclava/res/assets/templates-sdk/assets/css/ |
D | default.css | 9683 …unfold-less, .dac-auto-unfold-less.dac-modal-header-close:before, .paging-links .dac-auto-unfold-l… 9688 …unfold-less, .dac-invert .dac-auto-unfold-less.dac-modal-header-close:before, .dac-invert .paging-… 9693 …unfold-more, .dac-auto-unfold-more.dac-modal-header-close:before, .paging-links .dac-auto-unfold-m… 9698 …unfold-more, .dac-invert .dac-auto-unfold-more.dac-modal-header-close:before, .dac-invert .paging-… 9870 …unfold-less-white, .dac-unfold-less-white.dac-modal-header-close:before, .paging-links .dac-unfold… 9875 …unfold-less, .dac-unfold-less.dac-modal-header-close:before, .paging-links .dac-unfold-less.prev-p… 9880 …unfold-more-white, .dac-unfold-more-white.dac-modal-header-close:before, .paging-links .dac-unfold… 9885 …unfold-more, .dac-unfold-more.dac-modal-header-close:before, .paging-links .dac-unfold-more.prev-p…
|
/external/icu/libicu/cts_headers/ |
D | ucase.h | 145 const UChar *unfold; variable
|
/external/python/dateutil/dateutil/ |
D | rrule.py | 1617 unfold=False, argument 1626 unfold = True 1635 if unfold:
|
/external/rust/crates/itertools/ |
D | CHANGELOG.md | 171 - `Unfold::new` to `unfold()`
|
/external/llvm-project/llvm/test/Transforms/JumpThreading/ |
D | select.ll | 368 ; and the phi node feeds a switch we unfold the select
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86InstrFormats.td | 261 // Mark the instruction as "illegal to memory fold/unfold" 352 bit isMemoryFoldable = 1; // Is it allowed to memory fold/unfold this instruction?
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrFormats.td | 253 // Mark the instruction as "illegal to memory fold/unfold" 341 bit isMemoryFoldable = 1; // Is it allowed to memory fold/unfold this instruction?
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | flags-copy-lowering.mir | 1004 ; these automatically. If not, maybe we want to unfold SETcc instructions
|
D | avx512-broadcast-unfold.ll | 4 ; Test that we can unfold constant pool loads when we're using avx512's 4639 ; unfold the broadcast and pull it out of the loop.
|
/external/python/dateutil/dateutil/test/ |
D | test_rrule.py | 2807 "FREQ=YEA\n RLY;COUNT=3\n", unfold=True,
|