HomeSort by relevance Sort by last modified time
    Searched full:exclusive (Results 76 - 100 of 2339) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ReplaceableString.java 120 * @param srcLimit the ending index to copy, exclusive;
137 * @param limit the ending index, exclusive; <code>start <= limit
151 * @param limit the ending index, exclusive; <code>start <= limit
173 * @param limit the ending index, exclusive; <code>start <= limit <=
Replaceable.java 27 * start offset is inclusive, and the limit offset is exclusive.
100 * @param srcLimit the ending index to copy, exclusive;
120 * @param limit the ending index, exclusive; <code>start <= limit
140 * @param limit the ending index, exclusive; <code>start <= limit
167 * @param limit the ending index, exclusive; <code>start <= limit <=
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
Exhaustive.java 12 * Applications of the type qualifier with different values are exclusive, and
  /external/libxml2/result/
dav11.sax 18 SAX.characters(exclusive, 9)
dav19.sax 24 SAX.characters(Exclusive, 9)
  /external/libxml2/result/schemas/
element-err_0_0.err 8 ./test/schemas/element-err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attributes 'default' and 'fixed' are mutually exclusive.
10 ./test/schemas/element-err_0.xsd:22: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attributes 'ref' and 'name' are mutually exclusive.
18 ./test/schemas/element-err_0.xsd:30: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attributes 'default' and 'fixed' are mutually exclusive.
19 ./test/schemas/element-err_0.xsd:31: element complexType: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attribute 'type' and the <complexType> child are mutually exclusive.
  /external/parameter-framework/test/test-platform/
README.md 10 - Create criteria from a name, a type (exclusive or inclusive), states (the
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 35 //makes fsType 0-3 exclusive
  /frameworks/base/tools/split-select/
RuleGenerator.h 30 // Generate rules for a Split given the group of mutually exclusive splits it belongs to
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
message_layer.c 28 * which is useful for mutually exclusive messages such
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
message_layer.c 28 * which is useful for mutually exclusive messages such
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
nlm_prot.h 29 bool_t exclusive; member in struct:nlm_holder
75 bool_t exclusive; member in struct:nlm_lockargs
85 bool_t exclusive; member in struct:nlm_cancargs
92 bool_t exclusive; member in struct:nlm_testargs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
nlm_prot.h 29 bool_t exclusive; member in struct:nlm_holder
75 bool_t exclusive; member in struct:nlm_lockargs
85 bool_t exclusive; member in struct:nlm_cancargs
92 bool_t exclusive; member in struct:nlm_testargs
nlm_prot.x 53 bool exclusive;
93 bool exclusive;
102 bool exclusive;
108 bool exclusive;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLFrame.java 32 * @param endCallIndex index of the last call in this frame (exclusive).
  /external/vixl/
README.md 83 Exclusive-Access Instructions
86 All exclusive-access instructions are supported, but the simulator cannot
90 * A local monitor is simulated, so simulated exclusive loads and stores execute
92 * The global monitor is simulated by occasionally causing exclusive-access
101 * A pair of load-/store-exclusive instructions will only succeed if they have
104 will clear the exclusive monitor.
106 exclusive monitor will sometimes be left intact after these instructions.
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuItemImpl.java 75 private static final int EXCLUSIVE = 0x00000004;
429 public void setExclusiveCheckable(boolean exclusive) {
430 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
434 return (mFlags & EXCLUSIVE) != 0;
442 if ((mFlags & EXCLUSIVE) != 0) {
444 // exclusive checkable group
554 // Mutually exclusive options selected!
556 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.")
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuItemImpl.java 80 private static final int EXCLUSIVE = 0x00000004;
467 public void setExclusiveCheckable(boolean exclusive) {
468 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
472 return (mFlags & EXCLUSIVE) != 0;
482 if ((mFlags & EXCLUSIVE) != 0) {
484 // exclusive checkable group
598 // Mutually exclusive options selected!
600 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.")
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.java 31 * Constructs a bit set to contain bits up to the given index (exclusive).
33 * @param max {@code >= 0;} the maximum bit index (exclusive)
42 * Gets the maximum index (exclusive) for the given bit set.
45 * @return {@code >= 0;} the maximum index (exclusive) that may be set
148 * @param end {@code >= 0;} index of the last bit in the range (exclusive)
  /dalvik/dx/src/com/android/dx/util/
Bits.java 31 * Constructs a bit set to contain bits up to the given index (exclusive).
33 * @param max {@code >= 0;} the maximum bit index (exclusive)
42 * Gets the maximum index (exclusive) for the given bit set.
45 * @return {@code >= 0;} the maximum index (exclusive) that may be set
148 * @param end {@code >= 0;} index of the last bit in the range (exclusive)
  /external/dexmaker/src/dx/java/com/android/dx/util/
Bits.java 31 * Constructs a bit set to contain bits up to the given index (exclusive).
33 * @param max {@code >= 0;} the maximum bit index (exclusive)
42 * Gets the maximum index (exclusive) for the given bit set.
45 * @return {@code >= 0;} the maximum index (exclusive) that may be set
148 * @param end {@code >= 0;} index of the last bit in the range (exclusive)
  /libcore/luni/src/main/java/java/util/
TreeMap.java 698 Bound fromBound = fromInclusive ? INCLUSIVE : EXCLUSIVE;
699 Bound toBound = toInclusive ? INCLUSIVE : EXCLUSIVE;
704 return new BoundedMap(true, fromInclusive, INCLUSIVE, toExclusive, EXCLUSIVE);
708 Bound toBound = inclusive ? INCLUSIVE : EXCLUSIVE;
713 return new BoundedMap(true, null, NO_BOUND, toExclusive, EXCLUSIVE);
717 Bound fromBound = inclusive ? INCLUSIVE : EXCLUSIVE;
    [all...]
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 120 mutex_shared_unlock(&mu1); // expected-warning {{releasing mutex 'mu1' using shared access, expected exclusive access}}
124 mutex_exclusive_unlock(&mu1); // expected-warning {{releasing mutex 'mu1' using exclusive access, expected shared access}}
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SortedMapTestSuiteBuilder.java 67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
69 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
SortedSetTestSuiteBuilder.java 66 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));

Completed in 183 milliseconds

1 2 34 5 6 7 8 91011>>