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

12 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
NotEquals.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
Quo.java 23 import org.apache.xpath.objects.XNumber;
24 import org.apache.xpath.objects.XObject;
Bool.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
Div.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
Minus.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
Mod.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
Mult.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
Neg.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
Number.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
Plus.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RemoteObjectDefMessage.java 45 public ObjectDef[] objects; field in class:RemoteObjectDefMessage
55 for (ObjectDef def : objects){
  /external/openssl/crypto/pkcs7/
pk7_dgst.c 63 #include <openssl/objects.h>
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 34 void operator()(const ObjectList &objects, BoxIter boxBegin, BoxIter boxEnd, VolumeList &outBoxes)
37 eigen_assert(outBoxes.size() == objects.size());
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]));
63 * Given a sequence of objects, it computes their bounding boxes, constructs a Kd-tree of their centers
96 objects.clear();
100 objects.insert(objects.end(), begin, end)
217 ObjectList objects; member in class:Eigen::KdBVH
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
Strings.java 71 public static String join(String delimiter, Object... objects) {
72 return join(Arrays.asList(objects), delimiter);
75 public static String join(Iterable<?> objects, String delimiter) {
76 Iterator<?> i = objects.iterator();
89 public static String[] objectsToStrings(Object[] objects) {
90 String[] result = new String[objects.length];
92 for (Object o : objects) {
98 public static String[] objectsToStrings(Collection<?> objects) {
99 return objectsToStrings(objects.toArray());
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCount.java 25 import org.apache.xpath.objects.XNumber;
26 import org.apache.xpath.objects.XObject;
FuncGenerateId.java 25 import org.apache.xpath.objects.XObject;
26 import org.apache.xpath.objects.XString;
FuncRound.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
FuncStartsWith.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
FuncSubstringBefore.java 24 import org.apache.xpath.objects.XObject;
25 import org.apache.xpath.objects.XString;
  /external/v8/test/mjsunit/
to_number_order.js 141 // Test whether valueOf is called when comparing identical objects
143 assertTrue(a < b, "Compare objects a < b");
144 assertEquals("hestfisk", x, "Compare objects a < b valueOf order");
147 assertFalse(a < a, "Compare objects a < a");
148 // assertEquals("hesthest", x, "Compare objects a < a valueOf order");
151 assertTrue(a == a, "Compare objects a == a");
152 assertEquals("", x, "Compare objects a == a valueOf not called");
155 assertFalse(b > b, "Compare objects b > b");
156 assertEquals("fiskfisk", x, "Compare objects b > b valueOf order");
159 assertTrue(b >= b, "Compare objects b >= b")
    [all...]
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
StableArrayAdapter.java 33 List<String> objects, View.OnTouchListener listener) {
34 super(context, textViewResourceId, objects);
36 for (int i = 0; i < objects.size(); ++i) {
37 mIdMap.put(objects.get(i), i);
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
StableArrayAdapter.java 33 List<String> objects, View.OnTouchListener listener) {
34 super(context, textViewResourceId, objects);
36 for (int i = 0; i < objects.size(); ++i) {
37 mIdMap.put(objects.get(i), i);
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XBooleanStatic.java 21 package org.apache.xpath.objects;
50 * Tell if two objects are functionally equal.
54 * @return True if the two objects are equal
  /external/guava/guava-tests/test/com/google/common/hash/
HashFunctionsTest.java 42 int objects = 100; local
43 Set<HashCode> hashcodes = Sets.newHashSetWithExpectedSize(objects);
44 for (int i = 0; i < objects; i++) {
53 assertTrue(hashcodes.size() > objects * 0.95); // quite relaxed test
  /external/openssl/ssl/
s2_meth.c 62 #include <openssl/objects.h>

Completed in 198 milliseconds

12 3 4 5 6 7 8 91011>>