/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationBuilder.java | 42 rootElements = new CollationRootElements(b.data.rootElements); in CollationBuilder() 54 if(baseData.rootElements == null) { in parseAndBuild() 145 if(p <= rootElements.getFirstPrimary()) { in addReset() 155 p = rootElements.getPrimaryBefore(p, baseData.isCompressiblePrimary(p)); in addReset() 268 weight16 = rootElements.getSecondaryBefore(p, s); in getWeight16Before() 270 weight16 = rootElements.getTertiaryBefore(p, s, t); in getWeight16Before() 301 return rootElements.getFirstTertiaryCE(); in getSpecialResetPosition() 305 ce = rootElements.getLastTertiaryCE(); in getSpecialResetPosition() 328 ce = rootElements.getFirstSecondaryCE(); in getSpecialResetPosition() 333 ce = rootElements.getLastSecondaryCE(); in getSpecialResetPosition() [all …]
|
D | CollationDataReader.java | 284 data.rootElements = new long[rootElementsLength]; in read() 286 data.rootElements[i] = inBytes.getInt() & 0xffffffffL; // unsigned int -> long in read() 288 long commonSecTer = data.rootElements[CollationRootElements.IX_COMMON_SEC_AND_TER_CE]; in read() 292 long secTerBoundaries = data.rootElements[CollationRootElements.IX_SEC_TER_BOUNDARIES]; in read()
|
D | CollationRootElements.java | 22 public CollationRootElements(long[] rootElements) { in CollationRootElements() argument 23 elements = rootElements; in CollationRootElements()
|
D | CollationData.java | 555 public long[] rootElements; field in CollationData
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationBuilder.java | 46 rootElements = new CollationRootElements(b.data.rootElements); in CollationBuilder() 58 if(baseData.rootElements == null) { in parseAndBuild() 149 if(p <= rootElements.getFirstPrimary()) { in addReset() 159 p = rootElements.getPrimaryBefore(p, baseData.isCompressiblePrimary(p)); in addReset() 272 weight16 = rootElements.getSecondaryBefore(p, s); in getWeight16Before() 274 weight16 = rootElements.getTertiaryBefore(p, s, t); in getWeight16Before() 305 return rootElements.getFirstTertiaryCE(); in getSpecialResetPosition() 309 ce = rootElements.getLastTertiaryCE(); in getSpecialResetPosition() 332 ce = rootElements.getFirstSecondaryCE(); in getSpecialResetPosition() 337 ce = rootElements.getLastSecondaryCE(); in getSpecialResetPosition() [all …]
|
D | CollationDataReader.java | 285 data.rootElements = new long[rootElementsLength]; in read() 287 data.rootElements[i] = inBytes.getInt() & 0xffffffffL; // unsigned int -> long in read() 289 long commonSecTer = data.rootElements[CollationRootElements.IX_COMMON_SEC_AND_TER_CE]; in read() 293 long secTerBoundaries = data.rootElements[CollationRootElements.IX_SEC_TER_BOUNDARIES]; in read()
|
D | CollationRootElements.java | 24 public CollationRootElements(long[] rootElements) { in CollationRootElements() argument 25 elements = rootElements; in CollationRootElements()
|
D | CollationData.java | 557 public long[] rootElements; field in CollationData
|
/external/icu/icu4c/source/i18n/ |
D | collationbuilder.cpp | 205 rootElements(b->data->rootElements, b->data->rootElementsLength), in CollationBuilder() 237 if(baseData->rootElements == NULL) { in parseAndBuild() 342 if(p <= rootElements.getFirstPrimary()) { in addReset() 354 p = rootElements.getPrimaryBefore(p, baseData->isCompressiblePrimary(p)); in addReset() 471 weight16 = rootElements.getSecondaryBefore(p, s); in getWeight16Before() 473 weight16 = rootElements.getTertiaryBefore(p, s, t); in getWeight16Before() 507 return rootElements.getFirstTertiaryCE(); in getSpecialResetPosition() 511 ce = rootElements.getLastTertiaryCE(); in getSpecialResetPosition() 535 ce = rootElements.getFirstSecondaryCE(); in getSpecialResetPosition() 540 ce = rootElements.getLastSecondaryCE(); in getSpecialResetPosition() [all …]
|
D | collationdatawriter.h | 31 const void *rootElements, int32_t rootElementsLength, 44 const void *rootElements, int32_t rootElementsLength,
|
D | collationrootelements.h | 33 CollationRootElements(const uint32_t *rootElements, int32_t rootElementsLength) in CollationRootElements() argument 34 : elements(rootElements), length(rootElementsLength) {} in CollationRootElements()
|
D | collationdatawriter.cpp | 77 const void *rootElements, int32_t rootElementsLength, in writeBase() argument 82 rootElements, rootElementsLength, in writeBase() 99 const void *rootElements, int32_t rootElementsLength, in write() argument 328 copyData(indexes, CollationDataReader::IX_ROOT_ELEMENTS_OFFSET, rootElements, dest); in write()
|
D | collationdata.h | 64 rootElements(NULL), rootElementsLength(0) {} in CollationData() 245 const uint32_t *rootElements; member
|
D | collationdatareader.cpp | 229 data->rootElements = reinterpret_cast<const uint32_t *>(inBytes + offset); in read() 231 uint32_t commonSecTer = data->rootElements[CollationRootElements::IX_COMMON_SEC_AND_TER_CE]; in read() 236 … uint32_t secTerBoundaries = data->rootElements[CollationRootElements::IX_SEC_TER_BOUNDARIES]; in read()
|
D | collationbuilder.h | 298 const CollationRootElements rootElements; variable
|
/external/deqp/scripts/log/ |
D | log_to_xml.py | 38 self.rootElements = [] 41 return self.rootElements 45 self.rootElements.append(elem)
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
D | CollationTest.java | 771 elements = root.rootElements; in RootElementsIterator() 848 CollationRootElements rootElements = new CollationRootElements(root.rootElements); in TestRootElements() local 885 if (!isValidCE(rootElements, root, pri, sec, ctq)) { in TestRootElements() 919 rootElements.getSecondaryBoundary() - 0x100 : prevSec; in TestRootElements() 935 rootElements.getTertiaryBoundary() - 0x100 : prevTer; in TestRootElements() 962 CollationRootElements rootElements = new CollationRootElements(root.rootElements); in TestTailoredElements() local 1012 if (!isValidCE(rootElements, root, ce)) { in TestTailoredElements()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | CollationTest.java | 775 elements = root.rootElements; in RootElementsIterator() 852 CollationRootElements rootElements = new CollationRootElements(root.rootElements); in TestRootElements() local 889 if (!isValidCE(rootElements, root, pri, sec, ctq)) { in TestRootElements() 923 rootElements.getSecondaryBoundary() - 0x100 : prevSec; in TestRootElements() 939 rootElements.getTertiaryBoundary() - 0x100 : prevTer; in TestRootElements() 966 CollationRootElements rootElements = new CollationRootElements(root.rootElements); in TestTailoredElements() local 1016 if (!isValidCE(rootElements, root, ce)) { in TestTailoredElements()
|
/external/icu/icu4c/source/test/intltest/ |
D | collationtest.cpp | 688 elements(root.rootElements), length(root.rootElementsLength), in RootElementsIterator() 767 CollationRootElements rootElements(root->rootElements, root->rootElementsLength); in TestRootElements() local 803 if(!isValidCE(rootElements, *root, pri, sec, ctq)) { in TestRootElements() 832 prevSec == 0 ? rootElements.getSecondaryBoundary() - 0x100 : prevSec; in TestRootElements() 844 prevTer == 0 ? rootElements.getTertiaryBoundary() - 0x100 : prevTer; in TestRootElements() 870 CollationRootElements rootElements(root->rootElements, root->rootElementsLength); in TestTailoredElements() local 935 if(!isValidCE(rootElements, *root, ce)) { in TestTailoredElements()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.jdt.core_3.11.0.v20150602-1242.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |
/external/dagger2/lib/ |
D | google-java-format-0.1-20151017.042846-2.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |