HomeSort by relevance Sort by last modified time
    Searched defs:ALL (Results 26 - 50 of 636) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 27 * and together they contain all the nodes in the document.</p>
71 * the following axis contains all nodes in the same document as the
78 * The following-sibling axis contains all the following siblings of the
103 * The preceding axis contains all nodes in the same document as the context
110 * The preceding-sibling axis contains all the preceding siblings of the
132 // All axis past this are absolute.
135 * A non-xpath axis, returns all nodes in the tree from and including the
138 public static final int ALL = 16;
141 * A non-xpath axis, returns all nodes that aren't namespaces or attributes,
147 * A non-xpath axis, returns all nodes that aren't namespaces or attributes,
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
ProviderConfigurationPermission.java 18 * <li>ProviderConfigurationPermission("BC"); // enable all permissions</li>
37 private static final int ALL =
47 private static final String ALL_STR = "all";
55 this.actions = "all";
56 this.permissionMask = ALL;
102 mask |= ALL;
  /external/icu/icu4c/source/common/
unisetspan.h 7 * Corporation and others. All Rights Reserved.
37 * or built for all and may be used many times.
47 ALL = 0x3f,
61 // Copy constructor. Assumes which==ALL for a frozen set.
90 // All code points in the string are contained in the parent set.
126 // Number of bytes for all UTF-8 versions of strings together.
133 // Set up for all variants of span()?
134 UBool all; member in class:UnicodeSetStringSpan
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
Permissions.java 29 public static final Permissions ALL = new Permissions("rwxrwxrwx");
31 public static final Permissions DEFAULT = ALL;
  /frameworks/base/core/java/android/service/carrier/
CarrierIdentifier.java 197 int ALL = 0;
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
ObservableArrayListTest.java 28 private static final int ALL = 0;
45 mNotifications.add(new ListChange(ALL, 0, 0));
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 44 lr.setLevel(Level.ALL);
45 assertSame(lr.getLevel(), Level.ALL);
69 //All threadID must be different, based on the ThreadLocal.java ID
  /libcore/ojluni/src/main/java/java/util/stream/
MatchOps.java 2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
38 * include match-all, match-any, and match-none.
47 * Enum describing quantified match options -- all match, any match, none
51 /** Do all elements match the predicate? */
55 ALL(false, false),
75 * @param matchKind the kind of quantified match (all, any, none)
104 * @param matchKind the kind of quantified match (all, any, none)
133 * @param matchKind the kind of quantified match (all, any, none)
163 * @param matchKind the kind of quantified match (all, any, none)
191 * elements of a stream and determines whether all, any or none of thos
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/data/
Weekdays.java 68 /** All valid bits set. */
71 /** An instance with all weekdays in the weekly repeat cycle. */
72 public static final Weekdays ALL = Weekdays.fromBits(ALL_DAYS);
108 * @param calendarDays an array containing any or all of the following values
  /system/update_engine/scripts/update_payload/
