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

1 2 3

  /external/clang/test/Modules/Inputs/
MethodPoolB.h 12 - (int)method2:(float)param;
MethodPoolA.h 7 - (int)method2:(int)param;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
all_interfaces.h 15 * METHOD2(FrobInterface, void, Flange, int32_t, char*)
38 METHOD2(FileIoInterface, int32_t, Flush, PP_Resource,
54 METHOD2(FileRefInterface, PP_Resource, Create, PP_Resource, const char*)
55 METHOD2(FileRefInterface, int32_t, Delete, PP_Resource, PP_CompletionCallback)
71 METHOD2(FileSystemInterface, PP_Resource, Create, PP_Instance,
85 METHOD2(MessageLoopInterface, int32_t, PostQuit, PP_Resource, PP_Bool)
93 METHOD2(MessagingInterface, void, PostMessage, PP_Instance, PP_Var)
100 METHOD2(VarArrayInterface, PP_Var, Get, PP_Var, uint32_t)
103 METHOD2(VarArrayInterface, PP_Bool, SetLength, PP_Var, uint32_t)
110 METHOD2(VarArrayBufferInterface, PP_Bool, ByteLength, PP_Var, uint32_t*
    [all...]
undef_macros.h 9 #undef METHOD2
define_empty_macros.h 9 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1)
  /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]) { }
typo.m 101 - (int)method2;
119 - (int)method2;
123 - (int)method2 {
124 return [supper method2]; // expected-error{{unknown receiver 'supper'; did you mean 'super'?}}
  /external/clang/test/Modules/
method_pool.m 19 [object method2:1];
37 [object method2:1]; // expected-warning{{multiple methods named 'method2:' found}}
  /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 {
  /external/chromium_org/dbus/
dbus_statistics_unittest.cc 36 "service1", "service1.interface1", "method2");
38 "service1", "service1.interface1", "method2");
40 "service1", "service1.interface1", "method2");
53 "service1", "service1.interface2", "method2");
105 "service1", "service1.interface1", "method2", &sent, &received, &block));
117 "service1", "service1.interface2", "method2", &sent, &received, &block));
126 "service1", "service1.interface3", "method2", &sent, &received, &block));
174 "service1.interface1.method2: Sent: 2 Received: 1\n"
177 "service1.interface2.method2: Sent: 1\n"
  /external/chromium_org/mojo/public/interfaces/bindings/tests/
validation_test_interfaces.mojom 31 Method2(StructB param0, StructA param1);
  /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;
method-attributes.m 67 -(id)method2 __attribute__((aligned(16)));
79 -(id)method2 {
protocol-attribute.m 13 +method2;
  /external/chromium_org/third_party/libjingle/source/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));
  /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/chromium_org/v8/test/cctest/
test-func-name-inference.cc 149 " this.method2 = function() { return 2; }\n"
152 CheckFunctionName(script, "return 2", "MyClass.method2");
165 " obj.method2 = function() { return 2; }\n"
169 CheckFunctionName(script, "return 2", "obj.method2");
200 "MyClass.prototype.method2 = function() { return 2; }\n"
205 CheckFunctionName(script, "return 2", "MyClass.method2");
220 " method2: function() { return 2; } }");
222 CheckFunctionName(script, "return 2", "MyClass.method2");
382 " obj[\"method2\"] = function() { return 2; }\n"
386 CheckFunctionName(script, "return 2", "obj.method2");
    [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):
74 if not ParametersAreEqual(method1.parameters[i], method2.parameters[i]):
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
pepper_interface_mock.h 24 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
  /external/clang/test/Index/
complete-synthesized.m 29 - (short)method2 {
  /external/smali/baksmali/src/test/resources/LocalTest/
LocalTest.smali 22 .method public static method2(IJLjava/lang/String;)V
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
real_pepper_interface.cc 28 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
55 #define METHOD2(BaseClass, ReturnType, MethodName, Type0, Type1) \

Completed in 4393 milliseconds

1 2 3