HomeSort by relevance Sort by last modified time
    Searched defs:f2 (Results 176 - 200 of 553) sorted by null

1 2 3 4 5 6 78 91011>>

  /ndk/sources/cxx-stl/gabi++/tests/
catch_class_02.cpp 48 void f2() function
73 f2();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/
imbue.pass.cpp 50 void f2(std::ios_base::event ev, std::ios_base& stream, int index) function
81 b.register_callback(f2, 5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.async/
async.pass.cpp 41 void f2() function
127 std::future<void> f = std::async(f2);
135 std::future<void> f = std::async(std::launch::async, f2);
143 std::future<void> f = std::async(std::launch::any, f2);
151 std::future<void> f = std::async(std::launch::deferred, f2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
copy.pass.cpp 73 std::function<int(int)> f2 = f; local
76 assert(f2.target<A>());
77 assert(f2.target<int(*)(int)>() == 0);
86 std::function<int(int)> f2 = f; local
88 assert(f2.target<int(*)(int)>());
89 assert(f2.target<A>() == 0);
97 std::function<int(int)> f2 = f; local
99 assert(f2.target<int(*)(int)>() == 0);
100 assert(f2.target<A>() == 0);
110 std::function<int(int)> f2 = std::move(f) local
    [all...]
copy_assign.pass.cpp 73 std::function<int(int)> f2; local
74 f2 = f;
77 assert(f2.target<A>());
78 assert(f2.target<int(*)(int)>() == 0);
87 std::function<int(int)> f2; local
88 f2 = f;
90 assert(f2.target<int(*)(int)>());
91 assert(f2.target<A>() == 0);
99 std::function<int(int)> f2; local
100 f2 = f
113 std::function<int(int)> f2; local
    [all...]
  /ndk/sources/host-tools/toolbox/
cmp_win.c 62 FILE *f2 = _tfopen(argv[2], L"rb"); local
63 if (!f2) {
73 n2 = fread(buf2, 1, BUFSIZE, f2);
77 fclose(f2);
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
Blort.java 22 float f2 = 0.0f; local
  /external/chromium_org/v8/test/mjsunit/compiler/
simple-global-access.js 35 function f2() { this.x = g1; this.y = g2; this.z = g3; } class
38 var o = { x:0, y:0, z:0, test1:f1, test2:f2, test3:f3 }
  /external/chromium_org/v8/test/mjsunit/
switch.js 48 function f2(x) { function
69 assertEquals("zero", f2(0), "0-1-switch.0");
70 assertEquals("one", f2(1), "0-1-switch.1");
71 assertEquals("default", f2(7), "0-1-switch.2");
72 assertEquals("default", f2(-1), "0-1-switch.-1");
73 assertEquals("default", f2(NaN), "0-1-switch.NaN");
74 assertEquals("default", f2(Math.pow(2,34)), "0-1-switch.largeNum");
75 assertEquals("default", f2("0"), "0-1-switch.string");
76 assertEquals("default", f2(false), "0-1-switch.bool");
77 assertEquals("default", f2(null), "0-1-switch.null")
    [all...]
  /external/chromium_org/v8/test/webkit/
toString-elision-trailing-comma.js 32 function f2() { function
117 testToStringAndLength("f2", 1, 1);
  /external/clang/test/Analysis/
cxx-crashes.cpp 12 long f2(char *c) { function
stream.c 23 void f2(void) { function
  /external/clang/test/CXX/temp/temp.spec/
no-body.cpp 58 template<typename T> void f2(T) { } function
62 template void f2<int>(int) { } // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} function
  /external/clang/test/CodeGen/
bitfield.c 41 static int f2(void) { function
54 return f2() - 9;
functions.c 26 void f2(void) { function
pointer-arithmetic.c 11 void *f2(void *a, int b) { return a + b; } function
staticinit.c 33 char *f2(char key) { function
  /external/clang/test/CodeGenCXX/
rvalue-references.cpp 36 int &&f2() { return static_cast<int&&>(getIntPRValue()); } function
  /external/clang/test/Sema/
ext_vector_casts.c 49 void inc(float2 f2) {
50 f2++; // expected-error{{cannot increment value of type 'float2'}}
51 __real f2; // expected-error{{invalid type 'float2' to __real operator}} local
vector-init.c 25 __attribute__((vector_size(16))) float f2( function
vla.c 20 void f2(unsigned int m) function
warn-strlcpycat-size.c 14 char f2[100][3]; member in struct:__anon18769
26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
warn-strncat-size.c 20 char f2[100][3]; member in struct:__anon18770
41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
warn-unused-function.c 6 static void f2() {} function
7 static void f1() {f2();} // expected-warning{{unused}}
  /external/clang/test/SemaCXX/
constructor.cpp 68 void f2();
82 void A::S::f2() {} function in class:A::S

Completed in 1330 milliseconds

1 2 3 4 5 6 78 91011>>