/external/clang/test/SemaObjCXX/ |
instantiate-message.mm | 6 + (ClassMethods *)method1:(void*)ptr; 16 R *result1 = [T method1:arg1]; 17 R *result2 = [typename identity<T>::type method1:arg1]; 18 R *result3 = [ClassMethods method1:arg1]; // expected-error{{cannot initialize a variable of type 'ClassMethods2 *' with an rvalue of type 'ClassMethods *'}} 25 + (ClassMethods2 *)method1:(int*)ptr; 32 - (InstanceMethods *)method1:(void*)ptr; 39 R *result1 = [receiver method1:arg1]; 40 R *result2 = [im method1:arg1]; // expected-error{{cannot initialize a variable of type 'InstanceMethods2 *' with an rvalue of type 'InstanceMethods *'}} 47 - (InstanceMethods2 *)method1:(void*)ptr;
|
/external/clang/test/FixIt/ |
fixit-objc-message.m | 12 - (int)method1:(int)x second:(float)y; 18 a method1:5+2 second:+(3.14159)]; 19 a method1:[a method1:3 second:j] second:i++] 23 (void)array[a method1:5+2 second:+(3.14159)]]; 30 - (int)method1:(int)x second:(float)y; 34 - (int)method1:(int)x second:(float)y { 35 super method1:x second:y];
|
/external/clang/test/ASTMerge/Inputs/ |
category1.m | 11 - (int)method1;
|
category2.m | 13 - (Int)method1;
|
/external/clang/test/SemaObjC/ |
warn-superclass-method-mismatch.m | 11 -(void) method1: (Base*) x; // expected-note {{previous declaration is here}} 25 -(void) method1: (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super class method parameter type 'Base *'}} 39 [base method1:b]; // if base is actuall 'Sub' it will use [Sub method1] with wrong argument.
|
/external/webkit/Source/WebKit/chromium/tests/ |
CCThreadTaskTest.cpp | 40 MOCK_METHOD1(method1, void(int a1)); 50 EXPECT_CALL(mock, method1(9)).Times(1); 56 createCCThreadTask(&mock, &Mock::method1, 9)->performTask();
|
/external/v8/test/cctest/ |
test-func-name-inference.cc | 155 " this.method1 = function() { return 1; }\n" 158 CheckFunctionName(script, "return 1", "MyClass.method1"); 170 " obj.method1 = function() { return 1; }\n" 174 CheckFunctionName(script, "return 1", "obj.method1"); 203 "MyClass.prototype.method1 = function() { return 1; }\n" 208 CheckFunctionName(script, "return 1", "MyClass.method1"); 222 " method1: function() { return 1; },\n" 224 CheckFunctionName(script, "return 1", "MyClass.method1"); 265 " method1: 0 ? function() { return 1; } :\n" 267 CheckFunctionName(script, "return 1", "MyClass.method1"); [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
HideReturnsTransformationMethodTest.java | 64 HideReturnsTransformationMethod method1 = HideReturnsTransformationMethod.getInstance(); local 65 assertSame(method0, method1);
|
SingleLineTransformationMethodTest.java | 57 SingleLineTransformationMethod method1 = SingleLineTransformationMethod.getInstance(); local 58 assertSame(method0, method1);
|
PasswordTransformationMethodTest.java | 221 PasswordTransformationMethod method1 = PasswordTransformationMethod.getInstance(); local 222 assertNotNull(method1); 223 assertSame(method0, method1);
|
/dalvik/vm/oo/ |
Class.h | 215 INLINE int dvmCompareMethodProtos(const Method* method1, 218 return dexProtoCompare(&method1->prototype, &method2->prototype); 226 INLINE int dvmCompareMethodParameterProtos(const Method* method1, 229 return dexProtoCompareParameters(&method1->prototype, &method2->prototype); 237 int dvmCompareMethodNamesAndProtos(const Method* method1, 246 int dvmCompareMethodNamesAndParameterProtos(const Method* method1,
|
/external/clang/test/Analysis/ |
idempotent-operations.m | 23 - (BOOL) method1 {
|
/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
GenericMethodsTests.java | 113 Method method1 = clazz.getMethod("noParamNoReturn"); local 114 TypeVariable<Method> typeParameter1 = method1.getTypeParameters()[0];
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
AllocationInfo.java | 81 String method1 = o1.getFirstTraceMethodName(); local 83 diff = compareOptionalString(method1, method2);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
EditTextTest.java | 295 MovementMethod method1 = mockEditText.getDefaultMovementMethod(); local 298 assertNotNull(method1); 299 assertTrue(method1 instanceof ArrowKeyMovementMethod); 301 assertSame(method1, method2);
|
/external/neven/Embedded/common/src/b_BasicEm/ |
Phase.h | 86 * Max error: 8.5E-5 (METHOD1); 7.0E-5 (METHOD2) 87 * Std error: 4.4E-5 (METHOD1); 3.2E-5 (METHOD2) 95 * Max error: 8.5E-5 (METHOD1); 7.0E-5 (METHOD2) 96 * Std error: 4.4E-5 (METHOD1); 3.2E-5 (METHOD2)
|
/prebuilt/windows-x86_64/swt/ |
swt.jar | |
/prebuilt/windows/swt/ |
swt.jar | |
/prebuilt/darwin-x86/swt/ |
swt.jar | |
/prebuilt/darwin-x86_64/swt/ |
swt.jar | |
/prebuilt/linux-x86/swt/ |
swt.jar | |
/prebuilt/linux-x86_64/swt/ |
swt.jar | |
/external/clang/test/Index/ |
complete-objc-message.m | 126 - (void)method1; 134 [b method1]; 135 b method1]; 282 // CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method1} (37)
|
/dalvik/tools/dmtracedump/ |
TraceDump.c | 208 MethodEntry* method1; member in struct:DiffEntry [all...] |
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
AnnotationTest.java | 77 assertEquals("must be equal : method1:"+me1.getName()+", method2: "+me2.getName(), a1, a2); 91 assertFalse("must not be equal : method1:"+me1.getName()+", method2: "+me2.getName(),
|