Home
last modified time | relevance | path

Searched defs:method (Results 1 – 25 of 1402) sorted by relevance

12345678910>>...57

/external/webrtc/talk/media/webrtc/
Dfakewebrtccommon.h35 #define WEBRTC_STUB(method, args) \ argument
38 #define WEBRTC_STUB_CONST(method, args) \ argument
41 #define WEBRTC_BOOL_STUB(method, args) \ argument
44 #define WEBRTC_BOOL_STUB_CONST(method, args) \ argument
47 #define WEBRTC_VOID_STUB(method, args) \ argument
50 #define WEBRTC_FUNC(method, args) int method args override argument
52 #define WEBRTC_FUNC_CONST(method, args) int method args const override argument
54 #define WEBRTC_BOOL_FUNC(method, args) bool method args override argument
56 #define WEBRTC_VOID_FUNC(method, args) void method args override argument
/external/testng/src/test/java/test/mannotation/
DMAnnotation2SampleTest.java27 Method method = MTest3.class.getMethod("groups1", new Class[0]); in verifyTestGroupsInheritance() local
34 Method method = MTest3.class.getMethod("groups2", new Class[0]); in verifyTestGroupsInheritance() local
46 Method method = MTest3.class.getMethod("dependsOnGroups1", new Class[0]); in verifyTestDependsOnGroupsInheritance() local
53 Method method = MTest3.class.getMethod("dependsOnGroups2", new Class[0]); in verifyTestDependsOnGroupsInheritance() local
66 Method method = MTest3.class.getMethod("dependsOnMethods1", new Class[0]); in verifyTestDependsOnMethodsInheritance() local
73 Method method = MTest3.class.getMethod("dependsOnMethods2", new Class[0]); in verifyTestDependsOnMethodsInheritance() local
86 Method method = MTest3.class.getMethod("beforeSuite", new Class[0]); in verifyConfigurationGroupsInheritance() local
97 Method method = MTest3.class.getMethod("enabled1", new Class[0]); in verifyTestEnabledInheritance() local
103 Method method = MTest3.class.getMethod("enabled2", new Class[0]); in verifyTestEnabledInheritance() local
DMAnnotationSampleTest.java66 Method method = MTest1.class.getMethod("f", new Class[0]); in verifyTestMethodLevel() local
110 Method method = MTest1.class.getMethod("before", new Class[0]); in verifyConfigurationBefore() local
135 Method method = MTest1.class.getMethod("after", new Class[0]); in verifyConfigurationAfter() local
160 Method method = MTest1.class.getMethod("otherConfigurations", new Class[0]); in verifyConfigurationOthers() local
185 Method method = MTest1.class.getMethod("otherConfigurations", new Class[0]); in verifyDataProvider() local
194 Method method = MTest1.class.getMethod("otherConfigurations", new Class[0]); in verifyExpectedExceptions() local
204 Method method = MTest1.class.getMethod("factory", new Class[0]); in verifyFactory() local
214 Method method = MTest1.class.getMethod("parameters", new Class[0]); in verifyParameters() local
224 Method method = MTest1.class.getMethod("newBefore", new Class[0]); in verifyNewConfigurationBefore() local
238 Method method = MTest1.class.getMethod("newAfter", new Class[0]); in verifyNewConfigurationAfter() local
/external/r8/src/test/java/com/android/tools/r8/smali/
DIfSimplificationTest.java45 DexEncodedMethod method = oneMethodApplication( in ifZeroNeqZero() local
65 DexEncodedMethod method = oneMethodApplication( in ifTwoEqZero() local
85 DexEncodedMethod method = oneMethodApplication( in b() local
109 DexEncodedMethod method = oneMethodApplication( in c() local
133 DexEncodedMethod method = oneMethodApplication( in d() local
164 DexEncodedMethod method = oneMethodApplication( in e() local
189 DexEncodedMethod method = oneMethodApplication( in f() local
245 DexEncodedMethod method = oneMethodApplication( in simplifyNonZeroTests() local
276 DexEncodedMethod method = oneMethodApplication( in runRewriteIfWithConstZeroTest() local
313 DexEncodedMethod method = oneMethodApplication( in x() local
[all …]
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
DVerificationTypeVisitor.java36 …public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitIntegerType()
37 …public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitFloatType()
38 …public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitLongType()
39 …public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitDoubleType()
40 …public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitTopType()
41 …public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitObjectType()
42 …public void visitNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitNullType()
43 …public void visitUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitUninitializedType()
44 …public void visitUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitUninitializedThisType()
46 …public void visitStackIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribut… in visitStackIntegerType()
[all …]
/external/clang/test/SemaObjC/
DDoubleMethod.m8 - (void) method; // expected-note {{previous declaration is here}} method
9 - (void) method; // expected-warning {{multiple declarations of method 'method' found and ignored}} method
13 - (void) method {;} // expected-note {{previous declaration is here}} method
14 - (void) method {;} // expected-error {{duplicate declaration of method 'method'}} method
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DReflectionUtil.cs59 internal static Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) in CreateFuncIMessageObject()
72 internal static Func<IMessage, T> CreateFuncIMessageT<T>(MethodInfo method) in CreateFuncIMessageT()
85 internal static Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) in CreateActionIMessageObject()
99 internal static Action<IMessage> CreateActionIMessage(MethodInfo method) in CreateActionIMessage()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DHttpMethod.java19 public static boolean invalidatesCache(String method) { in invalidatesCache()
27 public static boolean requiresRequestBody(String method) { in requiresRequestBody()
35 public static boolean permitsRequestBody(String method) { in permitsRequestBody()
44 public static boolean redirectsToGet(String method) { in redirectsToGet()
/external/doclava/src/com/google/doclava/
DAuxSource.java22 public TagInfo[] methodAuxTags(MethodInfo method); in methodAuxTags()
23 public TagInfo[] paramAuxTags(MethodInfo method, ParameterInfo param, String comment); in paramAuxTags()
24 public TagInfo[] returnAuxTags(MethodInfo method); in returnAuxTags()
39 public TagInfo[] methodAuxTags(MethodInfo method) { in methodAuxTags()
44 public TagInfo[] paramAuxTags(MethodInfo method, ParameterInfo param, String comment) { in paramAuxTags()
49 public TagInfo[] returnAuxTags(MethodInfo method) { in returnAuxTags()
/external/proguard/src/proguard/optimize/info/
DBackwardBranchMarker.java41 …public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offse… in visitAnyInstruction()
44 …public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int of… in visitBranchInstruction()
50 …public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int… in visitAnySwitchInstruction()
66 private void markBackwardBranch(Method method, int branchOffset) in markBackwardBranch()
75 private static void setBranchesBackward(Method method) in setBranchesBackward()
85 public static boolean branchesBackward(Method method) in branchesBackward()
DParameterUsageMarker.java173 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute()
185 …public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offse… in visitAnyInstruction()
188 …public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int … in visitVariableInstruction()
220 private static void setParameterSize(Method method, int parameterSize) in setParameterSize()
233 public static int getParameterSize(Method method) in getParameterSize()
243 public static void markParameterUsed(Method method, int variableIndex) in markParameterUsed()
256 public static void markUsedParameters(Method method, long usedParameters) in markUsedParameters()
269 public static boolean isParameterUsed(Method method, int variableIndex) in isParameterUsed()
280 public static long getUsedParameters(Method method) in getUsedParameters()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DOptimizationFeedbackDirect.java13 public void methodReturnsArgument(DexEncodedMethod method, int argument) { in methodReturnsArgument()
18 public void methodReturnsConstant(DexEncodedMethod method, long value) { in methodReturnsConstant()
23 public void methodNeverReturnsNull(DexEncodedMethod method) { in methodNeverReturnsNull()
28 public void markProcessed(DexEncodedMethod method, Constraint state) { in markProcessed()
DOptimizationFeedbackIgnore.java13 public void methodReturnsArgument(DexEncodedMethod method, int argument) {} in methodReturnsArgument()
16 public void methodReturnsConstant(DexEncodedMethod method, long value) {} in methodReturnsConstant()
19 public void methodNeverReturnsNull(DexEncodedMethod method) {} in methodNeverReturnsNull()
22 public void markProcessed(DexEncodedMethod method, Constraint state) {} in markProcessed()
DOptimizationFeedback.java11 void methodReturnsArgument(DexEncodedMethod method, int argument); in methodReturnsArgument()
12 void methodReturnsConstant(DexEncodedMethod method, long value); in methodReturnsConstant()
13 void methodNeverReturnsNull(DexEncodedMethod method); in methodNeverReturnsNull()
14 void markProcessed(DexEncodedMethod method, Constraint state); in markProcessed()
/external/testng/src/test/java/org/testng/internal/invokers/
DInvokedMethodListenerSubtypeTest.java36 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
39 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
45 public void beforeInvocation(IInvokedMethod method, ITestResult testResult, in beforeInvocation()
49 public void afterInvocation(IInvokedMethod method, ITestResult testResult, in afterInvocation()
53 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
56 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_service.cc140 const MethodDescriptor* method = descriptor_->method(i); in GenerateNewReflectiveServiceMethod() local
179 const MethodDescriptor* method = descriptor_->method(i); in GenerateAbstractMethods() local
205 const MethodDescriptor* method = descriptor_->method(i); in GenerateCallMethod() local
253 const MethodDescriptor* method = descriptor_->method(i); in GenerateCallBlockingMethod() local
300 const MethodDescriptor* method = descriptor_->method(i); in GenerateGetPrototype() local
347 const MethodDescriptor* method = descriptor_->method(i); in GenerateStub() local
391 const MethodDescriptor* method = descriptor_->method(i); in GenerateBlockingStub() local
413 const MethodDescriptor* method = descriptor_->method(i); in GenerateBlockingStub() local
440 const MethodDescriptor* method, in GenerateMethodSignature()
456 const MethodDescriptor* method) { in GenerateBlockingMethodSignature()
/external/proguard/src/proguard/classfile/attribute/visitor/
DAttributeVisitor.java49 …public void visitDeprecatedAttribute( Clazz clazz, Method method, DeprecatedAttribute d… in visitDeprecatedAttribute()
53 …public void visitSyntheticAttribute( Clazz clazz, Method method, SyntheticAttribute s… in visitSyntheticAttribute()
57 …public void visitSignatureAttribute( Clazz clazz, Method method, SignatureAttribute s… in visitSignatureAttribute()
65 …public void visitMethodParametersAttribute( Clazz clazz, Method method, MethodParametersAttri… in visitMethodParametersAttribute()
66 …public void visitExceptionsAttribute( Clazz clazz, Method method, ExceptionsAttribute … in visitExceptionsAttribute()
67 …public void visitCodeAttribute( Clazz clazz, Method method, CodeAttribute … in visitCodeAttribute()
71 …public void visitStackMapAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitStackMapAttribute()
72 …public void visitStackMapTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitStackMapTableAttribute()
73 …public void visitLineNumberTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitLineNumberTableAttribute()
74 …public void visitLocalVariableTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTableAttribute()
[all …]
DRequiredAttributeFilter.java148 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute()
175 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute()
202 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttrib… in visitSignatureAttribute()
220 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute e… in visitMethodParametersAttribute()
229 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute()
238 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute()
247 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute()
256 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute()
265 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute()
274 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute()
[all …]
DNonEmptyAttributeFilter.java108 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute()
126 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute()
144 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttrib… in visitSignatureAttribute()
156 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute e… in visitMethodParametersAttribute()
165 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute()
174 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute()
180 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute()
189 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute()
198 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute()
207 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute()
[all …]
/external/proguard/src/proguard/optimize/peephole/
DReachableCodeMarker.java84 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute()
115 …public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int of… in visitSimpleInstruction()
131 …public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int … in visitConstantInstruction()
136 …public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int … in visitVariableInstruction()
145 …public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int of… in visitBranchInstruction()
162 …public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int… in visitAnySwitchInstruction()
183 …public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionI… in visitExceptionInfo()
202 …private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset… in markBranchTargets()
214 … private void markBranchTarget(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset) in markBranchTarget()
227 private void markCode(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset) in markCode()
/external/r8/src/main/java/com/android/tools/r8/graph/
DUseRegistry.java8 public abstract boolean registerInvokeVirtual(DexMethod method); in registerInvokeVirtual()
10 public abstract boolean registerInvokeDirect(DexMethod method); in registerInvokeDirect()
12 public abstract boolean registerInvokeStatic(DexMethod method); in registerInvokeStatic()
14 public abstract boolean registerInvokeInterface(DexMethod method); in registerInvokeInterface()
16 public abstract boolean registerInvokeSuper(DexMethod method); in registerInvokeSuper()
/external/proguard/src/proguard/optimize/
DChangedCodePrinter.java122 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute()
128 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute()
134 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttrib… in visitSignatureAttribute()
146 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute e… in visitMethodParametersAttribute()
152 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute()
158 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute()
164 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute()
170 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute()
176 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute()
182 …public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTypeTableAttribute()
[all …]
/external/guava/guava-tests/test/com/google/common/eventbus/
DEventSubscriberTest.java51 Method method = getRecordingMethod(); in testBasicMethodCall() local
63 Method method = getExceptionThrowingMethod(); in testExceptionWrapping() local
76 Method method = getErrorThrowingMethod(); in testErrorPassthrough() local
108 Method method; in getRecordingMethod() local
131 Method method; in getExceptionThrowingMethod() local
154 Method method; in getErrorThrowingMethod() local
/external/proguard/src/proguard/classfile/visitor/
DClassCleaner.java130 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute m… in visitMethodParametersAttribute()
138 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute()
146 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute()
155 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute()
163 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute()
171 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute()
179 …public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTypeTableAttribute()
195 …public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotations… in visitAnyParameterAnnotationsAttribute()
211 …public void visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute… in visitAnnotationDefaultAttribute()
237 …public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionI… in visitExceptionInfo()
[all …]
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
Dp3-0x.cpp33 struct method { struct
34 vararg_func implementation;
36 method(vararg_func implementation) : implementation(implementation) {} in method() argument
39 auto getImplementation() const -> TFunctionType in getImplementation()

12345678910>>...57