HomeSort by relevance Sort by last modified time
    Searched refs:fun2 (Results 1 - 11 of 11) sorted by null

  /external/clang/test/PCH/
struct.c 18 struct Fun2 {
23 return fun2->very_fun;
struct.h 24 struct Fun2;
25 struct Fun2 *fun2; variable in typeref:struct:Fun2
  /external/clang/test/SemaCXX/
warn-tautological-compare.cpp 66 int fun2();
76 (void)CallFunction(fun2);
82 if (fun2 == 0) {}
83 // expected-warning@-1{{comparison of function 'fun2' equal to a null pointer is always false}}
96 if (nullptr != fun2) {}
97 // expected-warning@-1{{comparison of function 'fun2' not equal to a null pointer is always true}}
member-expr.cpp 132 S fun2(); // expected-note{{possible target for call}}
133 S fun2(int i); // expected-note{{possible target for call}}
135 return fun2.x; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
160 Vec *fun2();
161 int test2() { return fun2->size(); } // expected-error {{base of member reference is a function; perhaps you meant to call it with no arguments}}
qual-id-test.cpp 58 void fun2() function in namespace:C
  /external/clang/test/Sema/
alias-redefinition.c 11 void fun2(void) __attribute((alias("f2"))); // expected-note {{previous definition}}
12 void fun2() {} // expected-error {{redefinition of 'fun2'}} function
  /external/ltrace/testsuite/ltrace.main/
parameters2.exp 145 void fun2(bitvec(array(char, 32)*));
148 void fun2(unsigned char *arr);
151 void fun2(unsigned char *arr) {}
161 fun2(bytes);
167 {{fun2\(<8-15,255>\) *= <void>} == 1}
  /external/chromium_org/v8/test/mjsunit/
object-literal-overwrite.js 116 function fun2() { function
121 var y = fun2();
  /external/chromium_org/v8/test/cctest/
test-compiler.cc 387 Handle<JSFunction> fun2 = v8::Utils::OpenHandle( local
391 CHECK(fun2->IsOptimized()
392 || !CcTest::i_isolate()->use_crankshaft() || !fun2->IsOptimizable());
393 CHECK_EQ(fun1->code(), fun2->code());
test-heap.cc 3123 v8::Local<v8::Value> fun1, fun2; local
    [all...]
test-api.cc 320 v8::Handle<v8::FunctionTemplate> fun2 = local
329 env->Global()->Set(v8_str("Fun2"), fun2->GetFunction());
331 "Fun2(new Cons1(), new Cons2(), new Cons3()) =="
336 "Fun2(new Cons1(), new Cons2(), 5) == '[object Cons1],[object Cons2],'");
340 "Fun2(new Cons3(), new Cons2(), new Cons1()) == ',[object Cons2],'");
344 "Fun2(new Cons1(), new Cons2(), new Cons3(), 'd') == "
349 "Fun2(new Cons1(), new Cons2()) == '[object Cons1],[object Cons2]'");
4589 const char* fun2 = "f(11)"; local
    [all...]

Completed in 627 milliseconds