/third_party/libxml2/test/XPath/tests/ |
D | chaptersprefol | 2 /preceding::* 3 /child::EXAMPLE/preceding::* 5 /child::EXAMPLE/child::chapter[3]/preceding::* 7 /child::EXAMPLE/child::chapter[1]/image/preceding::*
|
D | nssimple | 5 /doc/elem/namespace::ns2/preceding::*
|
/third_party/libxml2/result/XPath/tests/ |
D | chaptersprefol | 8 Expression: /preceding::* 13 Expression: /child::EXAMPLE/preceding::* 23 Expression: /child::EXAMPLE/child::chapter[3]/preceding::* 64 Expression: /child::EXAMPLE/child::chapter[1]/image/preceding::*
|
D | nssimple | 23 2 ELEMENT preceding 35 Expression: /doc/elem/namespace::ns2/preceding::* 38 1 ELEMENT preceding
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBIAPITest.java | 320 q = wordIter1.preceding(25); in TestLastPreviousPreceding() 325 q = wordIter1.preceding(20); in TestLastPreviousPreceding() 327 p = wordIter1.preceding(wordIter1.first()); in TestLastPreviousPreceding() 342 q = sentIter1.preceding(40); in TestLastPreviousPreceding() 344 q = sentIter1.preceding(25); in TestLastPreviousPreceding() 348 q = sentIter1.preceding(sentIter1.first()); in TestLastPreviousPreceding() 364 q = lineIter1.preceding(40); in TestLastPreviousPreceding() 366 q = lineIter1.preceding(25); in TestLastPreviousPreceding() 370 q = lineIter1.preceding(sentIter1.first()); in TestLastPreviousPreceding()
|
D | AbstractBreakIteratorTests.java | 94 int pos = bi.preceding(0); in testPreceding() 97 pos = bi.preceding(5); in testPreceding()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
D | RBBIAPITest.java | 323 q = wordIter1.preceding(25); in TestLastPreviousPreceding() 328 q = wordIter1.preceding(20); in TestLastPreviousPreceding() 330 p = wordIter1.preceding(wordIter1.first()); in TestLastPreviousPreceding() 345 q = sentIter1.preceding(40); in TestLastPreviousPreceding() 347 q = sentIter1.preceding(25); in TestLastPreviousPreceding() 351 q = sentIter1.preceding(sentIter1.first()); in TestLastPreviousPreceding() 367 q = lineIter1.preceding(40); in TestLastPreviousPreceding() 369 q = lineIter1.preceding(25); in TestLastPreviousPreceding() 373 q = lineIter1.preceding(sentIter1.first()); in TestLastPreviousPreceding()
|
D | AbstractBreakIteratorTests.java | 97 int pos = bi.preceding(0); in testPreceding() 100 pos = bi.preceding(5); in testPreceding()
|
/third_party/skia/third_party/externals/icu/patches/ |
D | khmer-dictbe.patch | 8 // Will not combine a non-word with a preceding dictionary word longer than this 13 // dictionary word, with a preceding word
|
/third_party/flutter/skia/third_party/externals/icu/patches/ |
D | khmer-dictbe.patch | 8 // Will not combine a non-word with a preceding dictionary word longer than this 13 // dictionary word, with a preceding word
|
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
D | BreakIteratorICU.java | 83 public int preceding(int offset) { in preceding() method in BreakIteratorICU 84 return fIcuBrkItr.preceding(offset); in preceding()
|
/third_party/icu/icu4c/source/data/translit/ |
D | Hira_Kana.txt | 29 # preceding vowel. This is a one-way information- 143 # occur anyway. If a 30FC is seen without a preceding 148 # 30FC, the preceding character will have already been
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | Hira_Kana.txt | 29 # preceding vowel. This is a one-way information- 143 # occur anyway. If a 30FC is seen without a preceding 148 # 30FC, the preceding character will have already been
|
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/ |
D | Hira_Kana.txt | 28 # preceding vowel. This is a one-way information- 142 # occur anyway. If a 30FC is seen without a preceding 147 # 30FC, the preceding character will have already been
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | rbbi_cache.h | 42 UBool preceding(int32_t fromPos, int32_t *pos, int32_t *statusIndex); 108 void preceding(int32_t startPosition, UErrorCode &status);
|
/third_party/libxml2/fuzz/ |
D | xpath.dict | 38 axis_preceding="preceding::" 39 axis_preceding_siblings="preceding-sibling::"
|
/third_party/icu/icu4c/source/common/ |
D | rbbi_cache.h | 42 UBool preceding(int32_t fromPos, int32_t *pos, int32_t *statusIndex); 108 void preceding(int32_t startPosition, UErrorCode &status);
|
/third_party/node/deps/icu-small/source/common/ |
D | rbbi_cache.h | 42 UBool preceding(int32_t fromPos, int32_t *pos, int32_t *statusIndex); 108 void preceding(int32_t startPosition, UErrorCode &status);
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | rbbi_cache.h | 42 UBool preceding(int32_t fromPos, int32_t *pos, int32_t *statusIndex); 108 void preceding(int32_t startPosition, UErrorCode &status);
|
/third_party/icu/docs/userguide/boundaryanalysis/ |
D | index.md | 159 `last()`, `next()`, `previous()`, `preceding()`, and `following()` methods. 168 represents a boundary preceding the first character of the text, and a position 178 The `following()` and `preceding()` methods are used for random access, to move the 180 points to a boundary position, the `following()` and `preceding()` methods will 307 start = wordBrk.preceding(idx + 1); 309 // NOTE: for this and similar operations, use preceding() and next() 310 // as shown here, not following() and previous(). preceding() is 312 // NOTE: By using preceding(idx + 1) above, we're adopting the convention 314 // selects the word that _begins_ on that boundary (preceding(idx) would 405 the text preceding the last break position found. Using this value, it is [all …]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_AMD_buffer_marker/ |
D | copies.adoc | 27 all preceding commands have finished executing up to at least the specified 29 This includes the completion of other preceding 108 all preceding commands have finished executing up to at least the specified 110 This includes the completion of other preceding
|
D | copies.txt | 28 all preceding commands have finished executing up to at least the specified 30 This includes the completion of other preceding 109 all preceding commands have finished executing up to at least the specified 111 This includes the completion of other preceding
|
/third_party/libxml2/test/XPath/docs/ |
D | ns | 2 <preceding/>
|
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/ |
D | EGL_KHR_gl_colorspace.txt | 79 Add preceding the 4th paragraph on this page: 108 Add preceding the second paragraph on page 31 in section 3.5.2: 121 Add preceding the second paragraph on page 35 in section 3.5.4:
|
/third_party/EGL/extensions/KHR/ |
D | EGL_KHR_gl_colorspace.txt | 79 Add preceding the 4th paragraph on this page: 108 Add preceding the second paragraph on page 31 in section 3.5.2: 121 Add preceding the second paragraph on page 35 in section 3.5.4:
|