common.py 1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
50 ALL = (REPLACE, REPLACE_BZ, MOVE, BSDIFF, SOURCE_COPY, SOURCE_BSDIFF, ZERO,
170 base_name: the base name for all objects
  /external/guava/guava/src/com/google/common/collect/
ImmutableRangeSet.java 49 private static final ImmutableRangeSet<Comparable<?>> ALL =
50 new ImmutableRangeSet<Comparable<?>>(ImmutableList.of(Range.<Comparable<?>>all()));
61 * Returns an immutable range set containing the single range {@link Range#all()}.
64 static <C extends Comparable> ImmutableRangeSet<C> all() { method in class:ImmutableRangeSet
65 return (ImmutableRangeSet<C>) ALL;
76 } else if (range.equals(Range.all())) {
77 return all();
90 } else if (rangeSet.encloses(Range.<C>all())) {
91 return all();
246 return complement = all();
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyMetaInfo.java 7 * others. All Rights Reserved. *
117 private static final CurrencyFilter ALL = new CurrencyFilter(
121 * Returns a filter that accepts all currency data.
124 public static CurrencyFilter all() { method in class:CurrencyMetaInfo.CurrencyFilter
125 return ALL;
129 * Returns a filter that accepts all currencies in use as of the current date.
134 return ALL.withDate(new Date());
138 * Returns a filter that accepts all currencies ever used in the given region.
144 return ALL.withRegion(region);
154 return ALL.withCurrency(currency)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyMetaInfo.java 6 * others. All Rights Reserved. *
123 private static final CurrencyFilter ALL = new CurrencyFilter(
127 * Returns a filter that accepts all currency data.
131 public static CurrencyFilter all() { method in class:CurrencyMetaInfo.CurrencyFilter
132 return ALL;
136 * Returns a filter that accepts all currencies in use as of the current date.
142 return ALL.withDate(new Date());
146 * Returns a filter that accepts all currencies ever used in the given region.
153 return ALL.withRegion(region);
164 return ALL.withCurrency(currency)
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
BaksmaliOptions.java 3 * All rights reserved.
64 public static final int ALL = 1;
  /external/tensorflow/tensorflow/core/lib/strings/
scanner.h 1 /* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
32 // by default, all processed characters are captured.
36 // parts - e.g., class LETTER_DIGIT means the class includes all letters and
37 // all digits.
44 ALL,
187 case ALL:
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
Tracer.java 53 ALL
133 case ALL:
  /frameworks/base/core/java/android/os/
UserHandle.java 37 /** @hide A user id to indicate all users on the device */
40 /** @hide A user handle to indicate all users on the device */
41 public static final UserHandle ALL = new UserHandle(USER_ALL);
229 * Returns the gid shared between all apps with this userId.
343 if ("all".equals(arg)) {
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
AnimationProps.java 43 @IntDef({ALL, TRANSLATION_X, TRANSLATION_Y, TRANSLATION_Z, ALPHA, SCALE, BOUNDS})
46 public static final int ALL = 0;
66 * Creates an animation with a default {@param duration} and {@param interpolator} for all
74 * Creates an animation with a default {@param duration} and {@param interpolator} for all
84 * {@param interpolator} for all properties in this animation.
92 * {@param interpolator} for all properties in this animation.
96 setStartDelay(ALL, startDelay);
97 setDuration(ALL, duration);
98 setInterpolator(ALL, interpolator);
146 return mPropStartDelay.get(ALL, 0)
    [all...]
  /frameworks/base/services/core/java/com/android/server/policy/
PolicyControl.java 44 * to force transient status for all apps except a specific package:
186 private static final String ALL = "*";
212 return mBlacklist.contains(packageName) || mBlacklist.contains(ALL);
216 return mWhitelist.contains(ALL) || mWhitelist.contains(packageName);
  /frameworks/minikin/libs/minikin/
Locale.h 48 ALL = 0b00011111,
67 // It does not capture all possible information, only what directly affects text layout:
  /hardware/google/av/media/sfplugin/
CCodecConfig.h 76 ALL = ~0U,
244 /// Queries subscribed indices (which contains all SDK-exposed values) and updates
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
MatchOpTest.java 2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
79 private enum Kind { ANY, ALL, NONE }
89 put(Kind.ALL, p -> s -> s.allMatch(p));
108 assertPredicates(countTo(0), Kind.ALL, INTEGER_PREDICATES, true, true, true, true);
112 assertPredicates(countTo(1), Kind.ALL, INTEGER_PREDICATES, true, false, false, true);
116 assertPredicates(countTo(5), Kind.ALL, INTEGER_PREDICATES, true, false, false, false);
179 put(Kind.ALL, p -> s -> s.allMatch(p));
193 assertIntPredicates(() -> IntStream.range(0, 0), Kind.ALL, INT_PREDICATES, true, true, true, true);
197 assertIntPredicates(() -> IntStream.range(1, 2), Kind.ALL, INT_PREDICATES, true, false, false, true);
201 assertIntPredicates(() -> IntStream.range(1, 6), Kind.ALL, INT_PREDICATES, true, false, false, false)
    [all...]
  /packages/experimental/KBars/app/src/main/java/js/kbars/
FitSystemWindowsActivity.java 37 public static Flag[] ALL = find();
135 for (Flag flag : Flag.ALL) {
158 for (Flag flag : Flag.ALL) {
  /toolchain/binutils/binutils-2.27/opcodes/
xgate-opc.c 97 #define ALL XGATE_V1|XGATE_V2|XGATE_V3
105 { "adc", OP_TRI, "00011rrrrrrrrr11", 2, 0x1803, 1, 1, CHG_NZVC, ALL},
106 { "add", OP_TRI, "00011rrrrrrrrr10", 2, 0x1802, 1, 1, CHG_NZVC, ALL},
107 { "addh", OP_IMM8, "11101rrriiiiiiii", 2, 0xE800, 1, 1, CHG_NZVC, ALL},
108 { "addl", OP_IMM8, "11100rrriiiiiiii", 2, 0xE000, 1, 1, CHG_NZVC, ALL},
109 { "and", OP_TRI, "00010rrrrrrrrr00", 2, 0x1000, 1, 1, CHG_NZV, ALL},
110 { "andh", OP_IMM8, "10001rrriiiiiiii", 2, 0x8800, 1, 1, CHG_NZV, ALL},
111 { "andl", OP_IMM8, "10000rrriiiiiiii", 2, 0x8000, 1, 1, CHG_NZV, ALL},
112 { "asr", OP_IMM4, "00001rrriiii1001", 2, 0x0809, 1, 1, CHG_NZVC, ALL},
113 { "asr", OP_DYA, "00001rrrrrr10001", 2, 0x0811, 1, 1, CHG_NZVC, ALL},
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
HandlerTest.java 74 assertSame(h.getLevel(), Level.ALL);
101 assertSame(h.getLevel(), Level.ALL);

Completed in 539 milliseconds

12 3 4 5 6 7 8 91011>>