/libcore/luni/src/main/java/java/security/spec/ |
ECParameterSpec.java | 30 // Order of the generator 31 private final BigInteger order; field in class:ECParameterSpec 39 * the base point, the order of the generator (or base point) and the 46 * @param order 47 * the order of the generator. 51 * if {@code order <= zero} or {@code cofactor <= zero}. 54 BigInteger order, int cofactor) { 55 this(curve, generator, order, cofactor, null); 66 BigInteger order, int cofactor, String curveName) { 69 this.order = order [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldCollationElementIteratorTest.java | 34 int order = iterator.next(); local 36 while (order != CollationElementIterator.NULLORDER) { 37 orders[i++] = order; 38 order = iterator.next(); 43 order = iterator.previous(); 45 while (order != CollationElementIterator.NULLORDER) { 46 assertEquals(orders[--i], order); 47 order = iterator.previous();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_next.py | 34 order = "pre" # Pre-order tree traversal variable in class:FixNext
|
fix_renames.py | 46 order = "pre" # Pre-order tree traversal variable in class:FixRenames
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_next.py | 34 order = "pre" # Pre-order tree traversal variable in class:FixNext
|
fix_renames.py | 46 order = "pre" # Pre-order tree traversal variable in class:FixRenames
|
/libcore/luni/src/main/java/java/nio/ |
ByteBufferAsCharBuffer.java | 40 slice.order(byteBuffer.order()); 57 buf.byteBuffer.order = byteBuffer.order; 78 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); 124 public ByteOrder order() { method in class:ByteBufferAsCharBuffer 125 return byteBuffer.order(); 173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); [all...] |
ByteBufferAsDoubleBuffer.java | 40 slice.order(byteBuffer.order()); 57 buf.byteBuffer.order = byteBuffer.order; 78 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); 124 public ByteOrder order() { method in class:ByteBufferAsDoubleBuffer 125 return byteBuffer.order(); 173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); [all...] |
ByteBufferAsFloatBuffer.java | 39 slice.order(byteBuffer.order()); 56 buf.byteBuffer.order = byteBuffer.order; 77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); 123 public ByteOrder order() { method in class:ByteBufferAsFloatBuffer 124 return byteBuffer.order(); 172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); [all...] |
ByteBufferAsIntBuffer.java | 40 slice.order(byteBuffer.order()); 57 buf.byteBuffer.order = byteBuffer.order; 78 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); 124 public ByteOrder order() { method in class:ByteBufferAsIntBuffer 125 return byteBuffer.order(); 173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); [all...] |
ByteBufferAsLongBuffer.java | 40 slice.order(byteBuffer.order()); 57 buf.byteBuffer.order = byteBuffer.order; 78 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); 124 public ByteOrder order() { method in class:ByteBufferAsLongBuffer 125 return byteBuffer.order(); 173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); [all...] |
ByteBufferAsShortBuffer.java | 39 slice.order(byteBuffer.order()); 56 buf.byteBuffer.order = byteBuffer.order; 77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); 123 public ByteOrder order() { method in class:ByteBufferAsShortBuffer 124 return byteBuffer.order(); 172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); [all...] |
/external/chromium/chrome/browser/net/ |
chrome_net_log.h | 36 // including an "order" field that identifies when it was captured relative 39 Entry(uint32 order, 47 uint32 order; member in struct:ChromeNetLog::Entry
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkDCubicIntersection.cpp | 33 int order = reducer->reduce(quad); local 46 if (order > 1) { 49 if (order > 2) { 53 SkASSERT(order < 4 && order > 0); 56 return order;
|
/external/eigen/test/ |
product_symm.cpp | 19 enum { order = OtherSize==1 ? 0 : RowMajor }; enumerator in enum:__anon18000 20 typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
OneSizeGenerator.java | 86 public Iterable<E> order(List<E> insertionOrder) { method in class:OneSizeGenerator 87 return generator.order(insertionOrder);
|
ReserializingTestCollectionGenerator.java | 80 public Iterable<E> order(List<E> insertionOrder) { method in class:ReserializingTestCollectionGenerator 81 return delegate.order(insertionOrder);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ContiguousSetNonGwtTest.java | 98 @Override public List<Integer> order(List<Integer> insertionOrder) { method in class:ContiguousSetNonGwtTest.TestIntegerSetGenerator
|
/external/libexif/libexif/olympus/ |
exif-mnote-data-olympus.h | 26 #include <libexif/exif-byte-order.h> 50 ExifByteOrder order; member in struct:_ExifMnoteDataOlympus
|
/external/openfst/src/include/fst/ |
topsort.h | 43 // If acyclic, ORDER[i] gives the topological position of state Id i; 46 TopOrderVisitor(vector<StateId> *order, bool *acyclic) 47 : order_(order), acyclic_(acyclic) {} 78 vector<StateId> *finish_; // states in finishing-time order 94 vector<StateId> order; local 97 TopOrderVisitor<Arc> top_order_visitor(&order, &acyclic); 101 StateSort(fst, order);
|
/external/skia/src/pathops/ |
SkDCubicIntersection.cpp | 33 int order = reducer->reduce(quad); local 46 if (order > 1) { 49 if (order > 2) { 53 SkASSERT(order < 4 && order > 0); 56 return order;
|
/external/skia/tests/ |
PathOpsQuadReduceOrderTest.cpp | 32 int order; local 51 order = reducer.reduce(quad); 52 if (order != 2) { 53 SkDebugf("[%d] line quad order=%d\n", (int) index, order); 58 order = reducer.reduce(quad); 59 if (order != 3) { 60 SkDebugf("[%d] line mod quad order=%d\n", (int) index, order);
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
topsort.h | 38 // If acyclic, ORDER[i] gives the topological position of state Id i; 41 TopOrderVisitor(vector<StateId> *order, bool *acyclic) 42 : order_(order), acyclic_(acyclic) {} 73 vector<StateId> *finish_; // states in finishing-time order 89 vector<StateId> order; local 92 TopOrderVisitor<Arc> top_order_visitor(&order, &acyclic); 96 StateSort(fst, order);
|
/developers/samples/android/content/LoaderCursor/src/com/example/android/content/loadercursor/ |
CursorLoaderListFragment.java | 199 String order = Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC"; local 202 CONTACTS_SUMMARY_PROJECTION, select, null, order);
|
/external/chromium_org/third_party/openssl/openssl/crypto/ecdsa/ |
ecs_lib.c | 231 BIGNUM *order=NULL; local 241 if ((order = BN_new()) == NULL) return 0; 242 if (!EC_GROUP_get_order(group,order,NULL)) 244 BN_clear_free(order); 247 i=BN_num_bits(order); 257 BN_clear_free(order);
|