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

1 2 3

  /libcore/luni/src/test/java/libcore/java/util/
ObjectsTest.java 20 import java.util.Objects;
28 assertEquals(0, Objects.compare(null, null, String.CASE_INSENSITIVE_ORDER));
29 assertEquals(0, Objects.compare("a", "A", String.CASE_INSENSITIVE_ORDER));
30 assertEquals(-1, Objects.compare("a", "b", String.CASE_INSENSITIVE_ORDER));
31 assertEquals(1, Objects.compare("b", "a", String.CASE_INSENSITIVE_ORDER));
41 assertTrue(Objects.deepEquals(null, null));
42 assertFalse(Objects.deepEquals(xs, null));
43 assertFalse(Objects.deepEquals(null, xs));
44 assertTrue(Objects.deepEquals(xs, xs));
45 assertTrue(Objects.deepEquals(xs, zs))
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
ObjectsTest.java 24 * Tests for {@link Objects}.
32 assertTrue(Objects.equal(1, 1));
33 assertTrue(Objects.equal(null, null));
35 // test distinct string objects
38 assertTrue(Objects.equal(s1, s2));
40 assertFalse(Objects.equal(s1, null));
41 assertFalse(Objects.equal(null, s1));
42 assertFalse(Objects.equal("foo", "bar"));
43 assertFalse(Objects.equal("1", 1));
47 int h1 = Objects.hashCode(1, "two", 3.0)
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 26 * Tests for {@link Objects}.
34 assertTrue(Objects.equal(1, 1));
35 assertTrue(Objects.equal(null, null));
37 // test distinct string objects
40 assertTrue(Objects.equal(s1, s2));
42 assertFalse(Objects.equal(s1, null));
43 assertFalse(Objects.equal(null, s1));
44 assertFalse(Objects.equal("foo", "bar"));
45 assertFalse(Objects.equal("1", 1));
49 int h1 = Objects.hashCode(1, "two", 3.0)
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
Objects.java 23 * Defines the same class as the java.util.Objects which is added in Java 7.
28 * platform/libcore/luni/src/main/java/java/util/Objects.java
30 public final class Objects {
31 private Objects() {}
85 * {@code Objects.hash(a, b, c)}.
  /libcore/luni/src/main/java/java/util/
Objects.java 22 * Utility methods for objects.
25 public final class Objects {
26 private Objects() {}
80 * {@code Objects.hash(a, b, c)}.
  /libcore/luni/src/main/java/libcore/util/
Objects.java 23 public final class Objects {
24 private Objects() {}
27 * Returns true if two possibly-null objects are equal.
  /external/guava/guava/src/com/google/common/base/
Objects.java 33 * {@code Object} methods with {@code Objects}</a>.
39 public final class Objects {
40 private Objects() {}
43 * Determines whether two possibly-null objects are equal. Returns:
52 * <p>This assumes that any non-null objects passed to this function conform
71 * return Objects.hashCode(getX(), getY(), getZ());
77 public static int hashCode(@Nullable Object... objects) {
78 return Arrays.hashCode(objects);
87 * Objects.toStringHelper(this)
91 * Objects.toStringHelper(this
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
GeneralRangeTest.java 21 import com.google.common.base.Objects;
81 assertEquals(Objects.equal(i, j), range.contains(j));
  /external/guava/guava-tests/test/com/google/common/collect/
GeneralRangeTest.java 22 import com.google.common.base.Objects;
83 assertEquals(Objects.equal(i, j), range.contains(j));
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 56 /// set of objects to the base layer along with the memory manager and
65 OwningObjectVec Objects;
81 Objects.push_back(std::move(Object));
86 BaseLayer.addObjectSet(Objects, std::move(MemMgr), std::move(Resolver));
  /external/llvm/tools/dsymutil/
DebugMap.h 55 /// for (const auto &DMO: DM->objects()) {
67 ObjectContainer Objects;
74 iterator_range<const_iterator> objects() const { function in class:llvm::dsymutil::DebugMap
78 const_iterator begin() const { return Objects.begin(); }
80 const_iterator end() const { return Objects.end(); }
  /frameworks/base/core/tests/inputmethodtests/src/android/os/
InputMethodSubtypeTest.java 24 import java.util.Objects;
72 assertFalse(Objects.equals(subtypeIw, subtypeHe));
73 assertFalse(Objects.equals(subtypeIw.hashCode(), subtypeHe.hashCode()));
SparseRectFArrayTest.java 25 import java.util.Objects;
256 assertFalse(Objects.equals(a, b));
CursorAnchorInfoTest.java 27 import java.util.Objects;
199 assertFalse(Objects.equals(reference, actual));
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 93 // Owns module info objects.
137 std::map<SymbolDesc, StringRef> Objects;
LLVMSymbolize.cpp 119 auto &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
127 const auto &SymbolMap = Type == SymbolRef::ST_Function ? Functions : Objects;
456 ObjectPair Objects = getOrCreateObjects(BinaryName, ArchName);
458 if (!Objects.first) {
463 DIContext *Context = DIContext::getDWARFContext(*Objects.second);
465 ModuleInfo *Info = new ModuleInfo(Objects.first, Context);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
BloomFilter.java 49 * BloomFilter is used to make objects in the scene have a glow effect.<br>
50 * There are 2 mode : Scene and Objects.<br>
52 * Object mode make objects glow according to their material's glowMap or their GlowColor<br>
60 * GlowMode specifies if the glow will be applied to the whole scene,or to objects that have aglow color or a glow map
69 * Apply bloom only to objects that have a glow map or a glow color.
71 Objects,
73 * Apply bloom to both bright parts of the scene and objects with glow map.
138 extractMat.setBoolean("Extract", glowMode != GlowMode.Objects);
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 25 import com.google.common.base.Objects;
123 if (containedKey && Objects.equal(value, get(key))) {
307 if (Objects.equal(value, getValue())) {
313 checkState(Objects.equal(value, get(getKey())),
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractBiMap.java 24 import com.google.common.base.Objects;
119 if (containedKey && Objects.equal(value, get(key))) {
303 if (Objects.equal(value, getValue())) {
309 checkState(Objects.equal(value, get(getKey())),
  /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...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 492 // We need to check the underlying objects of all arguments, not just
513 // repeated in the Objects list.
519 SmallVector<Value *, 4> Objects;
521 Objects, DL, /* MaxLookup = */ 0);
523 for (Value *O : Objects)
566 // 1. The noalias argument is not in the set of objects from which we
594 // underlying objects. If there is some non-noalias argument in our list
595 // of underlying objects, then we cannot add a scope because the fact
    [all...]
  /prebuilts/tools/common/fest/
fest-util-1.1.3.jar 
  /external/clang/lib/CodeGen/
CGObjC.cpp 105 llvm::AllocaInst *Objects = CreateMemTemp(ElementArrayType, "objects");
123 Builder.CreateStructGEP(Objects->getAllocatedType(), Objects, i),
143 Builder.CreateStructGEP(Objects->getAllocatedType(), Objects, i),
159 Args.add(RValue::get(Objects), ArgQT);
186 // The above message send needs these objects, but in ARC they are
276 // It's never necessary for class objects.
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]
  /libcore/benchmarks/libs/
caliper.jar 

Completed in 926 milliseconds

1 2 3