Searched refs:types (Results 1 - 25 of 58) sorted by relevance

123

/dalvik/libcore/sql/src/main/java/SQLite/
H A DCallback.java53 * @param types string array holding column types
56 public void types(String types[]); argument
H A DTableResult.java54 public String types[]; field in class:TableResult
76 types = null;
94 public void types(String types[]) { argument
95 this.types = types;
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DTableResultX.java22 this.types = tr.types;
27 if (tr.types != null) {
28 for (int i = 0; i < tr.types.length; i++) {
29 sql_type[i] = JDBCDatabaseMetaData.mapSqlType(tr.types[i]);
34 void sql_types(int types[]) { argument
35 sql_type = types;
H A DJDBCDatabaseMetaData.java512 String tableNamePattern, String types[])
528 if (types == null || types.length == 0) {
533 for (int i = 0; i < types.length; i++) {
536 sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase()));
612 int types[] = {
622 tr.sql_types(types);
683 int types[] = {
690 tr.sql_types(types);
703 int types[]
511 getTables(String catalog, String schemaPattern, String tableNamePattern, String types[]) argument
1378 getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/net/
H A DContentHandler.java48 * @param types
49 * list of acceptable content types.
51 * content doesn't match one of the specified content types.
57 public Object getContent(URLConnection uConn, Class[] types) argument
60 for (int i = 0; i < types.length; i++) {
61 if (types[i].isInstance(content)) {
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/
H A DMimeTable.java30 * Instances of this class map file extensions to MIME content types based on a
34 * "content-types.properties".
41 * A hash table containing the mapping between extensions and mime types.
43 public static final Properties types = new Properties(); field in class:MimeTable
47 types.setProperty("text", "text/plain"); //$NON-NLS-1$ //$NON-NLS-2$
48 types.setProperty("txt", "text/plain"); //$NON-NLS-1$ //$NON-NLS-2$
49 types.setProperty("htm", "text/html"); //$NON-NLS-1$ //$NON-NLS-2$
50 types.setProperty("html", "text/html"); //$NON-NLS-1$ //$NON-NLS-2$
57 * corresponding content types from the file "content-types
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DTypes.java23 public static Type[] getClonedTypeArray(ListOfTypes types) { argument
24 return types.getResolvedTypes().clone();
H A DListOfTypes.java39 ListOfTypes(Type[] types) { argument
41 for(Type t : types) {
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DProxyTypeTest.java38 Proxy.Type [] types = {Proxy.Type.DIRECT, Proxy.Type.HTTP,
44 assertEquals(types[i], Proxy.Type.valueOf(strTypes[i]));
73 Proxy.Type [] types = { Proxy.Type.DIRECT, Proxy.Type.HTTP,
78 assertEquals(types.length, result.length);
81 assertEquals(types[i], result[i]);
H A DAuthenticatorRequestorTypeTest.java62 Authenticator.RequestorType[] types =
64 assertEquals(expectedTypes.length, types.length);
67 assertEquals(expectedTypes[i], types[i]);
/dalvik/vm/arch/generic/
H A DCall.c65 ffi_type* types[kMaxArgs]; local
72 types[0] = &ffi_type_pointer;
75 types[1] = &ffi_type_pointer;
86 * Scan the types out of the short signature. Use them to fill out the
87 * "types" array. Store the start address of the argument in "values".
91 types[dstArg] = getFfiType(sigByte);
100 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, dstArg, retType, types) != FFI_OK) {
/dalvik/libcore/sql/src/test/java/tests/support/
H A DMockCallback.java41 public void types(String[] types) { argument
/dalvik/hit/src/com/android/hit/
H A DClassObj.java52 int[] types = mStaticFieldTypes;
53 final int N = types.length;
62 int type = types[i];
139 public final void setFieldTypes(int[] types) { argument
140 mFieldTypes = types;
147 public final void setStaticFieldTypes(int[] types) { argument
148 mStaticFieldTypes = types;
194 int[] types = mStaticFieldTypes;
195 final int N = types.length;
204 int type = types[
[all...]
H A DClassInstance.java47 private void resolve(State state, ClassObj isa, int[] types, argument
51 final int N = types.length;
59 int type = types[i];
108 int[] types = isa.mFieldTypes;
111 final int N = types.length;
119 int type = types[i];
159 int[] types = isa.mFieldTypes;
163 final int N = types.length;
173 int type = types[i];
/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
H A DAttributeListImpl.java143 types.addElement(type);
168 types.removeElementAt(i);
187 types.removeAllElements();
248 return (String)types.elementAt(i);
312 Vector types = new Vector();
309 Vector types = new Vector(); field in class:AttributeListImpl
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DCertificateRequest.java40 * Client certificate types as defined in
49 * Requested certificate types
58 //Requested certificate types as Strings
60 private String[] types; field in class:CertificateRequest
161 * Returns requested certificate types as array of strings
164 if (types == null) {
165 types = new String[certificate_types.length];
166 for (int i = 0; i < types.length; i++) {
169 types[i] = "RSA";
172 types[
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DConstructorTest.java391 Class[] types = null;
395 types = ctor.getParameterTypes();
400 assertEquals("Incorrect parameter returned", 0, types.length);
408 types = ctor.getParameterTypes();
413 assertTrue("Incorrect parameter returned", types[0].equals(parms[0]));
427 Type[] types = null;
431 types = ctor.getGenericParameterTypes();
435 assertEquals("Incorrect parameter returned", 0, types.length);
442 types = ctor.getGenericParameterTypes();
446 assertTrue("Incorrect parameter returned", types[
[all...]
/dalvik/libdex/
H A DDexDataMap.c53 map->types = (u2*) (map->offsets + maxCount);
86 map->types[map->count] = type;
112 return map->types[guessIdx];
H A DDexDataMap.h30 u2* types; /* corresponding array of item types */ member in struct:DexDataMap
H A DSysUtil.h23 #include <sys/types.h>
/dalvik/libcore/xml/src/main/java/org/kxml2/kdom/
H A DNode.java42 protected StringBuffer types; field in class:Node
54 types = new StringBuffer();
67 types.insert(index, (char) type);
94 types, a String is returned. */
179 types are ELEMENT, TEXT, COMMENT, and PROCESSING_INSTRUCTION */
182 return types.charAt(index);
278 // types.deleteCharAt (index);
280 int n = types.length() - 1;
283 types.setCharAt(i, types
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DAnnotationUtils.java150 * @param types {@code non-null;} the list of (the types of) the member classes
153 public static Annotation makeMemberClasses(TypeList types) { argument
154 CstArray array = makeCstArray(types);
226 * @param types {@code non-null;} the list of thrown types
229 public static Annotation makeThrows(TypeList types) { argument
230 CstArray array = makeCstArray(types);
240 * @param types {@code non-null;} the type list
243 private static CstArray makeCstArray(TypeList types) { argument
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DRops.java1118 * @param sources {@code non-null;} list of source types
1341 * @param types {@code non-null;} source types
1344 public static Rop opIfEq(TypeList types) { argument
1345 return pickIf(types, IF_EQZ_INT, IF_EQZ_OBJECT,
1353 * @param types {@code non-null;} source types
1356 public static Rop opIfNe(TypeList types) { argument
1357 return pickIf(types, IF_NEZ_INT, IF_NEZ_OBJECT,
1365 * @param types {
1368 opIfLt(TypeList types) argument
1379 opIfGe(TypeList types) argument
1390 opIfGt(TypeList types) argument
1401 opIfLe(TypeList types) argument
1417 pickIf(TypeList types, Rop intZ, Rop objZ, Rop intInt, Rop objObj) argument
1461 opAdd(TypeList types) argument
1474 opSub(TypeList types) argument
1487 opMul(TypeList types) argument
1500 opDiv(TypeList types) argument
1513 opRem(TypeList types) argument
1526 opAnd(TypeList types) argument
1538 opOr(TypeList types) argument
1550 opXor(TypeList types) argument
1562 opShl(TypeList types) argument
1574 opShr(TypeList types) argument
1586 opUshr(TypeList types) argument
1606 pickBinaryOp(TypeList types, Rop int1, Rop long1, Rop float1, Rop double1, Rop int2, Rop long2, Rop float2, Rop double2) argument
2083 throwBadTypes(TypeList types) argument
[all...]
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DKeyRepTypeTest.java79 KeyRep.Type[] types = new KeyRep.Type[] { KeyRep.Type.SECRET,
82 assertTrue(Arrays.equals(types, KeyRep.Type.values()));
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DAccessibleObject.java219 * types. It is not suitable for printing.
248 * @param types
253 String toString(Class<?>[] types) { argument
256 if (types.length != 0) {
257 result.append(types[0].getCanonicalName());
258 for (int i = 1; i < types.length; i++) {
260 result.append(types[i].getCanonicalName());

Completed in 566 milliseconds

123