HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 326 - 350 of 744) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaTemplate/
constructor-template.cpp 123 foo f1; local
124 foo f2(f1);
125 foo f3 = f1;
dependent-type-identity.cpp 35 void f1(T*); // expected-note{{previous}}
36 void f1(U*);
37 void f1(type*); // expected-error{{redeclar}}
  /libcore/luni/src/main/java/java/lang/
Math.java 475 public static float max(float f1, float f2) {
476 if (f1 > f2) {
477 return f1;
479 if (f1 < f2) {
483 if (f1 != f2) {
488 if (Float.floatToRawIntBits(f1) != 0) {
551 public static float min(float f1, float f2) {
552 if (f1 > f2) {
555 if (f1 < f2) {
556 return f1;
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
FloatTest.java 118 float f1 = 0; local
120 f1 = Float.MIN_VALUE;
122 assertEquals(f1, 0f);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/basic.ios.members/
imbue.pass.cpp 31 void f1(std::ios_base::event ev, std::ios_base& stream, int index) function
74 ios.register_callback(f1, 4);
90 ios.register_callback(f1, 4);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.once/thread.once.callonce/
call_once.pass.cpp 76 void f1() function
179 std::thread t0(f1);
180 std::thread t1(f1);
  /external/clang/test/Analysis/
CFNumber.c 18 CFNumberRef f1(unsigned char x) { function
cxx-crashes.cpp 6 int f1(char *dst) { function
method-call.cpp 22 void f1() { function
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
p1.cpp 7 [[carries_dependency]] void f1(); // FIXME: warn here
  /external/clang/test/CXX/except/except.spec/
p1.cpp 29 void f1() noexcept { }
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3.cpp 15 template<typename T> A<T> f1(T&);
18 A<int> a0 = f1(i);
19 A<const int> a1 = f1(ci);
20 A<volatile int> a2 = f1(vi);
  /external/clang/test/CodeGenCXX/
constructor-direct-call.cpp 8 void f1() { function
mangle-neon-vectors.cpp 18 void f1(int32x2_t v) { } function
  /external/clang/test/FixIt/
fixit.c 33 void f1(x, y) // expected-warning 2{{defaulting to type 'int'}} function
  /external/clang/test/PCH/
stmts.h 58 int f1(int x) { function
  /external/clang/test/Parser/
attr-availability.c 9 void f1() __attribute__((availability(macosx,deprecated=10.4,introduced=10.2,obsoleted=10.6)));
  /external/clang/test/Sema/
pragma-unused.c 3 void f1(void) { function
private-extern.c 26 void f1() { function
vector-init.c 20 __attribute__((vector_size(16))) float f1(void) { function
warn-unused-function.c 7 static void f1() {f2();} // expected-warning{{unused}} function
  /external/clang/test/SemaCXX/
cast-conversion.cpp 44 void f1() { function in class:C
conversion-delete-expr.cpp 26 void f1 (D1 d) function
cxx11-attr-print.cpp 31 // CHECK: int f1() __attribute__((warn_unused_result));
32 int f1() __attribute__((warn_unused_result));
function-redecl.cpp 5 void f1() { function in namespace:N

Completed in 480 milliseconds

<<11121314151617181920>>