Searched refs:fun1 (Results 1 - 6 of 6) sorted by relevance

/external/clang/test/SemaCXX/
H A DPR5086-ambig-resolution-enum.cpp7 const char * fun1(int , enum E) const;
8 int fun1(unsigned, const char *) const;
13 const char *p = rc.fun1(BUFLEN - 2, C::e1);
H A Dwarn-tautological-compare.cpp65 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}}
H A Dmember-expr.cpp158 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/
H A Dalias-redefinition.c7 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/
H A Dtest-compiler.cc232 Handle<Object> fun1 = Object::GetProperty( local
234 CHECK(fun1->IsJSFunction());
239 Handle<JSFunction>::cast(fun1),
298 "fun1 = fun;"
299 "function f(a) { a(); } f(fun1);");
316 CompileRun("%OptimizeFunctionOnNextCall(f); f(fun1);");
385 Handle<JSFunction> fun1 = v8::Utils::OpenHandle( local
389 CHECK(fun1->IsOptimized()
390 || !CcTest::i_isolate()->use_crankshaft() || !fun1->IsOptimizable());
393 CHECK_EQ(fun1
[all...]
H A Dtest-heap.cc3123 v8::Local<v8::Value> fun1, fun2; local
3128 fun1 = env->Global()->Get(v8_str("fun"));
3139 CcTest::global()->Set(v8_str("fun1"), fun1);
3141 CompileRun("function f(a, b) { a(); b(); } f(fun1, fun2);");

Completed in 5293 milliseconds