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

1 2

  /external/guava/src/com/google/common/collect/
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...]
ByFunctionOrdering.java 29 * An ordering that orders elements by applying an order to the result of a
34 extends Ordering<F> implements Serializable {
36 final Ordering<T> ordering; field in class:ByFunctionOrdering
39 Function<F, ? extends T> function, Ordering<T> ordering) {
41 this.ordering = checkNotNull(ordering);
45 return ordering.compare(function.apply(left), function.apply(right));
55 && this.ordering.equals(that.ordering)
    [all...]
Ordering.java 39 * if (Ordering.from(comparator).reverse().isOrdered(list)) { ... }}</pre>
42 * Ordering} instance for a pre-existing comparator. You can also skip the
43 * comparator step and extend {@code Ordering} directly: <pre> {@code
45 * Ordering<String> byLengthOrdering = new Ordering<String>() {
53 * are. For example, if {@code ordering} and {@code function} can themselves be
54 * serialized, then {@code ordering.onResultOf(function)} can as well.
61 public abstract class Ordering<T> implements Comparator<T> {
65 * Returns a serializable ordering that uses the natural order of the values.
66 * The ordering throws a {@link NullPointerException} when passed a nul
    [all...]
  /external/freetype/include/freetype/
ftcid.h 58 * Retrieve the Registry/Ordering/Supplement triple (also known as the
69 * ordering ::
70 * The ordering, as a C~string, owned by the face.
88 const char* *ordering,
t1tables.h 358 FT_String* ordering; member in struct:CID_FaceInfoRec_
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
X509Principal.java 72 * specific ordering required for encoding or conversion to a string.
77 Vector ordering,
80 super(ordering, attributes);
  /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/freetype/include/freetype/internal/services/
svcid.h 32 const char* *ordering,
  /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:__anon3594
    [all...]
  /external/freetype/src/cff/
cffdrivr.c 444 const char* *ordering,
470 if ( ordering )
472 if ( cff->ordering == NULL )
473 cff->ordering = cff_index_get_sid_string( cff,
475 *ordering = cff->ordering;
cfftypes.h 271 FT_String* ordering; member in struct:CFF_FontRec_
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509Extensions.java 259 * Constructor from a table of extensions with ordering.
264 Vector ordering,
269 if (ordering == null)
275 e = ordering.elements();
X509Name.java 444 * following a specific ordering, you should use the constructor
445 * with the ordering specified below.
446 * @deprecated use an ordered constructor! The hashtable ordering is rarely correct
455 * Constructor from a table of attributes with ordering.
459 * construction process. The ordering vector should contain the OIDs
463 Vector ordering,
466 this(ordering, attributes, new X509DefaultEntryConverter());
470 * Constructor from a table of attributes with ordering.
474 * construction process. The ordering vector should contain the OIDs
481 Vector ordering,
    [all...]
  /external/icu4c/test/intltest/
bidiconf.cpp 56 int32_t ordering[1000]; member in class:BiDiConformanceTest
152 ordering[orderingCount++]=(int32_t)value;
435 // with the expected ordering that has them omitted.
450 continue; // BiDi control, omitted from expected ordering.
452 if(visualIndex<orderingCount && logicalIndex!=ordering[visualIndex]) {
453 errln("Wrong ordering value at visual index %d; expected %d actual %d",
454 (int)visualIndex, ordering[visualIndex], logicalIndex);
461 // which should match the length of the BidiTest.txt ordering.
463 errln("Wrong number of ordering values; expected %d actual %d",
469 UnicodeString eord("Expected ordering: ")
    [all...]
  /external/webkit/WebCore/css/
wml.css 134 -webkit-rtl-ordering: logical;
171 -webkit-rtl-ordering: logical;
html.css 327 -webkit-rtl-ordering: logical;
377 -webkit-rtl-ordering: logical;
481 -webkit-rtl-ordering: logical;
524 -webkit-rtl-ordering: logical;
  /prebuilt/linux-x86/toolchain/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:__anon13983
  /external/openssl/apps/
openssl-vms.cnf 76 preserve = no # keep passed DN ordering
345 ordering = yes # Is ordering defined for timestamps?
openssl.cnf 76 preserve = no # keep passed DN ordering
345 ordering = yes # Is ordering defined for timestamps?
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuBuilder.java 369 final int ordering = getOrdering(categoryOrder); local
371 final MenuItemImpl item = new MenuItemImpl(this, group, id, categoryOrder, ordering, title);
378 mItems.add(findInsertIndex(mItems, ordering), item);
647 * Returns the ordering across all items. This will grab the category from
654 * @return An ordering integer that can be used to order this item across
729 private static int findInsertIndex(ArrayList<MenuItemImpl> items, int ordering) {
732 if (item.getOrdering() <= ordering) {
    [all...]
MenuItemImpl.java 99 * @param group Item ordering grouping control. The item will be added after
104 * @param categoryOrder The ordering for this item.
107 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering,
127 mOrdering = ordering;
  /external/v8/src/
unicode-inl.h 146 #warning Unknown byte ordering
  /external/openssl/include/openssl/
ts.h 164 ordering BOOLEAN DEFAULT FALSE,
180 ASN1_BOOLEAN ordering; member in struct:TS_tst_info_st
448 int TS_TST_INFO_set_ordering(TS_TST_INFO *a, int ordering);
475 /* Set ordering to true in response. */
  /external/webkit/LayoutTests/fast/js/resources/
getOwnPropertyDescriptor.js 79 debug("Checking property ordering");

Completed in 637 milliseconds

1 2