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

  /external/clang/test/SemaCXX/
warn-tautological-undefined-compare.cpp 101 int& (*f_ptr)() = &get_int;
102 if (&(*f_ptr)() == 0) {}
104 if (&((*f_ptr)()) == 0) {}
107 if (&(*f_ptr)() != 0) {}
109 if (&((*f_ptr)()) != 0) {}
warn-undefined-bool-conversion.cpp 89 int& (*f_ptr)() = &get_int;
90 if (&(*f_ptr)()) {}
92 if (&((*f_ptr)())) {}
94 if (!&(*f_ptr)()) {}
uninitialized.cpp 373 F* F::*f_ptr = &F::f; member in class:__anon23198::F
385 G(char (*)[7]) : f3(f3->*f_ptr) {} // expected-warning {{field 'f3' is uninitialized when used here}}
  /system/core/libpixelflinger/codeflinger/
disassem.c 310 char* f_ptr; local
334 f_ptr = i_ptr->format;
338 if (*(f_ptr) < 'A' || *(f_ptr) > 'Z') {
343 while (*f_ptr) {
344 switch (*f_ptr) {
535 di->di_printf("[%c - unknown]", *f_ptr);
538 if (*(f_ptr+1) >= 'A' && *(f_ptr+1) <= 'Z')
539 ++f_ptr;
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-back-references.cpp 59 void h2(void (*f_ptr)(void *), void *arg) {}
  /external/clang/test/Sema/
attr-format.c 18 int (*f_ptr)(char*,...) __attribute__((format(printf, 1,2))); // no-error variable

Completed in 383 milliseconds