/external/clang/test/SemaCXX/ |
PR5086-ambig-resolution-enum.cpp | 7 const char * fun1(int , enum E) const; 8 int fun1(unsigned, const char *) const; 13 const char *p = rc.fun1(BUFLEN - 2, C::e1);
|
warn-tautological-compare.cpp | 65 void fun1(); 79 if (fun1 == 0) {} 80 // expected-warning@-1{{comparison of function 'fun1' equal to a null pointer is always false}} 93 if (nullptr != fun1) {} 94 // expected-warning@-1{{comparison of function 'fun1' not equal to a null pointer is always true}}
|
member-expr.cpp | 158 Vec fun1(); 159 int test1() { return fun1.size(); } // expected-error {{base of member reference is a function; perhaps you meant to call it with no arguments}}
|
/external/clang/test/Sema/ |
alias-redefinition.c | 7 void fun1() {} // expected-note {{previous definition}} function 8 void fun1(void) __attribute((alias("f1"))); // expected-error {{redefinition of 'fun1'}}
|
/external/chromium_org/v8/test/cctest/ |
test-compiler.cc | 236 Handle<Object> fun1 = Object::GetProperty( local 238 CHECK(fun1->IsJSFunction()); 243 Handle<JSFunction>::cast(fun1), 302 "fun1 = fun;" 303 "function f(a) { a(); } f(fun1);"); 319 CompileRun("%OptimizeFunctionOnNextCall(f); f(fun1);"); 388 Handle<JSFunction> fun1 = v8::Utils::OpenHandle( local 392 CHECK(fun1->IsOptimized() 393 || !CcTest::i_isolate()->use_crankshaft() || !fun1->IsOptimizable()); 396 CHECK_EQ(fun1->code(), fun2->code()) [all...] |
test-func-name-inference.cc | 106 "fun1 = function() { return 1; }\n" 108 CheckFunctionName(script, "return 1", "fun1"); 119 "var fun1 = function() { return 1; }\n" 121 CheckFunctionName(script, "return 1", "fun1"); 133 " var fun1 = function() { return 1; }\n" 136 CheckFunctionName(script, "return 1", "fun1"); 249 "fun1 = 0 ?\n" 252 CheckFunctionName(script, "return 1", "fun1"); 253 CheckFunctionName(script, "return 2", "fun1"); 347 "var fun1 = fun2 = function () { return 1; }\n [all...] |
test-object-observe.cc | 76 context4->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "fun1"), 82 CompileRun("fun1(); fun2(); fun3(); Object.deliverChangeRecords(observer)");
|
test-heap.cc | 3102 v8::Local<v8::Value> fun1, fun2; local [all...] |
test-api.cc | 298 env->Global()->Set(v8_str("Fun1"), fun->GetFunction()); 300 v8::Handle<Value> value1 = CompileRun("Fun1(4) == '';"); 303 v8::Handle<Value> value2 = CompileRun("Fun1(new Cons()) == '[object Cons]';"); 306 v8::Handle<Value> value3 = CompileRun("Fun1() == '';"); [all...] |
/external/llvm/test/CodeGen/X86/ |
dagcombine-shifts.ll | 12 define i16 @fun1(i8 zeroext %v) { 20 ; CHECK-LABEL: @fun1
|
/packages/apps/Calculator/ |
arity-2.1.2.jar | |