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

1 2 3 4 5 6 7 8 91011

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowGeocoder.java 15 private static boolean isPresent = true;
20 public static boolean isPresent() {
21 return isPresent;
36 /** Statically sets the value to be returned by {@link #isPresent()}. */
38 isPresent = value;
46 isPresent = true;
  /frameworks/compile/libbcc/lib/
RSScreenFunctionsPass.cpp 39 bool isPresent(std::vector<std::string> &list, const std::string &name) {
62 if (isPresent(whiteList, FName.str()))
RSIsThreadablePass.cpp 81 bool isPresent(std::vector<std::string> &list, const std::string &name) {
106 if (isPresent(nonThreadableFns, F.getName().str())) {
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Scope.java 70 return scopeAnnotation.isPresent() ? new Scope(scopeAnnotation.get()) : UNSCOPED;
76 public boolean isPresent() {
94 * <p>Make sure that the scope is actually {@link #isPresent() present} before calling as it will
105 * <p>Make sure that the scope is actually {@link #isPresent() present} before calling as it will
  /external/guava/guava/src/com/google/common/base/
Absent.java 42 @Override public boolean isPresent() {
Optional.java 103 public abstract boolean isPresent();
109 * @throws IllegalStateException if the instance is absent ({@link #isPresent} returns
230 if (optional.isPresent()) {
Present.java 39 @Override public boolean isPresent() {
  /external/guava/guava-gwt/src/com/google/common/base/
GwtSerializationDependencies.java 45 @Override public boolean isPresent() {
  /frameworks/base/location/java/android/location/
Geocoder.java 44 * isPresent() method to determine whether a Geocoder implementation
59 public static boolean isPresent() {
65 Log.e(TAG, "isPresent: got RemoteException", e);
  /libcore/ojluni/src/main/java/java/util/
OptionalDouble.java 34 * If a value is present, {@code isPresent()} will return {@code true} and
54 private final boolean isPresent;
64 this.isPresent = false;
75 * Instead, use {@link #isPresent()}.
89 this.isPresent = true;
110 * @see OptionalDouble#isPresent()
113 if (!isPresent) {
124 public boolean isPresent() {
125 return isPresent;
137 if (isPresent)
    [all...]
OptionalInt.java 34 * If a value is present, {@code isPresent()} will return {@code true} and
54 private final boolean isPresent;
64 this.isPresent = false;
75 * Instead, use {@link #isPresent()}.
89 this.isPresent = true;
111 * @see OptionalInt#isPresent()
114 if (!isPresent) {
125 public boolean isPresent() {
126 return isPresent;
138 if (isPresent)
    [all...]
OptionalLong.java 34 * If a value is present, {@code isPresent()} will return {@code true} and
54 private final boolean isPresent;
64 this.isPresent = false;
75 * Instead, use {@link #isPresent()}.
89 this.isPresent = true;
110 * @see OptionalLong#isPresent()
113 if (!isPresent) {
124 public boolean isPresent() {
125 return isPresent;
137 if (isPresent)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/PDB/Native/
HashTable.h 64 bool isPresent(uint32_t K) const { return Present.test(K); }

Completed in 545 milliseconds

1 2 3 4 5 6 7 8 91011