HomeSort by relevance Sort by last modified time
    Searched full:objects (Results 1 - 25 of 21490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython3/Objects/
README 1 Source files for various builtin objects
  /external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_objects/
00_Descriptions.txt 2 tpmtoken_objects display public and private objects
4 tpmtoken_objects display only public objects
  /external/robolectric-shadows/processor/src/test/java/com/example/objects/
AnyObject.java 1 package com.example.objects;
Dummy.java 1 package com.example.objects;
Private.java 1 package com.example.objects;
OuterDummy.java 1 package com.example.objects;
ParameterizedDummy.java 1 package com.example.objects;
  /art/test/102-concurrent-gc/
info.txt 1 Test that attempts to hide objects from a concurrently running GC. The
2 concurrent GC should locate the "hidden" objects through a write-barrier.
  /libcore/luni/src/test/java/libcore/java/util/
ObjectsTest.java 20 import java.util.Objects;
29 assertEquals(0, Objects.compare(null, null, String.CASE_INSENSITIVE_ORDER));
30 assertEquals(0, Objects.compare("a", "A", String.CASE_INSENSITIVE_ORDER));
31 assertEquals(-1, Objects.compare("a", "b", String.CASE_INSENSITIVE_ORDER));
32 assertEquals(1, Objects.compare("b", "a", String.CASE_INSENSITIVE_ORDER));
42 assertTrue(Objects.deepEquals(null, null));
43 assertFalse(Objects.deepEquals(xs, null));
44 assertFalse(Objects.deepEquals(null, xs));
45 assertTrue(Objects.deepEquals(xs, xs));
46 assertTrue(Objects.deepEquals(xs, zs))
    [all...]
  /external/autotest/client/tests/qemu_iotests/
qemu-iotests.tar.bz2 
  /art/test/114-ParallelGC/
info.txt 1 Imported from oat tests. Allocates and frees objects with multiple threads.
  /art/test/152-dead-large-object/
info.txt 1 Test that large objects are freed properly after a GC.
  /art/test/540-checker-rtp-bug/
info.txt 1 Test that we set the proper types for objects (b/25008765).
  /external/clang/test/CodeGen/
2007-04-05-PadBeforeZeroLengthField.c 6 union A objects[]; member in struct:B
8 void foo(union A * objects, struct B *array, unsigned long k)
9 { array->objects[k] = objects[k]; }
  /external/flatbuffers/go/
doc.go 2 // objects.
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
package.html 5 <p>Matchers that inspect objects and classes.</p>
  /prebuilts/misc/common/robolectric/3.1.1/
PREBUILT 1 The objects in this lib directory are sourced from prebuilts/maven_repo/robolectric
  /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...]
  /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...]
  /art/test/072-reachability-fence/
info.txt 1 Check that reachabilityFence() prevents garbage collection of objects only referred to by a dead
4 This is not very convincing, since we currently usually keep such objects around anyway.
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
package.html 5 <p>Fundamental matchers of objects and values, and composite matchers.</p>
  /external/compiler-rt/cmake/Modules/
CompilerRTLink.cmake 3 # OBJECTS <list of input objects>
7 cmake_parse_arguments(SOURCE "" "" "OBJECTS;LINKFLAGS;DEPS" ${ARGN})
  /external/error_prone/jFormatString/
jFormatString-3.0.0-sources.zip 
  /external/clang/test/SemaCXX/
address-space-newdelete.cpp 9 (void)new int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
10 (void)new __attribute__((address_space(1))) int; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
11 (void)new int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
12 (void)new __attribute__((address_space(1))) int [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
15 (void)new (p) int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
16 (void)new (p) __attribute__((address_space(1))) int; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
17 (void)new (p) int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
18 (void)new (p) __attribute__((address_space(1))) int [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
22 delete ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1'}}
23 delete [] ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1'}
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Pool.java 6 * A light pool of objects that can be resused to avoid allocation.
10 private final ArrayList<T> objects; field in class:Pool
16 this.objects = new ArrayList<T>(initCapacity);
23 obj = objects.isEmpty() ? create() : objects.remove(0);
33 if (!objects.contains(obj)) {
35 objects.add(obj);
40 objects.clear();
44 return objects.size();
48 objects.ensureCapacity(minCapacity)
    [all...]

Completed in 335 milliseconds

1 2 3 4 5 6 7 8 91011>>