Home
last modified time | relevance | path

Searched refs:objects (Results 1 – 25 of 801) sorted by relevance

12345678910>>...33

/external/javassist/src/main/javassist/bytecode/
DLongVector.java22 private ConstInfo[][] objects; field in LongVector
26 objects = new ConstInfo[VSIZE][]; in LongVector()
32 objects = new ConstInfo[vsize][]; in LongVector()
38 public int capacity() { return objects.length * ASIZE; } in capacity()
44 return objects[i >> ABITS][i & (ASIZE - 1)]; in elementAt()
50 int len = objects.length; in addElement()
53 System.arraycopy(objects, 0, newObj, 0, len); in addElement()
54 objects = newObj; in addElement()
57 if (objects[nth] == null) in addElement()
58 objects[nth] = new ConstInfo[ASIZE]; in addElement()
[all …]
/external/eigen/unsupported/Eigen/src/BVH/
DKdBVH.h34 void operator()(const ObjectList &objects, BoxIter boxBegin, BoxIter boxEnd, VolumeList &outBoxes) in operator()
37 eigen_assert(outBoxes.size() == objects.size()); in operator()
43 void operator()(const ObjectList &objects, int, int, VolumeList &outBoxes)
45 outBoxes.reserve(objects.size());
46 for(int i = 0; i < (int)objects.size(); ++i)
47 outBoxes.push_back(bounding_box(objects[i]));
96 objects.clear();
100 objects.insert(objects.end(), begin, end);
101 int n = static_cast<int>(objects.size());
110 … internal::get_boxes_helper<ObjectList, VolumeList, BIter>()(objects, boxBegin, boxEnd, objBoxes);
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectManager.java82 FixedSizeArray<BaseObject> objects = getObjects(); in update() local
83 final int count = objects.getCount(); in update()
86 final Object[] objectArray = objects.getArray(); in update()
98 objects.swapWithLast(i); in update()
99 objects.removeLast(); in update()
124 objects.add(gameObject); in update()
159 FixedSizeArray<BaseObject> objects = getObjects(); in destroyAll() local
160 final int count = objects.getCount(); in destroyAll()
162 mMarkedForDeathObjects.add((GameObject)objects.get(i)); in destroyAll()
163 objects.remove(i); in destroyAll()
DRenderSystem.java61 private void clearQueue(FixedSizeArray<BaseObject> objects) { in clearQueue() argument
62 final int count = objects.getCount(); in clearQueue()
63 final Object[] objectArray = objects.getArray(); in clearQueue()
68 objects.removeLast(); in clearQueue()
82 FixedSizeArray<BaseObject> objects = mRenderQueues[lastQueue].getObjects(); in swap() local
83 clearQueue(objects); in swap()
93 FixedSizeArray<BaseObject> objects = mRenderQueues[x].getObjects(); in emptyQueues() local
94 clearQueue(objects); in emptyQueues()
/external/clang/test/CodeGen/
D2007-04-05-PadBeforeZeroLengthField.c6 union A objects[]; member
8 void foo(union A * objects, struct B *array, unsigned long k) in foo() argument
9 { array->objects[k] = objects[k]; } in foo()
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DSupport_MessageFormat.java53 Object[] objects = new Object[] { hamburgers, new Double(3.5), in t_format_with_FieldPosition() local
59 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15); in t_format_with_FieldPosition()
62 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0, in t_format_with_FieldPosition()
64 t_FormatWithField(3, format, objects, null, in t_format_with_FieldPosition()
68 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0); in t_format_with_FieldPosition()
69 t_FormatWithField(5, format, objects, null, in t_format_with_FieldPosition()
80 Object[] objects = new Object[] { hamburgers, new Double(3.5), in t_formatToCharacterIterator() local
83 t_Format(1, objects, format, getMessageVector1()); in t_formatToCharacterIterator()
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
DSerializationTest.java488 public static void verifyGolden(TestCase test, Object[] objects) in verifyGolden() argument
491 Assert.assertFalse("Empty array", objects.length == 0); in verifyGolden()
492 verifyGolden(test, objects, defineComparator(test, objects[0])); in verifyGolden()
513 public static void verifyGolden(TestCase test, Object[] objects, in verifyGolden() argument
516 Assert.assertFalse("Empty array", objects.length == 0); in verifyGolden()
517 for (int i = 0; i < objects.length; i++) { in verifyGolden()
519 comparator.assertDeserialized((Serializable) objects[i], in verifyGolden()
569 public static void verifySelf(Object[] objects) in verifySelf() argument
572 Assert.assertFalse("Empty array", objects.length == 0); in verifySelf()
573 verifySelf(objects, defineComparator(null, objects[0])); in verifySelf()
[all …]
/external/qemu/distrib/sdl-1.2.15/
DMakefile.in5 objects = build
54 all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
64 $(objects):
74 $(objects)/$(TARGET): $(OBJECTS)
77 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
91 install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
93 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
94 …$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TA…
129 rm -rf $(objects)
/external/v8/test/mjsunit/
Dfuzz-accessors.js58 var objects = [ variable
69 for (var i in objects) {
70 var obj = objects[i][0];
71 var chain = objects[i][1];
/external/valgrind/main/docs/internals/
Dtm-threadstates.dot32 wait_mutex -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ];
33 wait_mutex -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ];
37 wait_condvar -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ];
38 wait_condvar -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ];
42 wait_join -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ];
43 wait_join -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ];
/external/eigen/doc/
DD07_PassingByValue.dox3 /** \page TopicPassingByValue Passing Eigen objects by value to functions
5 Passing objects by value is almost always a very bad idea in C++, as this means useless copies, and…
7 …able Eigen objects" by value is not only inefficient, it can be illegal or make your program crash…
36 Note that on the other hand, there is no problem with functions that return objects by value.
DI05_FixedSizeVectorizable.dox3 /** \page TopicFixedSizeVectorizable Fixed-size vectorizable Eigen objects
30 Fixed-size objects are typically very small, which means that we want to handle them with zero runt…
34objects can be vectorized, is if their size is a multiple of 128 bits, or 16 bytes. Eigen will the…
DD11_UnalignedArrayAssert.dox37 \section c1 Cause 1: Structures having Eigen objects as members
58 …ners such as std::vector, std::map, ..., with Eigen objects, or with classes containing Eigen obje…
68 …gen types" and \ref TopicStructHavingEigenMembers "structures having such Eigen objects as member".
70 \section c3 Cause 3: Passing Eigen objects by value
78 then you need to read this separate page: \ref TopicPassingByValue "Passing Eigen objects by value …
100 \ref TopicFixedSizeVectorizable "fixed-size vectorizable Eigen objects" must absolutely be created …
111 …disabling vectorization for fixed-size objects (like Matrix4d) while keeping vectorization of dyna…
/external/clang/test/ARCMT/
Dobjcmt-subscripting-unavailable.m.result20 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
24 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
39 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
42 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
44 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
47 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
Dobjcmt-subscripting-unavailable.m20 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
24 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
39 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
42 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
44 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
47 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
Dobjcmt-subscripting-literals-in-arc.m.result34 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
38 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
62 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
65 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
67 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
70 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
Dobjcmt-subscripting-literals-in-arc.m34 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
38 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
62 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
65 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
67 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
70 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
/external/clang/test/Index/
Dannotate-literals.m25 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
29 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
33 id objects = @[ o1, o2 ];
43 // CHECK-LITERALS: Identifier: "objects" [33:6 - 33:13] VarDecl=objects:33:6 (Definition)
44 // CHECK-LITERALS: Punctuation: "=" [33:14 - 33:15] VarDecl=objects:33:6 (Definition)
/external/guava/guava-tests/test/com/google/common/hash/
DHashFunctionsTest.java42 int objects = 100; in assertInvariants() local
43 Set<HashCode> hashcodes = Sets.newHashSetWithExpectedSize(objects); in assertInvariants()
44 for (int i = 0; i < objects; i++) { in assertInvariants()
53 assertTrue(hashcodes.size() > objects * 0.95); // quite relaxed test in assertInvariants()
/external/webkit/Tools/DumpRenderTree/win/
DGCControllerWin.cpp58 UINT objects = 0; in getJSObjectCount() local
59 collector->objectCount(&objects); in getJSObjectCount()
60 return objects; in getJSObjectCount()
/external/clang/test/SemaObjC/
Dcocoa-api-usage.m.fixed27 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
31 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
50 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
53 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
55 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
58 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
Dcocoa-api-usage.m27 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
31 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
50 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
53 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
55 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
58 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
DBinaryOutputCapsule.java277 public void write(Savable[] objects, String name, Savable[] defVal) in write() argument
279 if (objects == defVal) in write()
282 write(objects); in write()
285 public void write(Savable[][] objects, String name, Savable[][] defVal) in write() argument
287 if (objects == defVal) in write()
290 write(objects); in write()
727 protected void write(Savable[] objects) throws IOException { in write() argument
728 if (objects == null) { in write()
732 write(objects.length); in write()
733 for (int x = 0; x < objects.length; x++) { in write()
[all …]
/external/llvm/utils/
Dfindsym.pl20 @objects = grep(/l?i?b?LLVM.*\.[oa]$/,sort(@files));
23 foreach $lib (@objects) {
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DString.java23 import org.apache.xpath.objects.XObject;
24 import org.apache.xpath.objects.XString;

12345678910>>...33