Searched refs:f1 (Results 101 - 125 of 499) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dknr-def-call.c9 void f1(a, b) int a, b; {} function
11 f1(1, 2, 3); // expected-warning{{too many arguments}}
18 f3 t3(int b) { return b? f0 : f1; } // okay
H A Dwarn-unused-parameters.c10 void f1() { function
/external/clang/test/SemaTemplate/
H A Dcanonical-expr-type-0x.cpp19 N<sizeof...(T)> f1() {} // expected-note{{previous}} function
22 N<sizeof...(T)> f1() {} function
25 N<sizeof...(U)> f1() {} // expected-error{{redefinition}} function
H A Dmember-function-template.cpp11 template<typename T> T& f1(T);
12 template<typename T, typename U> U& f1(T, U);
15 int &ir1 = f1(i);
16 int &ir2 = f1(d, i);
17 int &ir3 = f1(i, i);
27 int &ir1 = x.f1(i);
28 int &ir2 = x.f1(f, i);
29 int &ir3 = x.f1(i, i);
38 int& (X::*pm1)(int) = &X::f1;
39 float& (X::*pm2)(float) = &X::f1;
[all...]
H A Dmember-template-access-expr.cpp8 int &f1(T t) { function
26 int &ir = f1<X>(xd);
54 int* f1(int);
55 template<typename T> float* f1(T);
62 float *fp1 = x1.f1<>(17);
63 float *fp2 = x1.f1<int>(3.14); // expected-warning {{implicit conversion from 'double' to 'int' changes value from 3.14 to 3}}
64 int *ip1 = x1.f1(17);
65 float *ip2 = x1.f1(3.14);
67 float* (X1::*mf1)(int) = &X1::f1;
68 float* (X1::*mf2)(int) = &X1::f1<>;
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-2071.js33 a.f = (function f1() {
46 a.g = (function f1() {
63 a.h = (function f1() {
/external/clang/test/Analysis/
H A Dchroot.c9 void f1(void) { function
H A Dexercise-ps.c7 static void f1(const char *x, char *y) { function
/external/clang/test/CXX/class/class.local/
H A Dp3.cpp3 void f1() { function
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp6-0x.cpp4 void f1() &&; // expected-error {{non-member function cannot have '&&' qualifier}}
9 void f1() &&;
46 func_type_rvalue f1; member in struct:Y
50 void (X::*mpf2)() && = &X::f1;
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dcg.cpp18 b = f1();
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp9-linkage.cpp47 inline void f1(T& t) { function
52 extern template void f1<>(int *&);
63 f1(ip);
65 f1(fp);
H A Dp9.cpp44 inline void f1(T& t) { function
49 extern template void f1<>(int *&);
57 f1(ip); // expected-note{{instantiation}}
58 f1(fp); // expected-note{{instantiation}}
/external/clang/test/CXX/temp/temp.spec/temp.inst/
H A Dp11.cpp13 void f1(A<int> x) { x.Allocate(); } function in namespace:test0
/external/clang/test/CodeGen/
H A D2008-07-30-implicit-initialization.c18 int f1() {
H A Dbitfield-promote.c10 long long f1(void) { function
H A Ddecl-in-prototype.c5 // CHECK: define i32 @f1
6 int f1(enum {AA,BB} E) { function
H A D2007-09-28-PackedUnionMember.c5 unsigned long f1; member in struct:H
19 unsigned long f1; member in struct:E
H A Dregparm.c17 void FASTCALL f1(int i, int j, int k);
18 // CHECK: define void @f1(i32 inreg %i, i32 inreg %j, i32 %k)
19 void f1(int i, int j, int k) { } function
H A Dstruct-passing.c11 T0 __attribute__((pure)) f1(void);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
20 // CHECK: declare i32 @f1() nounwind readonly
/external/clang/test/CodeGenCXX/
H A Dmangle-variadic-templates.cpp22 template<typename ...Types> void f1() {} function
24 template void f1<>();
26 template void f1<int>();
28 template void f1<int, float>();
/external/clang/test/PCH/
H A Dstmts.c9 int g1(int x) { return f1(x); }
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1-retmem.cpp11 value_type *f1();
21 typename X0<U>::value_type *X0<U>::f1() { function in class:X0
/external/clang/test/Index/
H A Dcomplete-exprs.c10 struct X __attribute__((deprecated)) f1 = { 17 }; variable in typeref:struct:X
11 void f2() { f1(17); }
54 // CHECK-CC4: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated)
64 // CHECK-CC7: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated)
/external/clang/test/Modules/Inputs/
H A Dmodule_private_left.h10 __module_private__ void f1(T*);
13 __module_private__ void f1(T*);

Completed in 285 milliseconds

1234567891011>>