HomeSort by relevance Sort by last modified time
    Searched full:mymethod (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/test/SemaObjC/
method-lookup-4.m 31 - (void)myMethod { }
47 [self myMethod];
48 [super myMethod];
method-def-1.m 13 +- (void)myMethod; // expected-error {{expected selector for Objective-C method}}
18 - (void)myMethod { }
method-conflict-1.m 14 - (void)myMethod:(NSArray *)object;
19 - (void)myMethod:(NSObject *)object {
30 - (void)myMethod:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
35 - (void)myMethod:(MyClass *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod:': 'id<MyProtocol>' vs 'MyClass *'}}
conditional-expr-7.m 11 - (void)myMethod;
default-synthesize-2.m 52 - (void) myMethod {
68 - (id) myMethod {
82 - (id) myMethod {
97 - (id) myMethod
113 - (id) myMethod {
  /external/chromium_org/testing/gtest/include/gtest/
gtest_prod.h 43 // void MyMethod();
44 // FRIEND_TEST(MyClassTest, MyMethod);
51 // TEST_F(MyClassTest, MyMethod) {
52 // // Can call MyClass::MyMethod() here.
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest_prod.h 43 // void MyMethod();
44 // FRIEND_TEST(MyClassTest, MyMethod);
51 // TEST_F(MyClassTest, MyMethod) {
52 // // Can call MyClass::MyMethod() here.
  /external/gtest/include/gtest/
gtest_prod.h 43 // void MyMethod();
44 // FRIEND_TEST(MyClassTest, MyMethod);
51 // TEST_F(MyClassTest, MyMethod) {
52 // // Can call MyClass::MyMethod() here.
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest_prod.h 43 // void MyMethod();
44 // FRIEND_TEST(MyClassTest, MyMethod);
51 // TEST_F(MyClassTest, MyMethod) {
52 // // Can call MyClass::MyMethod() here.
  /external/mesa3d/src/gtest/include/gtest/
gtest_prod.h 43 // void MyMethod();
44 // FRIEND_TEST(MyClassTest, MyMethod);
51 // TEST_F(MyClassTest, MyMethod) {
52 // // Can call MyClass::MyMethod() here.
  /external/protobuf/gtest/include/gtest/
gtest_prod.h 43 // void MyMethod();
44 // FRIEND_TEST(MyClassTest, MyMethod);
51 // TEST_F(MyClassTest, MyMethod) {
52 // // Can call MyClass::MyMethod() here.
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest_prod.h 43 // void MyMethod();
44 // FRIEND_TEST(MyClassTest, MyMethod);
51 // TEST_F(MyClassTest, MyMethod) {
52 // // Can call MyClass::MyMethod() here.
  /external/chromium_org/base/
gtest_prod_util.h 18 // void MyMethod();
19 // FRIEND_TEST_ALL_PREFIXES(MyClassTest, MyMethod);
  /external/chromium_org/third_party/webrtc/test/testsupport/
gtest_prod_util.h 29 // void MyMethod();
30 // FRIEND_TEST_ALL_PREFIXES(MyClassTest, MyMethod);
  /external/clang/test/Index/
print-type.m 3 -(int) mymethod;
10 // CHECK: ObjCInstanceMethodDecl=mymethod:3:8 [type=] [typekind=Invalid] [resulttype=int] [resulttypekind=Int] [isPOD=0]
complete-at-exprstmt.m 4 - (int)myMethod:(int)arg;
8 - (int)myMethod:(int)arg {
51 // CHECK-CC4: NotImplemented:{TypedText myMethod:} (40)
  /external/lldb/test/lang/objc/objc-optimized/
TestObjcOptimized.py 24 mymethod = "description" variable in class:ObjcOptimizedTestCase
25 method_spec = "-[%s %s]" % (myclass, mymethod)
49 patterns = ["frame.*0:.*%s %s" % (self.myclass, self.mymethod)])
  /external/clang/test/Analysis/
analyzeOneFunction.m 28 -(id)myMethod;
38 -(id)myMethod {
NSPanel.m 68 - (void)myMethod;
73 - (void)myMethod
refcnt_naming.m 30 - (NSURL *)myMethod:(NSString *)inString;
39 - (NSURL *)myMethod:(NSString *)inString
  /art/test/046-reflect/
expected.txt 1 Method name is myMethod
8 Method name is myMethod
17 Method name is myMethod
27 myMethod: hi there 3.1415925 Q !
93 myMethod (I)I
  /external/chromium_org/v8/test/webkit/
dictionary-no-cache.js 31 Test.prototype['myMethod' + i] = function(){};
49 Test.prototype['myMethod' + i] = function(){};
66 Test.prototype['myMethod' + i] = function(){};
  /external/chromium_org/third_party/leveldatabase/src/util/
mutexlock.h 18 // void MyClass::MyMethod() {
  /external/clang/test/SemaTemplate/
dependent-expr.cpp 46 template<typename OT> int myMethod()
  /art/test/046-reflect/src/
Main.java 128 meth = target.getMethod("myMethod", new Class[] { int.class });
134 meth = target.getMethod("myMethod", new Class[] { float.class });
140 meth = target.getMethod("myMethod",
363 targ.myMethod(17);
603 public int myMethod(float floatArg) {
604 System.out.println("myMethod (F)I " + floatArg);
623 public int myMethod(int intarg) throws NullPointerException, IOException {
624 System.out.println("myMethod (I)I");
629 public int myMethod(String[] strarg, float f, char c) {
630 System.out.println("myMethod: " + strarg[0] + " " + f + " " + c + " !")
    [all...]

Completed in 1953 milliseconds

1 2 3