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

1 2 3 4

  /external/clang/test/Modules/Inputs/
MethodPoolB.h 11 - (int)method1;
MethodPoolA.h 6 + (int)method1;
  /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/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
all_interfaces.h 16 * METHOD1(FrobInterface, int32_t, Shlep, PP_CompletionCallback)
29 METHOD1(CoreInterface, void, AddRefResource, PP_Resource)
30 METHOD1(CoreInterface, void, ReleaseResource, PP_Resource)
36 METHOD1(FileIoInterface, void, Close, PP_Resource)
37 METHOD1(FileIoInterface, PP_Resource, Create, PP_Resource)
56 METHOD1(FileRefInterface, PP_Var, GetName, PP_Resource)
70 METHOD1(FileSystemInterface, PP_Bool, IsFileSystem, PP_Resource)
80 METHOD1(MessageLoopInterface, PP_Resource, Create, PP_Instance)
81 METHOD1(MessageLoopInterface, int32_t, AttachToCurrentThread, PP_Resource)
82 METHOD1(MessageLoopInterface, int32_t, Run, PP_Resource
    [all...]
undef_macros.h 8 #undef METHOD1
define_empty_macros.h 8 #define METHOD1(Class, ReturnType, MethodName, Type0)
  /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/chromium_org/dbus/
dbus_statistics_unittest.cc 29 "service1", "service1.interface1", "method1");
31 "service1", "service1.interface1", "method1");
33 "service1", "service1.interface1", "method1");
50 "service1", "service1.interface2", "method1");
56 "service2", "service2.interface1", "method1");
67 statistics::AddSentMethodCall("service1", "service1.interface1", "method1");
69 "service1", "service1.interface1", "method1", &sent, &received, &block));
75 statistics::AddReceivedSignal("service1", "service1.interface1", "method1");
77 "service1", "service1.interface1", "method1", &sent, &received, &block));
84 "service1", "service1.interface1", "method1");
    [all...]
  /external/chromium_org/mojo/public/interfaces/bindings/tests/
validation_test_interfaces.mojom 30 Method1(StructA param0);
  /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.
method-attributes.m 66 -(id)method1;
76 -(id)method1 __attribute__((aligned(16))) {
  /cts/tests/tests/text/src/android/text/method/cts/
HideReturnsTransformationMethodTest.java 41 HideReturnsTransformationMethod method1 = HideReturnsTransformationMethod.getInstance(); local
42 assertSame(method0, method1);
SingleLineTransformationMethodTest.java 42 SingleLineTransformationMethod method1 = SingleLineTransformationMethod.getInstance(); local
43 assertSame(method0, method1);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
proxy_unittest.cc 52 virtual std::string Method1(std::string s) = 0;
65 PROXY_METHOD1(std::string, Method1, std::string)
81 MOCK_METHOD1(Method1, std::string(std::string));
139 TEST_F(ProxyTest, Method1) {
141 EXPECT_CALL(*fake_, Method1(arg1))
145 Return("Method1")));
146 EXPECT_EQ("Method1", fake_proxy_->Method1(arg1));
  /external/clang/test/Modules/
method_pool.m 15 [object method1];
33 [object method1];
  /external/chromium_org/v8/test/cctest/
test-func-name-inference.cc 148 " this.method1 = function() { return 1; }\n"
151 CheckFunctionName(script, "return 1", "MyClass.method1");
164 " obj.method1 = function() { return 1; }\n"
168 CheckFunctionName(script, "return 1", "obj.method1");
199 "MyClass.prototype.method1 = function() { return 1; }\n"
204 CheckFunctionName(script, "return 1", "MyClass.method1");
219 " method1: function() { return 1; },\n"
221 CheckFunctionName(script, "return 1", "MyClass.method1");
265 " method1: 0 ? function() { return 1; } :\n"
267 CheckFunctionName(script, "return 1", "MyClass.method1");
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
test_support.py 66 def MethodsAreEqual(method1, method2):
67 if method1 == method2:
69 if method1.name != method2.name or \
70 method1.ordinal != method2.ordinal or \
71 len(method1.parameters) != len(method2.parameters):
73 for i in range(len(method1.parameters)):
74 if not ParametersAreEqual(method1.parameters[i], method2.parameters[i]):
  /cts/tests/tests/widget/src/android/widget/cts/
EditTextTest.java 217 MovementMethod method1 = mockEditText.getDefaultMovementMethod(); local
220 assertNotNull(method1);
221 assertTrue(method1 instanceof ArrowKeyMovementMethod);
223 assertSame(method1, method2);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
pepper_interface_mock.h 22 #define METHOD1(Class, ReturnType, MethodName, Type0) \
  /external/smali/baksmali/src/test/resources/LocalTest/
LocalTest.smali 6 .method public static method1()V
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
real_pepper_interface.cc 26 #define METHOD1(Class, ReturnType, MethodName, Type0) \
51 #define METHOD1(BaseClass, ReturnType, MethodName, Type0) \
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.m 72 - (int) method1 {
89 - (void) method1 {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericMethodsTests.java 113 Method method1 = clazz.getMethod("noParamNoReturn"); local
114 TypeVariable<Method> typeParameter1 = method1.getTypeParameters()[0];

Completed in 612 milliseconds

1 2 3 4