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

12 3 4 5 6 7 8 91011>>

  /dalvik/libcore/support/src/test/java/targets/
AlgorithmParameterGenerators.java 22 protected abstract void method(); method in class:AlgorithmParameterGenerators.AES
27 protected abstract void method(); method in class:AlgorithmParameterGenerators.DSA
32 protected abstract void method(); method in class:AlgorithmParameterGenerators.DH
KeyFactories.java 22 protected abstract void method(); method in class:KeyFactories.RSA
27 protected abstract void method(); method in class:KeyFactories.DSA
32 protected abstract void method(); method in class:KeyFactories.DH
KeyPairGenerators.java 22 protected abstract void method(); method in class:KeyPairGenerators.RSA
27 protected abstract void method(); method in class:KeyPairGenerators.DSA
32 protected abstract void method(); method in class:KeyPairGenerators.DH
  /external/dbus/test/name-test/
test-pending-call-dispatch.c 20 DBusMessage *method; local
25 method = dbus_message_new_method_call ("org.freedesktop.DBus.TestSuiteEchoService",
30 dbus_message_append_args (method, DBUS_TYPE_STRING, &echo, NULL);
31 dbus_connection_send_with_reply (conn, method, &echo_pending, -1);
32 dbus_message_unref (method);
35 method = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
40 dbus_connection_send_with_reply (conn, method, &dbus_pending, -1);
41 dbus_message_unref (method);
80 DBusMessage *method; local
114 method = dbus_message_new_method_call ("org.freedesktop.TestSuiteEchoService"
    [all...]
  /external/proguard/src/proguard/optimize/info/
BackwardBranchMarker.java 41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
44 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
46 markBackwardBranch(method, branchInstruction.branchOffset);
50 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
52 markBackwardBranch(method, switchInstruction.defaultOffset);
56 markBackwardBranch(method, switchInstruction.jumpOffsets[index]);
64 * Marks the given method if the given branch offset is negative
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
BoundedGenericMethodsTests.java 24 import java.lang.reflect.Method;
31 @TestTargetClass(Method.class)
53 * @param method
54 * the declaring method
56 private void checkBoundedTypeParameter(Method method) {
57 TypeVariable<Method> typeParameter = getTypeParameter(method);
59 assertEquals(method, typeParameter.getGenericDeclaration());
68 * Tests whether the specified method declares a parameter with the type o
126 Method method = clazz.getMethod("noParamNoReturn"); local
136 Method method = clazz.getMethod("paramNoReturn", BoundedGenericMethods.class); local
147 Method method = clazz.getMethod("noParamReturn"); local
159 Method method = clazz.getMethod("paramReturn", BoundedGenericMethods.class); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MethodAnnotationStruct.java 26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method,
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttEnclosingMethod.java 33 /** {@code null-ok;} the name-and-type of the innermost enclosing method, if any */
34 private final CstNat method; field in class:AttEnclosingMethod
40 * @param method {@code null-ok;} the name-and-type of the innermost enclosing
41 * method, if any
43 public AttEnclosingMethod(CstType type, CstNat method) {
51 this.method = method;
69 * Gets the name-and-type of the innermost enclosing method, if
73 * method, if any
76 return method;
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/sql/
CallableStatementTest.java 44 * Test method for {@link java.sql.CallableStatement#getArray(int)}.
49 method = "getArray",
57 * Test method for {@link java.sql.CallableStatement#getArray(java.lang.String)}.
62 method = "getArray",
70 * Test method for {@link java.sql.CallableStatement#getBigDecimal(int)}.
75 method = "getBigDecimal",
83 * Test method for {@link java.sql.CallableStatement#getBigDecimal(int, int)}.
88 method = "getBigDecimal",
96 * Test method for {@link java.sql.CallableStatement#getBigDecimal(java.lang.String)}.
101 method = "getBigDecimal"
    [all...]
ClobTest.java 35 * Test method for {@link java.sql.Clob#getAsciiStream()}.
40 method = "getAsciiStream",
48 * Test method for {@link java.sql.Clob#getCharacterStream()}.
53 method = "getCharacterStream",
61 * Test method for {@link java.sql.Clob#getSubString(long, int)}.
66 method = "getSubString",
74 * Test method for {@link java.sql.Clob#length()}.
79 method = "length",
87 * Test method for {@link java.sql.Clob#position(java.sql.Clob, long)}.
92 method = "position"
    [all...]
ArrayTest.java 36 * Test method for {@link java.sql.Array#getArray()}.
41 method = "getArray",
49 * Test method for {@link java.sql.Array#getArray(long, int)}.
54 method = "getArray",
62 * Test method for {@link java.sql.Array#getArray(long, int, java.util.Map)}.
67 method = "getArray",
75 * Test method for {@link java.sql.Array#getArray(java.util.Map)}.
80 method = "getArray",
88 * Test method for {@link java.sql.Array#getBaseType()}.
93 method = "getBaseType"
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType);
37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType);
38 public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType);
39 public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType);
40 public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType)
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
HideReturnsTransformationMethodTest.java 17 package android.text.method.cts;
23 import android.text.method.HideReturnsTransformationMethod;
36 method = "HideReturnsTransformationMethod",
46 method = "getOriginal",
50 MyHideReturnsTranformationMethod method = new MyHideReturnsTranformationMethod(); local
51 TextMethodUtils.assertEquals(new char[] { '\r' }, method.getOriginal());
57 method = "getInstance",
71 method = "getReplacement",
75 MyHideReturnsTranformationMethod method = new MyHideReturnsTranformationMethod(); local
76 TextMethodUtils.assertEquals(new char[] { '\uFEFF' }, method.getReplacement())
    [all...]
  /dalvik/vm/mterp/armv5te/
debug.c 29 const Method* method = glue->method; local
32 // method->clazz->descriptor, method->name, method->shorty);
48 saveArea->method, saveArea->xtra.currentPc);
52 saveArea->method, saveArea->xtra.currentPc,
60 void dvmMterpPrintMethod(Method* method)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewConfigurationTest.java 41 method = "getScrollBarSize",
46 method = "getFadingEdgeLength",
51 method = "getPressedStateDuration",
56 method = "getLongPressTimeout",
61 method = "getTapTimeout",
66 method = "getJumpTapTimeout",
71 method = "getEdgeSlop",
76 method = "getTouchSlop",
81 method = "getWindowTouchSlop",
86 method = "getMinimumFlingVelocity"
    [all...]
  /dalvik/vm/mterp/portable/
debug.c 8 * Set "methodEntry" if we've just entered the method. This detects
9 * method exit by checking to see if the next instruction is "return".
11 * This can't catch native method entry/exit, so we have to handle that
23 * TODO: method entry/exit events are probably less common than location
27 static void updateDebugger(const Method* method, const u2* pc, const u4* fp,
67 assert(!dvmIsNativeMethod(method));
71 * Step into method calls. We break when the line number
72 * or method pointer changes. If we're in SS_MIN mode, we
75 if (pCtrl->method != method)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
Camera_ParametersTest.java 33 method = "get",
39 method = "set",
45 method = "getInt",
51 method = "set",
57 method = "getPictureFormat",
63 method = "setPictureFormat",
69 method = "getPictureSize",
75 method = "setPictureSize",
81 method = "getPreviewFormat",
87 method = "setPreviewFormat"
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/javax/sql/
RowSetMetaDataTest.java 25 method = "setAutoIncrement",
38 method = "setCaseSensitive",
52 method = "setCatalogName",
65 method = "setColumnCount",
78 method = "setColumnDisplaySize",
91 method = "setColumnLabel",
104 method = "setColumnName",
117 method = "setColumnType",
130 method = "setColumnTypeName",
143 method = "setCurrency"
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteQueryTest.java 31 method = "bindDouble",
36 method = "bindLong",
41 method = "bindNull",
46 method = "bindString",
51 method = "close",
56 method = "toString",
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
SocketImplTest.java 34 * Socket.setSocketImplFactory method can be specified only once.
42 method = "accept",
48 method = "available",
54 method = "bind",
60 method = "close",
66 method = "connect",
72 method = "connect",
78 method = "connect",
84 method = "create",
90 method = "getFileDescriptor"
    [all...]
  /dalvik/libcore/luni-kernel/src/test/java/java/lang/reflect/
MethodTest.java 21 Method method = MethodTestHelper.class.getMethod("m1", new Class[0]); local
22 Class[] exceptions = method.getExceptionTypes();
27 exceptions = method.getExceptionTypes();
34 Method method = MethodTestHelper.class.getMethod("m2", expectedParameters); local
35 Class[] parameters = method.getParameterTypes();
40 parameters = method.getParameterTypes();
  /external/apache-http/src/org/apache/http/message/
BasicRequestLine.java 39 * It contains the method, URI, and HTTP version of the request.
53 private final String method; field in class:BasicRequestLine
56 public BasicRequestLine(final String method,
60 if (method == null) {
62 ("Method must not be null.");
72 this.method = method;
78 return this.method;
  /external/proguard/src/proguard/classfile/attribute/preverification/
DoubleType.java 42 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor)
44 verificationTypeVisitor.visitDoubleType(clazz, method, codeAttribute, instructionOffset, this);
48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor)
50 verificationTypeVisitor.visitStackDoubleType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
54 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor)
56 verificationTypeVisitor.visitVariablesDoubleType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
FloatType.java 42 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor)
44 verificationTypeVisitor.visitFloatType(clazz, method, codeAttribute, instructionOffset, this);
48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor)
50 verificationTypeVisitor.visitStackFloatType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
54 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor)
56 verificationTypeVisitor.visitVariablesFloatType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
IntegerType.java 42 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor)
44 verificationTypeVisitor.visitIntegerType(clazz, method, codeAttribute, instructionOffset, this);
48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor)
50 verificationTypeVisitor.visitStackIntegerType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
54 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor)
56 verificationTypeVisitor.visitVariablesIntegerType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);

Completed in 498 milliseconds

12 3 4 5 6 7 8 91011>>