/dalvik/dx/tests/122-switch-with-high-register/ |
run | 18 dx --debug --dex --dump-method=Blort.switchWithHighRegister Blort.class 20 dx --debug --dex --dump-method=Blort.switchWithHighRegister Blort.class
|
/external/apache-http/src/org/apache/http/message/ |
BasicHttpRequest.java | 56 private final String method; field in class:BasicHttpRequest 59 public BasicHttpRequest(final String method, final String uri) { 61 if (method == null) { 62 throw new IllegalArgumentException("Method name may not be null"); 67 this.method = method; 72 public BasicHttpRequest(final String method, final String uri, final ProtocolVersion ver) { 73 this(new BasicRequestLine(method, uri, ver)); 82 this.method = requestline.getMethod(); 99 return new BasicRequestLine(this.method, this.uri, ver) [all...] |
/external/boringssl/src/include/openssl/ |
engine.h | 30 * Methods are reference counted but |ENGINE|s are not. When creating a method, 38 /* ENGINE_new returns an empty ENGINE that uses the default method for all 47 /* Method accessors. 49 * Method accessors take a method pointer and the size of the structure. The 50 * size allows for ABI compatibility in the case that the method structure is 57 const RSA_METHOD *method, 62 const ECDSA_METHOD *method, 67 /* Generic method functions. 69 * These functions take a void* type but actually operate on all method [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/util/ |
Reflection.java | 22 import java.lang.reflect.Method; 30 public static ImmutableSet<Method> getAnnotatedMethods(Class<?> clazz, 32 Method[] methods = clazz.getDeclaredMethods(); 33 ImmutableSet.Builder<Method> builder = ImmutableSet.builder(); 34 for (Method method : methods) { 35 if (method.isAnnotationPresent(annotationClass)) { 36 method.setAccessible(true); 37 builder.add(method);
|
/external/dbus/test/name-test/ |
test-pending-call-timeout.c | 18 DBusMessage *method; local 23 method = dbus_message_new_method_call ("org.freedesktop.DBus.TestSuiteEchoService", 28 dbus_message_append_args (method, DBUS_TYPE_STRING, &echo, NULL); 29 dbus_connection_send_with_reply (conn, method, &pending, timeout_milliseconds); 30 dbus_message_unref (method); 70 DBusMessage *method; local 94 method = dbus_message_new_method_call ("org.freedesktop.TestSuiteEchoService", 98 dbus_connection_send (conn, method, NULL); 99 dbus_message_unref (method);
|
/external/javassist/src/main/javassist/compiler/ast/ |
CallExpr.java | 23 * Method call expression. 26 private MemberResolver.Method method; // cached result of lookupMethod() field in class:CallExpr 30 method = null; 33 public void setMethod(MemberResolver.Method m) { 34 method = m; 37 public MemberResolver.Method getMethod() { 38 return method;
|
/external/libmicrohttpd/src/microspdy/ |
alstructures.h | 47 * HTTP method 49 char *method; member in struct:SPDY_Request
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_picklpf.h | 25 struct VP9_COMP *cpi, LPF_PICK_METHOD method);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
CallbackGenerator.java | 30 CodeEmitter beginMethod(ClassEmitter ce, MethodInfo method); 31 int getOriginalModifiers(MethodInfo method); 32 int getIndex(MethodInfo method); 34 Signature getImplSignature(MethodInfo method);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/ |
FastMethod.java | 19 import java.lang.reflect.Method; 23 FastMethod(FastClass fc, Method method) { 24 super(fc, method, helper(fc, method)); 27 private static int helper(FastClass fc, Method method) { 28 int index = fc.getIndex(method.getName(), method.getParameterTypes()); 30 Class[] types = method.getParameterTypes() [all...] |
/external/proguard/src/proguard/classfile/attribute/ |
MethodParametersAttribute.java | 27 * This Attribute represents a method parameters attribute. 61 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 63 attributeVisitor.visitMethodParametersAttribute(clazz, method, this); 70 public void parametersAccept(Clazz clazz, Method method, ParameterInfoVisitor parameterInfoVisitor) 77 parameterInfoVisitor.visitParameterInfo(clazz, method, index, parameters[index]);
|
/external/proguard/src/proguard/classfile/editor/ |
VariableSizeUpdater.java | 57 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 61 // method.getName(clazz).equals("abc"); 65 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz), 66 method.getAccessFlags()); 70 System.out.println("VariableSizeUpdater: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)); 75 codeAttribute.instructionsAccept(clazz, method, this); 78 variableCleaner.visitCodeAttribute(clazz, method, codeAttribute); 84 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) { [all...] |
/external/testng/src/test/java/test/methodselectors/ |
NoTest1MethodSelector.java | 18 ITestNGMethod method, boolean isTestMethod) 20 for (String group : method.getGroups()) { 22 ppp( method.getMethodName() + " is group test1, don't include" ); 27 ppp( method.getMethodName() + " is not in group test1" );
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_picklpf.h | 25 struct VP9_COMP *cpi, LPF_PICK_METHOD method);
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
InvocationHandler.java | 33 * When a method is invoked on a proxy instance, the method 35 * method of its invocation handler. 44 * Processes a method invocation on a proxy instance and returns 45 * the result. This method will be invoked on an invocation handler 46 * when a method is invoked on a proxy instance that it is 49 * @param proxy the proxy instance that the method was invoked on 51 * @param method the {@code Method} instance corresponding to 52 * the interface method invoked on the proxy instance. The declarin [all...] |
/libcore/ojluni/src/main/java/sun/net/ |
ProgressMeteringPolicy.java | 39 public boolean shouldMeterInput(URL url, String method);
|
/external/proguard/src/proguard/classfile/util/ |
SimplifiedVisitor.java | 48 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 71 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 121 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 189 * Visits any type of method RefConstant of the given class. 234 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 295 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 297 visitDeprecatedAttribute(clazz, (Member)method, deprecatedAttribute); 322 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute [all...] |
/external/libjpeg-turbo/ |
jddctmgr.c | 38 * The multiplier table contents are IDCT-method-dependent. To support 39 * application changes in IDCT method between scans, we can remake the 53 /* This array contains the IDCT method code that each multiplier table 101 int method = 0; local 112 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 119 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 123 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 130 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 134 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 143 method = JDCT_ISLOW; /* jidctint uses islow-style table * [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
ParameterAnnotationStruct.java | 29 * Association of a method and its parameter annotations. 33 /** {@code non-null;} the method in question */ 34 private final CstMethodRef method; field in class:ParameterAnnotationStruct 45 * @param method {@code non-null;} the method in question 48 public ParameterAnnotationStruct(CstMethodRef method, 50 if (method == null) { 51 throw new NullPointerException("method == null"); 58 this.method = method; [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
ParameterAnnotationStruct.java | 29 * Association of a method and its parameter annotations. 33 /** {@code non-null;} the method in question */ 34 private final CstMethodRef method; field in class:ParameterAnnotationStruct 45 * @param method {@code non-null;} the method in question 49 public ParameterAnnotationStruct(CstMethodRef method, 51 if (method == null) { 52 throw new NullPointerException("method == null"); 59 this.method = method; [all...] |
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
security.py | 98 def generate_password_hash(password, method='sha1', length=22, pepper=None): 101 The format of the string returned includes the method that was used 104 This method can **not** generate unsalted passwords but it is possible 105 to set the method to plain to enforce plaintext passwords. If a salt 110 :param method: 111 The hash method to use (``'md5'`` or ``'sha1'``). 119 method$salt$hash 123 salt = method != 'plain' and generate_random_string(length) or '' 124 hashval = hash_password(password, method, salt, pepper) 126 raise TypeError('Invalid method %r.' % method [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ParameterAnnotationStruct.java | 29 * Association of a method and its parameter annotations. 33 /** {@code non-null;} the method in question */ 34 private final CstMethodRef method; field in class:ParameterAnnotationStruct 45 * @param method {@code non-null;} the method in question 48 public ParameterAnnotationStruct(CstMethodRef method, 50 if (method == null) { 51 throw new NullPointerException("method == null"); 58 this.method = method; [all...] |
/external/guava/guava-tests/test/com/google/common/eventbus/ |
EventSubscriberTest.java | 24 import java.lang.reflect.Method; 46 * Checks that a no-frills, no-issues method call is properly executed. 51 Method method = getRecordingMethod(); local 53 EventSubscriber subscriber = new EventSubscriber(this, method); 57 assertTrue("Subscriber must call provided method.", methodCalled); 63 Method method = getExceptionThrowingMethod(); local 64 EventSubscriber subscriber = new EventSubscriber(this, method); 76 Method method = getErrorThrowingMethod() local 108 Method method; local 131 Method method; local 154 Method method; local [all...] |
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
AnalyzerTest.java | 31 CtMethod method = clazz.getDeclaredMethod("commonSuperArray"); local 32 verifyArrayLoad(clazz, method, "java.lang.Number"); 38 CtMethod method = clazz.getDeclaredMethod("commonInterfaceArray"); local 39 verifyArrayLoad(clazz, method, "java.io.Serializable"); 43 CtMethod method = ClassPool.getDefault().getMethod( local 45 verifyReturn(method, "java.io.Serializable"); 47 method = ClassPool.getDefault().getMethod( 49 verifyReturn(method, "java.io.Serializable"); 51 method = ClassPool.getDefault().getMethod( 53 verifyReturn(method, getClass().getName() + "$Dummy$A") 57 CtMethod method = ClassPool.getDefault().getMethod( local 67 CtMethod method = ClassPool.getDefault().getMethod( local 149 CtMethod method = generateDeadCode(ClassPool.getDefault()); local 159 CtMethod method = generateInvalidCode(ClassPool.getDefault()); local 171 CtMethod method = generateCodeFalloff(ClassPool.getDefault()); local 183 CtMethod method = generateJsrMerge(ClassPool.getDefault()); local 190 CtMethod method = generateJsrMerge2(ClassPool.getDefault()); local 199 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 219 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 236 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 251 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 275 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local [all...] |
/external/proguard/src/proguard/optimize/info/ |
AccessMethodMarker.java | 45 private Method invokingMethod; 50 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 53 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 55 invokingMethod = method; 76 // Check the bootstrap method. 83 // Check the method reference. 142 private static void setAccessesPrivateCode(Method method) [all...] |