HomeSort by relevance Sort by last modified time
    Searched refs:Objects (Results 26 - 50 of 741) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/function/
BinaryOperator.java 27 import java.util.Objects;
58 Objects.requireNonNull(comparator);
73 Objects.requireNonNull(comparator);
Predicate.java 27 import java.util.Objects;
68 Objects.requireNonNull(other);
100 Objects.requireNonNull(other);
106 * to {@link Objects#equals(Object, Object)}.
112 * to {@link Objects#equals(Object, Object)}
116 ? Objects::isNull
BiConsumer.java 27 import java.util.Objects;
68 Objects.requireNonNull(after);
BiFunction.java 27 import java.util.Objects;
69 Objects.requireNonNull(after);
BiPredicate.java 27 import java.util.Objects;
72 Objects.requireNonNull(other);
104 Objects.requireNonNull(other);
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
Pair.java 19 import java.util.Objects;
41 return Objects.equals(mFirst, p.mFirst) && Objects.equals(mSecond, p.mSecond);
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
Edge.java 19 import com.google.common.base.Objects;
49 return Objects.equal(fromId, other.fromId) && Objects.equal(toId, other.toId);
53 return Objects.hashCode(fromId, toId);
Node.java 19 import com.google.common.base.Objects;
55 return Objects.equal(id, other.id)
56 && (ignoreSourceInComparisons || Objects.equal(source, other.source));
60 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
BindingEdge.java 19 import com.google.common.base.Objects;
56 return super.equals(other) && Objects.equal(type, other.type);
60 return 31 * super.hashCode() + Objects.hashCode(type);
DependencyEdge.java 19 import com.google.common.base.Objects;
50 return super.equals(other) && Objects.equal(injectionPoint, other.injectionPoint);
54 return 31 * super.hashCode() + Objects.hashCode(injectionPoint);
ImplementationNode.java 19 import com.google.common.base.Objects;
49 return super.equals(other) && Objects.equal(members, other.members);
53 return 31 * super.hashCode() + Objects.hashCode(members);
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 55 /// of abstract objects on the stack frame.
58 /// objects requested clients. These identifiers are negative integers for
59 /// fixed stack objects (such as arguments passed on the stack) or nonnegative
60 /// for objects that may be reordered. Instructions which refer to stack
61 /// objects use a special MO_FrameIndex operand to represent these frame
69 /// variable sized stack objects, it is safe to decide whether there will be
70 /// any variable sized objects before all stack objects are known (for
72 /// objects).
97 // default, fixed objects are immutable unless marked otherwise
    [all...]
  /libcore/luni/src/main/java/android/system/
StructPasswd.java 19 import libcore.util.Objects;
46 return Objects.toString(this);
StructTimeval.java 19 import libcore.util.Objects;
50 return Objects.toString(this);
  /libcore/ojluni/src/main/java/java/lang/
Iterable.java 28 import java.util.Objects;
73 Objects.requireNonNull(action);
StackTraceElement.java 28 import java.util.Objects;
71 this.declaringClass = Objects.requireNonNull(declaringClass, "Declaring class is null");
72 this.methodName = Objects.requireNonNull(methodName, "Method name is null");
191 * java.util.Objects#equals(Object, Object) Objects.equals}.
206 Objects.equals(methodName, e.methodName) &&
207 Objects.equals(fileName, e.fileName);
215 result = 31*result + Objects.hashCode(fileName);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/utils/
ArrayUtils.java 19 import java.util.Objects;
41 if (Objects.equals(array[i], value)) return i;
  /external/guava/guava-tests/test/com/google/common/base/
ToStringHelperTest.java 29 * Tests for {@link Objects#toStringHelper(Object)}.
38 String toTest = Objects.toStringHelper(this).toString();
43 String toTest = Objects.toStringHelper(this).toString();
49 String toTest = Objects.toStringHelper(new TestClass()).toString();
54 String toTest = Objects.toStringHelper(new TestClass()).toString();
60 String toTest = Objects.toStringHelper(new Object() {}).toString();
65 String toTest = Objects.toStringHelper(new Object() {}).toString();
71 String toTest = Objects.toStringHelper(TestClass.class).toString();
76 String toTest = Objects.toStringHelper(TestClass.class).toString();
81 String toTest = Objects.toStringHelper("FooBar").toString()
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
Collector.java 29 import java.util.Objects;
264 Objects.requireNonNull(supplier);
265 Objects.requireNonNull(accumulator);
266 Objects.requireNonNull(combiner);
267 Objects.requireNonNull(characteristics);
296 Objects.requireNonNull(supplier);
297 Objects.requireNonNull(accumulator);
298 Objects.requireNonNull(combiner);
299 Objects.requireNonNull(finisher);
300 Objects.requireNonNull(characteristics)
    [all...]
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
Transaction.java 22 import java.util.Objects;
86 return Objects.equals(mItemId, that.mItemId) && Objects.equals(mUserId, that.mUserId) &&
87 Objects.equals(mClientNonce, that.mClientNonce);
92 return Objects.hash(mItemId, mUserId, mClientNonce);
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
Transaction.java 22 import java.util.Objects;
86 return Objects.equals(mItemId, that.mItemId) && Objects.equals(mUserId, that.mUserId) &&
87 Objects.equals(mClientNonce, that.mClientNonce);
92 return Objects.hash(mItemId, mUserId, mClientNonce);
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/
Transaction.java 22 import java.util.Objects;
86 return Objects.equals(mItemId, that.mItemId) && Objects.equals(mUserId, that.mUserId) &&
87 Objects.equals(mClientNonce, that.mClientNonce);
92 return Objects.hash(mItemId, mUserId, mClientNonce);
  /frameworks/base/core/java/android/view/
DisplayAdjustments.java 22 import java.util.Objects;
75 hash = hash * 31 + Objects.hashCode(mCompatInfo);
76 hash = hash * 31 + Objects.hashCode(mConfiguration);
86 return Objects.equals(daj.mCompatInfo, mCompatInfo) &&
87 Objects.equals(daj.mConfiguration, mConfiguration);
  /external/guava/guava-tests/benchmark/com/google/common/base/
ToStringHelperBenchmark.java 23 * Some microbenchmarks for the {@link Objects.ToStringHelper} class.
33 private static void addEntries(Objects.ToStringHelper helper) {
47 Objects.ToStringHelper helper = Objects.toStringHelper("klass").omitNullValues();
  /frameworks/base/core/java/android/util/
Pair.java 19 import java.util.Objects;
22 * Container to ease passing around a tuple of two objects. This object provides a sensible
24 * objects.
42 * Checks the two objects for equality by delegating to their respective
46 * @return true if the underlying objects of the Pair are both considered
55 return Objects.equals(p.first, first) && Objects.equals(p.second, second);
59 * Compute a hash code using the hash codes of the underlying objects

Completed in 374 milliseconds

12 3 4 5 6 7 8 91011>>