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

1 2 3 4 5 6 7 8 91011>>

  /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;
UniqueDummy.java 1 package com.example.objects;
OuterDummy2.java 1 package com.example.objects;
  /external/javassist/src/main/javassist/bytecode/
LongVector.java 22 private ConstInfo[][] objects; field in class:LongVector
26 objects = new ConstInfo[VSIZE][];
32 objects = new ConstInfo[vsize][];
38 public int capacity() { return objects.length * ASIZE; }
44 return objects[i >> ABITS][i & (ASIZE - 1)];
50 int len = objects.length;
53 System.arraycopy(objects, 0, newObj, 0, len);
54 objects = newObj;
57 if (objects[nth] == null)
58 objects[nth] = new ConstInfo[ASIZE]
    [all...]
  /art/runtime/gc/collector/
object_byte_pair.h 28 : objects(num_objects), bytes(num_bytes) {}
30 objects += other.objects;
33 // Number of objects which were freed.
34 uint64_t objects; member in struct:art::gc::collector::ObjectBytePair
35 // Freed bytes are signed since the GC can free negative bytes if it promotes objects to a space
  /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/toolchain-utils/binary_search_tool/full_bisect_test/
run-test-nowrapper.sh 33 rm -f good-objects
34 rm -f bad-objects
36 ln -s good-objects-permanent good-objects
37 ln -s bad-objects-permanent bad-objects
44 if [[ ! -f good-objects-permanent/build.o ]] ; then
55 mv work/*.o good-objects-permanent/.
62 mv work/*.o bad-objects-permanent/.
  /art/test/920-objects/src/art/
Test920.java 50 Object[] objects = new Object[] { local
59 int hashes[] = new int[objects.length];
61 for (int i = 0; i < objects.length; i++) {
62 hashes[i] = getObjectHashCode(objects[i]);
66 for (int i = 0; i < objects.length; i++) {
67 int ihash = System.identityHashCode(objects[i]);
69 throw new RuntimeException(objects[i] + ": " + hashes[i] + " vs " + ihash);
76 for (int i = 0; i < objects.length; i++) {
77 int newhash = getObjectHashCode(objects[i]);
79 throw new RuntimeException(objects[i] + ": " + hashes[i] + " vs " + newhash)
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenManager.java 51 private final ArrayList<BaseTween<?>> objects = new ArrayList<BaseTween<?>>(20); field in class:TweenManager
60 if (!objects.contains(object)) objects.add(object);
70 for (int i=0, n=objects.size(); i<n; i++) {
71 BaseTween<?> obj = objects.get(i);
82 for (int i=0, n=objects.size(); i<n; i++) {
83 BaseTween<?> obj = objects.get(i);
93 for (int i=0, n=objects.size(); i<n; i++) {
94 BaseTween<?> obj = objects.get(i);
104 for (int i=0, n=objects.size(); i<n; i++)
    [all...]
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...]
  /build/kati/testcase/
filter-out.mk 0 objects=main1.o foo.o main2.o bar.o
6 echo $(filter-out $(mains),$(objects))
1 objects=main1.o foo.o main2.o bar.o macro
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
DefaultOsBackupImpl.java 27 private BackupInterface[] objects; field in class:DefaultOsBackupImpl
30 objects = new BackupInterface[OsBackupInterface.TAG_MAX + 1];
38 objects[tag] = (BackupInterface)obj;
42 * Return the tracked objects to subclasses.
45 return objects;
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
String.java 23 import org.apache.xpath.objects.XObject;
24 import org.apache.xpath.objects.XString;
  /external/flatbuffers/go/
doc.go 2 // objects.
  /external/robolectric-shadows/processor/src/test/resources/org/robolectric/annotation/processing/shadows/
ShadowRealObjectWithWrongType.java 5 import com.example.objects.Dummy;
6 import com.example.objects.UniqueDummy;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollArrayAdapter.java 41 public ScrollArrayAdapter(Context context, int textViewResourceId, T[] objects) {
42 super(context, textViewResourceId, objects);
46 T[] objects) {
47 super(context, resource, textViewResourceId, objects);
51 public ScrollArrayAdapter(Context context, int textViewResourceId, List<T> objects) {
52 super(context, textViewResourceId, objects);
56 List<T> objects) {
57 super(context, resource, textViewResourceId, objects);
  /external/autotest/client/cros/
dbus_util.py 50 """Get objects that have a particular interface via a property manager.
58 None, we'll return only objects in the remote service whose
73 objects = dbus2primitive(object_manager.GetManagedObjects())
74 logging.debug('Saw objects %r', objects)
76 objects = [(path, interfaces)
77 for path, interfaces in objects.iteritems()
80 objects = [(path, interfaces)
81 for path, interfaces in objects
83 objects = dict(objects
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
TestViewDataSource.java 20 List<JSONObject> objects = super.handleJsonResult(result); local
21 for (JSONObject object : objects) {
24 return objects;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
UnknownFieldSetLite.java 80 Object[] objects = Arrays.copyOf(first.objects, count); local
81 System.arraycopy(second.objects, 0, objects, first.count, second.count);
82 return new UnknownFieldSetLite(count, tags, objects, true /* isMutable */);
98 private Object[] objects; field in class:UnknownFieldSetLite
120 private UnknownFieldSetLite(int count, int[] tags, Object[] objects, boolean isMutable) {
123 this.objects = objects;
156 output.writeUInt64(fieldNumber, (Long) objects[i])
    [all...]
  /cts/apps/CameraITS/tests/scene0/
test_camera_properties.py 17 import its.objects
37 print "JPG sizes:", its.objects.get_available_output_sizes("jpg", props)
38 print "RAW sizes:", its.objects.get_available_output_sizes("raw", props)
39 print "YUV sizes:", its.objects.get_available_output_sizes("yuv", props)
  /cts/apps/CameraITS/tests/scene1/
test_latching.py 18 import its.objects
38 _,fmt = its.objects.get_fastest_manual_capture_settings(props)
47 its.objects.manual_capture_request(s, e, 0.0, True, props),
48 its.objects.manual_capture_request(s, e, 0.0, True, props),
49 its.objects.manual_capture_request(s*2,e, 0.0, True, props),
50 its.objects.manual_capture_request(s*2,e, 0.0, True, props),
51 its.objects.manual_capture_request(s, e, 0.0, True, props),
52 its.objects.manual_capture_request(s, e, 0.0, True, props),
53 its.objects.manual_capture_request(s, e*2, 0.0, True, props),
54 its.objects.manual_capture_request(s, e, 0.0, True, props)
    [all...]

Completed in 926 milliseconds

1 2 3 4 5 6 7 8 91011>>