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

1 2 34 5 6 7 8 91011>>

  /external/skia/tools/
merge_static_libs.py 29 objects = []
40 # The static library is non-thin, and we extracted objects
42 objects.append(os.path.abspath(object))
44 # The static library is thin, so it contains the paths to its objects
46 objects.append(object)
48 raise Exception('Failed to extract objects from %s.' % in_lib)
50 if not subprocess.call([ar, '-crs', out_lib] + objects) == 0:
  /libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 46 * returns array of objects to be de/serialized in tests, and the second
47 * compares reference and deserialized objects (needed only if tested objects do
56 * serialized objects. This mode should be run on a pure
74 * override it to provide actual objects for testing.
76 * @return array of objects to be de/serialized in tests.
81 * Tests that data objects can be serialized and deserialized without
83 * objects.
96 * Tests that data objects can be deserialized from golden files, to verify
124 * Working method for files generation mode. Serializes test objects
    [all...]
  /external/webkit/Source/WebKit/mac/Storage/
WebDatabaseManager.mm 99 id objects[3];
100 objects[0] = details.displayName().isEmpty() ? databaseIdentifier : (NSString *)details.displayName();
101 objects[1] = [NSNumber numberWithUnsignedLongLong:details.expectedUsage()];
102 objects[2] = [NSNumber numberWithUnsignedLongLong:details.currentUsage()];
104 return [[[NSDictionary alloc] initWithObjects:objects forKeys:keys count:3] autorelease];
  /frameworks/base/core/java/android/widget/
ArrayAdapter.java 34 * objects. By default this class expects that the provided resource id references
40 * the array. You can add lists or arrays of custom objects. Override the toString() method
41 * of your objects to determine what text will be displayed for the item in the list.
49 * Contains the list of objects that represent the data of this ArrayAdapter.
125 * @param objects The objects to represent in the ListView.
127 public ArrayAdapter(Context context, int resource, T[] objects) {
128 init(context, resource, 0, Arrays.asList(objects));
138 * @param objects The objects to represent in the ListView
    [all...]
  /development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/
ListViewAnimations.java 114 List<String> objects) {
115 super(context, textViewResourceId, objects);
116 for (int i = 0; i < objects.size(); ++i) {
117 mIdMap.put(objects.get(i), i);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XUnresolvedVariableSimple.java 25 import org.apache.xpath.objects.XObject;
45 * For support of literal objects in xpaths.
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XMLStringFactoryImpl.java 21 package org.apache.xpath.objects;
  /external/openssl/crypto/asn1/
i2d_pu.c 63 #include <openssl/objects.h>
nsseq.c 63 #include <openssl/objects.h>
  /external/openssl/crypto/evp/
e_bf.c 64 #include <openssl/objects.h>
e_cast.c 64 #include <openssl/objects.h>
e_null.c 62 #include <openssl/objects.h>
m_ecdsa.c 115 #include <openssl/objects.h>
m_wp.c 9 #include <openssl/objects.h>
p_dec.c 66 #include <openssl/objects.h>
p_enc.c 66 #include <openssl/objects.h>
  /external/openssl/crypto/objects/
obj_err.c 1 /* crypto/objects/obj_err.c */
63 #include <openssl/objects.h>
  /external/openssl/crypto/pkcs7/
pk7_enc.c 63 #include <openssl/objects.h>
  /external/openssl/crypto/x509/
x509rset.c 62 #include <openssl/objects.h>
  /external/openssl/ssl/
t1_clnt.c 63 #include <openssl/objects.h>
t1_srvr.c 63 #include <openssl/objects.h>
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 49 * returns array of objects to be de/serialized in tests, and the second
50 * compares reference and deserialized objects (needed only if tested objects do
59 * serialized objects. This mode should be run on a pure
120 * override it to provide actual objects for testing.
122 * @return array of objects to be de/serialized in tests.
127 * Tests that data objects can be serialized and deserialized without
129 * objects.
142 * Tests that data objects can be deserialized from golden files, to verify
169 * Working method for files generation mode. Serializes test objects
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 26 import org.apache.xpath.objects.XNumber;
27 import org.apache.xpath.objects.XString;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncConcat.java 25 import org.apache.xpath.objects.XObject;
26 import org.apache.xpath.objects.XString;
FuncCurrent.java 28 import org.apache.xpath.objects.XNodeSet;
29 import org.apache.xpath.objects.XObject;

Completed in 537 milliseconds

1 2 34 5 6 7 8 91011>>