/external/clang/test/Modules/Inputs/ |
MethodPoolB.h | 12 - (int)method2:(float)param;
|
MethodPoolA.h | 7 - (int)method2:(int)param;
|
/external/clang/test/Modules/Inputs/attr-unavailable/ |
oneA.h | 2 -(void)method2 __attribute__((unavailable));
|
oneB.h | 4 -(void)method2;
|
/external/testng/src/test/java/test/testng106/ |
Test2.java | 11 public void method2() {
method in class:Test2 12 System.out.println("method2");
|
/external/clang/test/Modules/ |
attr-unavailable.m | 11 [x method2]; // expected-error{{'method2' is unavailable}} 12 // expected-note@oneA.h:2 {{'method2' has been explicitly marked unavailable here}} 19 [x method2]; // could be from interface D in module oneB
|
method_pool.m | 19 [object method2:1]; 37 [object method2:1]; // expected-warning{{multiple methods named 'method2:' found}}
|
/external/testng/src/test/java/test/ |
MethodTest.java | 15 addIncludedMethod(CLASS_NAME, ".*method2"); 18 "method2", 30 addExcludedMethod(CLASS_NAME, ".*method2");
|
Test1.java | 46 "method1", "method2", "method3", 69 "method1", "method2", "method3", "broken" 99 "method2",
|
/external/clang/test/FixIt/ |
fixit-objc-message.m | 13 + (int)method2:(int)x second:(double)y; 24 (A method2:5+2 second:3.14159]); 25 A method2:5+2 second:3.14159] 26 if (A method2:5+2 second:3.14159]) { }
|
/external/autotest/client/common_lib/test_utils/ |
mock_demo.py | 21 def method2(self, y): member in class:A 35 t = self.method2(4) 57 print a.method2(5) 60 print b.method2(3) 61 print b.method2("hello") 87 m1.method2.expect_call(5).and_return(0) 90 m2.method2.expect_call(3).and_return(6) 91 m2.method2.expect_call(mock.is_string_comparator()).and_return("foo") 111 c.method2.expect_call(4).and_return(4)
|
/external/testng/src/test/java/test/sample/ |
Sample2.java | 20 public void method2() { method in class:Sample2 21 // System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD2");
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug446.go | 16 func (r T) Method2() int { return b } 20 var dummy2 = T.Method2(0)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug446.go | 16 func (r T) Method2() int { return b } 20 var dummy2 = T.Method2(0)
|
/external/testng/src/test/java/test/dataprovider/ |
DependentSampleTest.java | 20 public void method2() throws InterruptedException { method in class:DependentSampleTest
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
decorators_test.py | 31 def method2(self): member in class:ClassToTest 57 self.assertEquals('ClassToTest.method2', 58 self._get_decorated_method_name(ctt.method2))
|
/external/clang/test/Analysis/inlining/ |
InlineObjCInstanceMethod.m | 68 - (void) method2; 73 [self method2]; 77 - (void) method2 { 85 - (int) method2; 91 [self method2]; 94 - (int) method2 {
|
/art/test/503-dead-instructions/smali/ |
DeadInstructions.smali | 34 .method public static method2(J)V 42 invoke-static {v0, v2}, LDeadInstructions;->method2(J)V 52 invoke-static {v0}, LDeadInstructions;->method2(J)V
|
/external/clang/test/ASTMerge/Inputs/ |
category1.m | 16 - (int)method2;
|
category2.m | 18 - (float)method2;
|
/external/clang/test/SemaObjC/ |
warn-superclass-method-mismatch.m | 12 -(void) method2: (Sub*) x; // expected-note{{passing argument to parameter 'x' here}} 26 -(void) method2: (Base*) x; // no need to warn. At call point we warn if need be. 41 [base method2:b]; // expected-warning {{}} 44 [base method2:s]; // if base is actually 'Sub' OK. Either way OK.
|
interface-1.m | 36 - (void)method2;
|
/external/clang/test/SemaObjCXX/Inputs/ |
nullability-consistency-2.h | 15 - (void)method2:(nonnull SomeClass *)param;
|
/external/clang/test/ASTMerge/ |
category.m | 5 // CHECK: category2.m:18:1: error: instance method 'method2' has incompatible result types in different translation units ('float' vs. 'int') 6 // CHECK: category1.m:16:1: note: instance method 'method2' also declared here
|
/external/webrtc/talk/app/webrtc/ |
proxy_unittest.cc | 54 virtual std::string Method2(std::string s1, std::string s2) = 0; 67 PROXY_METHOD2(std::string, Method2, std::string, std::string) 84 MOCK_METHOD2(Method2, std::string(std::string, std::string)); 159 TEST_F(ProxyTest, Method2) { 162 EXPECT_CALL(*fake_, Method2(arg1, arg2)) 166 Return("Method2"))); 167 EXPECT_EQ("Method2", fake_proxy_->Method2(arg1, arg2));
|