Home
last modified time | relevance | path

Searched refs:method3 (Results 1 – 25 of 25) sorted by relevance

/external/clang/test/Modules/
Dmethod_pool.m41 …[object method3]; // expected-warning{{instance method '-method3' not found (return type defaults …
47 char *str = [object method3]; // okay: only found in MethodPoolB.Sub
57 [object method3]; // expected-warning{{multiple methods named 'method3' found}}
Dattr-unavailable.m13 [x method3]; // expected-error{{'method3' is unavailable}}
14 // expected-note@oneA.h:3 {{'method3' has been explicitly marked unavailable here}}
24 [x method3]; // could be from interface E in module oncC
/external/autotest/client/common_lib/test_utils/
Dmock_demo.py25 def method3(self, z): member in B
36 u = self.method3(t)
55 print b.method3(10)
85 m2.method3.expect_call(10).and_return(10)
112 c.method3.expect_call(4).and_return(5)
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.memberFunCall.frag.out5 0:1 Function Definition: method3(f1; ( temp float)
24 0:5 Function Call: myContext::method3(f1; ( temp float)
28 0:6 Function Definition: myContext::method3(f1; ( temp float)
83 0:1 Function Definition: method3(f1; ( temp float)
102 0:5 Function Call: myContext::method3(f1; ( temp float)
106 0:6 Function Definition: myContext::method3(f1; ( temp float)
165 Name 10 "method3(f1;"
173 Name 24 "myContext::method3(f1;"
211 10(method3(f1;): 6(float) Function None 8
227 43: 6(float) FunctionCall 24(myContext::method3(f1;) 18(@this) 42(param)
[all …]
/external/deqp-deps/glslang/Test/
Dhlsl.memberFunCall.frag1 float method3(float a) { return 1.0; }
5 float method2() { return method3(1.0); }
6 float method3(float a) { return method4(a, a); }
/external/clang/test/ASTMerge/
Dcategory.m7 // CHECK: category2.m:26:1: error: instance method 'method3' has incompatible result types in diffe…
8 // CHECK: category1.m:24:1: note: instance method 'method3' also declared here
/external/clang/test/Index/
Dcomplete-blocks.m21 - method3:(int (^)(void))b;
25 [b method3:^int(void){ return 0; }];
60 // CHECK-CC3: ObjCInstanceMethodDecl:{ResultType id}{TypedText method3:}{Placeholder ^int(void)b} (…
Dcomplete-synthesized.m33 - (short)method3 { method
Dcomplete-objc-message.m146 - (void)method3; method
317 // CHECK-REDUNDANT: ObjCInstanceMethodDecl:{ResultType void}{TypedText method3} (35)
/external/clang/test/FixIt/
Dtypo.m102 - (int)method3:(id)x;
156 - (int)method3; method
160 - (int)method3 { method
/external/clang/test/SemaObjC/
Dmethod-attributes.m68 - (id) method3: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((…
82 - (id) method3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) {
Dwarn-superclass-method-mismatch.m13 + method3: (int)x1 : (Base *)x2 : (float)x3; // expected-note {{previous declaration is here}}
27 + method3: (int)x1 : (Sub *)x2 : (float)x3; // expected-warning {{method parameter type 'Sub *' doe…
/external/clang/test/Modules/Inputs/attr-unavailable/
DoneC.h2 -(void)method3;
DoneA.h3 -(void)method3 __attribute__((unavailable));
/external/clang/test/Modules/Inputs/
DMethodPoolBSub.h2 - (char *)method3;
DMethodPoolASub.h2 - (char)method3;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
DCoverageBuilderTest.java200 final MethodCoverageImpl method3 = new MethodCoverageImpl("doit", in testGetBundle() local
202 method3.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 1); in testGetBundle()
203 addClass(3, false, "Sample3", null, method3); in testGetBundle()
/external/testng/src/test/java/test/sample/
DSample2.java25 public void method3() { in method3() method in Sample2
DSample1.java39 public void method3() { in method3() method in Sample1
/external/testng/src/test/java/test/testng106/
DTest2.java17 public void method3() { in method3() method in Test2
/external/clang/test/ASTMerge/Inputs/
Dcategory1.m24 - (int)method3;
Dcategory2.m26 - (float)method3;
/external/clang/test/SemaObjCXX/Inputs/
Dnullability-pragmas-1.h56 - (void)method3:(NSError **)error; // expected-note{{passing argument to parameter 'error' here}}
/external/python/cpython2/Demo/metaclasses/
Dmeta-vladimir.txt93 def method3(self, *args): pass # additional method3
226 def method3(self, *args): pass # additional method3
/external/clang/test/SemaObjCXX/
Dnullability-pragmas.mm31 …[a method3: a]; // expected-error{{cannot initialize a parameter of type 'NSError * _Nullable * _N…