HomeSort by relevance Sort by last modified time
    Searched defs:ordering (Results 1 - 25 of 41) sorted by null

1 2

  /external/guava/guava/src/com/google/common/collect/
ByFunctionOrdering.java 30 * An ordering that orders elements by applying an order to the result of a
35 extends Ordering<F> implements Serializable {
37 final Ordering<T> ordering; field in class:ByFunctionOrdering
40 Function<F, ? extends T> function, Ordering<T> ordering) {
42 this.ordering = checkNotNull(ordering);
46 return ordering.compare(function.apply(left), function.apply(right));
56 && this.ordering.equals(that.ordering)
    [all...]
NullsFirstOrdering.java 25 /** An ordering that treats {@code null} as less than all other values. */
27 final class NullsFirstOrdering<T> extends Ordering<T> implements Serializable {
28 final Ordering<? super T> ordering; field in class:NullsFirstOrdering
30 NullsFirstOrdering(Ordering<? super T> ordering) {
31 this.ordering = ordering;
44 return ordering.compare(left, right);
47 @Override public <S extends T> Ordering<S> reverse()
    [all...]
NullsLastOrdering.java 25 /** An ordering that treats {@code null} as greater than all other values. */
27 final class NullsLastOrdering<T> extends Ordering<T> implements Serializable {
28 final Ordering<? super T> ordering; field in class:NullsLastOrdering
30 NullsLastOrdering(Ordering<? super T> ordering) {
31 this.ordering = ordering;
44 return ordering.compare(left, right);
47 @Override public <S extends T> Ordering<S> reverse()
    [all...]
MinMaxPriorityQueue.java 97 return new Builder<Comparable>(Ordering.natural()).create();
106 return new Builder<E>(Ordering.<E>natural()).create(initialContents);
124 return new Builder<Comparable>(Ordering.natural())
136 return new Builder<Comparable>(Ordering.natural())
214 private <T extends B> Ordering<T> ordering() { method in class:MinMaxPriorityQueue.Builder
215 return Ordering.from((Comparator<T>) comparator);
227 Ordering<E> ordering = builder.ordering(); local
488 final Ordering<E> ordering; field in class:MinMaxPriorityQueue.Heap
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Extensions.java 21 private Vector ordering = new Vector(); field in class:Extensions
72 ordering.addElement(s.getObjectAt(0));
88 this.ordering.addElement(ext.getExtnId());
98 return ordering.elements();
126 Enumeration e = ordering.elements();
174 return toOidArray(ordering);
191 for (int i = 0; i != ordering.size(); i++)
193 Object oid = ordering.elementAt(i);
X509Name.java 353 private Vector ordering = new Vector(); field in class:X509Name
424 ordering.addElement(ASN1ObjectIdentifier.getInstance(s.getObjectAt(0)));
465 * following a specific ordering, you should use the constructor
466 * with the ordering specified below.
467 * @deprecated use an ordered constructor! The hashtable ordering is rarely correct
476 * Constructor from a table of attributes with ordering.
480 * construction process. The ordering vector should contain the OIDs
484 Vector ordering,
487 this(ordering, attributes, new X509DefaultEntryConverter());
491 * Constructor from a table of attributes with ordering
    [all...]
X509Extensions.java 211 private Vector ordering = new Vector(); field in class:X509Extensions
273 ordering.addElement(s.getObjectAt(0));
289 * Constructor from a table of extensions with ordering.
294 Vector ordering,
299 if (ordering == null)
305 e = ordering.elements();
310 this.ordering.addElement(ASN1ObjectIdentifier.getInstance(e.nextElement()));
313 e = this.ordering.elements();
338 this.ordering.addElement(e.nextElement());
343 e = this.ordering.elements()
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
TSTInfo.java 52 * ordering BOOLEAN DEFAULT FALSE,
78 private final Boolean ordering; field in class:TSTInfo
88 Boolean ordering, BigInteger nonce, GeneralName tsa,
96 this.ordering = ordering;
121 res.append(ordering);
168 * @return Returns the ordering.
171 return ordering;
253 ASN1Boolean.getInstance(), // ordering
293 values[6] = info.ordering;
    [all...]
  /external/grub/lib/
getopt.c 113 Also, when `ordering' is RETURN_IN_ORDER,
179 the ordering of the two. We describe each non-option ARGV-element
185 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
191 } ordering;
411 /* Determine how to handle the ordering of options and nonoptions. */
415 ordering = RETURN_IN_ORDER;
420 ordering = REQUIRE_ORDER;
424 ordering = REQUIRE_ORDER;
426 ordering = PERMUTE;
560 if (ordering == PERMUTE
190 } ordering; variable in typeref:enum:__anon7071
    [all...]
  /external/icu4c/test/intltest/
bidiconf.cpp 56 int32_t ordering[1000]; member in class:BiDiConformanceTest
149 ordering[orderingCount++]=(int32_t)value;
432 // with the expected ordering that has them omitted.
447 continue; // BiDi control, omitted from expected ordering.
449 if(visualIndex<orderingCount && logicalIndex!=ordering[visualIndex]) {
450 errln("Wrong ordering value at visual index %d; expected %d actual %d",
451 (int)visualIndex, ordering[visualIndex], logicalIndex);
458 // which should match the length of the BidiTest.txt ordering.
460 errln("Wrong number of ordering values; expected %d actual %d",
466 UnicodeString eord("Expected ordering: ")
    [all...]
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 124 int ordering = a.getInt(com.android.internal.R.styleable.AnimatorSet_ordering, local
126 createAnimatorFromXml(c, parser, attrs, (AnimatorSet) anim, ordering);
  /ndk/sources/host-tools/make-3.81/
getopt.c 107 Also, when `ordering' is RETURN_IN_ORDER,
173 the ordering of the two. We describe each non-option ARGV-element
179 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
185 } ordering; variable in typeref:enum:__anon21350
398 /* Determine how to handle the ordering of options and nonoptions. */
402 ordering = RETURN_IN_ORDER;
407 ordering = REQUIRE_ORDER;
411 ordering = REQUIRE_ORDER;
413 ordering = PERMUTE;
542 if (ordering == PERMUTE
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shapestr.h 75 CARD8 ordering; /* UnSorted, YSorted, YXSorted, YXBanded */ member in struct:_ShapeRectangles
219 CARD8 ordering; /* UnSorted, YSorted, YXSorted, YXBanded */ member in struct:__anon23764
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
shapestr.h 75 CARD8 ordering; /* UnSorted, YSorted, YXSorted, YXBanded */ member in struct:_ShapeRectangles
219 CARD8 ordering; /* UnSorted, YSorted, YXSorted, YXBanded */ member in struct:__anon25354
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
shapestr.h 75 CARD8 ordering; /* UnSorted, YSorted, YXSorted, YXBanded */ member in struct:_ShapeRectangles
219 CARD8 ordering; /* UnSorted, YSorted, YXSorted, YXBanded */ member in struct:__anon26866
  /external/freetype/src/cff/
cfftypes.h 271 FT_String* ordering; member in struct:CFF_FontRec_
  /external/freetype/include/freetype/
t1tables.h 358 FT_String* ordering; member in struct:CID_FaceInfoRec_
  /external/openssl/include/openssl/
ts.h 161 ordering BOOLEAN DEFAULT FALSE,
177 ASN1_BOOLEAN ordering; member in struct:TS_tst_info_st
445 int TS_TST_INFO_set_ordering(TS_TST_INFO *a, int ordering);
472 /* Set ordering to true in response. */
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuBuilder.java 387 final int ordering = getOrdering(categoryOrder); local
390 ordering, title, mDefaultShowAsAction);
397 mItems.add(findInsertIndex(mItems, ordering), item);
670 * Returns the ordering across all items. This will grab the category from
677 * @return An ordering integer that can be used to order this item across
747 private static int findInsertIndex(ArrayList<MenuItemImpl> items, int ordering) {
750 if (item.getOrdering() <= ordering) {
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xproto.h 1625 BYTE ordering; member in struct:__anon23464
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xproto.h 1625 BYTE ordering; member in struct:__anon25054
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xproto.h 1625 BYTE ordering; member in struct:__anon26566
    [all...]
  /tools/motodev/src/plugins/videos/libs/gdata/java/deps/
google-collect-1.0-rc1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 

Completed in 500 milliseconds

1 2