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

12 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncNot.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
FuncNumber.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
FuncString.java 24 import org.apache.xpath.objects.XObject;
25 import org.apache.xpath.objects.XString;
FuncStringLength.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
FuncTrue.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
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/apache-xml/src/main/java/org/apache/xpath/operations/
Gt.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
Gte.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
Lt.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
Lte.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
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;
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
pk7_dgst.c 63 #include <openssl/objects.h>
  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_handle_table.c 49 void **objects; member in struct:handle_table
51 /** Number of objects the handle can currently hold */
53 /** Number of consecutive objects allocated at the start of the table */
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *));
71 if(!ht->objects) {
114 new_objects = (void **)REALLOC((void *)ht->objects,
123 ht->objects = new_objects;
141 object = ht->objects[index];
143 ht->objects[index] = NULL;
165 if(!ht->objects[ht->filled]
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_handle_table.c 49 void **objects; member in struct:handle_table
51 /** Number of objects the handle can currently hold */
53 /** Number of consecutive objects allocated at the start of the table */
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *));
71 if(!ht->objects) {
114 new_objects = (void **)REALLOC((void *)ht->objects,
123 ht->objects = new_objects;
141 object = ht->objects[index];
143 ht->objects[index] = NULL;
165 if(!ht->objects[ht->filled]
    [all...]
  /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());

Completed in 3019 milliseconds

12 3 4 5 6 7 8 91011>>