Searched refs:order (Results 276 - 300 of 874) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp197 // and sort in ascending order by set and then code point.
213 // Starting with CLDR 26/ICU 54, the root Han order may instead be
214 // the Unihan radical-stroke order.
215 // The tests should pass either way, so we only test the order of a small set of Han characters
216 // whose radical-stroke order is the same as their code point order.
312 UCollationResult order = coll->compareUTF8(fffd, illegal, errorCode); local
313 if(order != UCOL_EQUAL) {
315 (int)i, order);
1118 // in order t
[all...]
H A Dcolldata.cpp49 int32_t order; local
72 while ((order = ucol_next(elems, &status)) != UCOL_NULLORDER) {
73 UBool cont = isContinuation(order);
75 order &= strengthMask;
77 if (toShift && variableTop > (uint32_t)order && (order & UCOL_PRIMARYORDERMASK) != 0) {
79 order &= UCOL_PRIMARYORDERMASK;
81 order = UCOL_IGNORABLE;
85 if (order == UCOL_IGNORABLE) {
90 order |
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotation.java203 * correction to the copy in order to perfect its orthogonality. If
332 // normalize v1 in order to have (v1'|v1') = (u1|u1)
339 // adjust v2 in order to have (u1|u2) = (v1|v2) and (v2'|v2') = (u2|u2)
352 // of relying on the Vector3D class in order to avoid building lots
491 * @param order order of rotations to use
496 public Rotation(RotationOrder order, argument
498 Rotation r1 = new Rotation(order.getA1(), alpha1);
499 Rotation r2 = new Rotation(order.getA2(), alpha2);
500 Rotation r3 = new Rotation(order
611 getAngles(RotationOrder order) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1Curve.java28 this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFE26F2FC170F69466A74DEFD8D"));
H A DSecP192R1Curve.java29 this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831"));
H A DSecP224K1Curve.java28 this.order = new BigInteger(1, Hex.decode("010000000000000000000000000001DCE8D2EC6184CAF0A971769FB1F7"));
H A DSecP224R1Curve.java29 this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFF16A2E0B8F03E13DD29455C5C2A3D"));
H A DSecP256K1Curve.java28 this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141"));
H A DSecP256R1Curve.java29 this.order = new BigInteger(1, Hex.decode("FFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551"));
H A DSecP384R1Curve.java29 this.order = new BigInteger(1, Hex.decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7634D81F4372DDF581A0DB248B0A77AECEC196ACCC52973"));
H A DSecP521R1Curve.java29 this.order = new BigInteger(1, Hex.decode("01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148F709A5D03BB5C9B8899C47AEBB6FB71E91386409"));
/external/clang/test/PCH/
H A Dchain-cxx.cpp62 #error Header inclusion order messed up
/external/compiler-rt/make/
H A Dlib_util.mk46 # Helper function to select the right set of dirs in generic priority order.
53 # Helper function to select the right set of dirs in optimized priority order.
/external/deqp/framework/opengl/
H A DgluFboRenderContext.cpp40 if (format.order == tcu::TextureFormat::DS)
45 else if (format.order == tcu::TextureFormat::D)
53 if (format.order == tcu::TextureFormat::DS)
58 else if (format.order == tcu::TextureFormat::S)
/external/dng_sdk/source/
H A Ddng_flags.h103 // Figure out byte order.
140 #error Unable to figure out byte order.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A Ddownload.php42 <p>It is very important to read the following notes in order to run this version
/external/flatbuffers/tests/MyGame/Example/
H A DTestSimpleTableWithEnum.java13 public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
H A DTableInNestedNS.java13 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
/external/flatbuffers/tests/namespace_test/NamespaceA/
H A DSecondTableInA.java13 public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DImageHeaderParser.java212 segmentData.order(byteOrder);
299 this.data.order(ByteOrder.BIG_ENDIAN);
302 public void order(ByteOrder byteOrder) { method in class:ImageHeaderParser.RandomAccessReader
303 this.data.order(byteOrder);
321 //motorola / big endian byte order
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DNavigableMapTestSuiteBuilder.java132 public Iterable<Entry<K, V>> order(List<Entry<K, V>> insertionOrder) {
133 insertionOrder = castOrCopyToList(delegate.order(insertionOrder));
152 public Iterable<Entry<K, V>> order(List<Entry<K, V>> insertionOrder) { method in class:NavigableMapTestSuiteBuilder.ForwardingTestMapGenerator
153 return delegate.order(insertionOrder);
H A DTestMapEntrySetGenerator.java65 public List<Map.Entry<K, V>> order(List<Map.Entry<K, V>> insertionOrder) { method in class:TestMapEntrySetGenerator
H A DTestStringMapGenerator.java82 public Iterable<Entry<String, String>> order( method in class:TestStringMapGenerator
H A DTestStringSortedMapGenerator.java56 public Iterable<Entry<String, String>> order(List<Entry<String, String>> insertionOrder) { method in class:TestStringSortedMapGenerator
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DDerivedGoogleCollectionGenerators.java69 public Iterable<Map.Entry<K, V>> order(List<Map.Entry<K, V>> insertionOrder) { method in class:DerivedGoogleCollectionGenerators.MapGenerator
70 return generator.order(insertionOrder);
128 public Iterable<Entry<V, K>> order(List<Entry<V, K>> insertionOrder) { method in class:DerivedGoogleCollectionGenerators.InverseBiMapGenerator
201 public Iterable<V> order(List<V> insertionOrder) { method in class:DerivedGoogleCollectionGenerators.BiMapValueSetGenerator

Completed in 454 milliseconds

<<11121314151617181920>>