Searched refs:g2 (Results 1 - 25 of 135) sorted by relevance

123456

/external/clang/test/CodeGen/
H A Ddarwin-string-literals.c18 const void *g2 = __builtin___CFStringMakeConstantString("hello \u2192 \u2603 \u2190 world"); variable
H A Dconst-arithmetic.c4 // CHECK: @g2 = global [2 x i8*] [i8* getelementptr (i8* getelementptr inbounds ([0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -2), i8* getelementptr (i8* getelementptr inbounds ([0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -46)], align 16
8 void *g2[] = {g0 - 1, g0 - 23 }; variable
H A Dcomplex.c22 _Complex double g1, g2; variable
27 g1 = g1 + g2;
28 g1 = g1 - g2;
29 g1 = g1 * g2;
H A Dextern-inline.c18 int g2(void) {return f2(0,1);} function
/external/clang/test/CXX/expr/
H A Dp10-0x.cpp6 } g2; variable in typeref:struct:S
20 g2.a;
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp12 int &g2(const int &);
13 float &g2(int &&);
14 int &j2 = g2(i);
15 float &k2 = g2(f1());
16 float &l2 = g2(f2());
/external/clang/test/SemaCXX/
H A Dwarn-unused-result.cpp9 S *g2() __attribute__((warn_unused_result));
15 g2(); // expected-warning {{ignoring return value}}
20 (void)g2();
26 g2()->t();
31 S *s2 = g2();
/external/clang/test/Sema/
H A Dconstant-builtins.c7 long double g2 = __builtin_huge_vall(); variable
H A Dwarn-missing-prototypes.c11 static int g2();
13 int g2(int x) { return x; } function
H A Dattr-deprecated-message.c24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' declared here}} variable
30 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}
H A Dattr-weak.c5 int g2 __attribute__((weak)); variable
H A Dalign-x86.c8 long long g2; variable
9 short chk1[__alignof__(g2) == 8 ? 1 : -1];
/external/v8/test/mjsunit/compiler/
H A Dregress-or.js47 if (!x || !g2()) {
53 function g2() { try { return 0; } finally {} } function
H A Dsimple-global-access.js30 var g2 = 43; variable
35 function f2() { this.x = g1; this.y = g2; this.z = g3; }
/external/v8/test/mjsunit/
H A Dgetter-in-prototype.js68 function g2() { class
77 assertDoesNotThrow(g2);
H A Dstrict-mode-implicit-receiver.js127 function g2() { function
134 assertTrue(typeof g2() == "object");
135 assertTrue(typeof g2(42) == "object");
137 %OptimizeFunctionOnNextCall(g2);
138 assertTrue(typeof g2() == "object");
139 assertTrue(typeof g2(42) == "object");
/external/openssl/crypto/asn1/
H A Da_utctm.c250 #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') macro
256 offset = g2(s->data+13)*60+g2(s->data+15);
266 year = g2(s->data);
270 return_cmp(g2(s->data+2) - 1, tm->tm_mon);
271 return_cmp(g2(s->data+4), tm->tm_mday);
272 return_cmp(g2(s->data+6), tm->tm_hour);
273 return_cmp(g2(s->data+8), tm->tm_min);
274 return_cmp(g2(s->data+10), tm->tm_sec);
275 #undef g2 macro
[all...]
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp16.cpp5 template<class X2> void g2(T, X2);
23 void A<int>::g2<char>(int, char); // X2 specified as char
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp13.cpp6 void g2(int = ([i]{ return 0; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
/external/clang/test/CodeGenCXX/
H A Dmember-function-pointer-calls.cpp20 int g2() { function
/external/llvm/test/MC/ELF/
H A Dcomdat.s43 // Test that g1 and g2 are local, but g3 is an undefined global.
55 // CHECK-NEXT: (('st_name', 0x00000004) # 'g2'
82 .section .zed,"axG",@progbits,g2,comdat
/external/valgrind/main/tests/
H A Dos_test.c32 int a1, a2, a3, g1, g2, g3; // 'a' = actual; 'g' = given local
42 if (sscanf(min_version, "%d.%d.%d", &g1, &g2, &g3) != 3) return False;
45 // printf("given %d %d %d\n", g1, g2,g3);
49 if (a2 > g2) return True;
50 if (a2 < g2) return False;
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp3-0x.cpp9 auto g2() const noexcept(noexcept(f((*this).ptr))) -> decltype(f(ptr));
14 float &fr = a.g2();
16 static_assert(noexcept(a.g2()), "exception-specification failure");
34 auto g2() const noexcept(noexcept(f(((this))->ptr))) -> decltype(f(ptr));
40 float &fr = ci.g2();
42 static_assert(noexcept(ci.g2()), "exception-specification failure");
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-cxx03-extra-copy.cpp50 void g2(const X2&);
57 g2(X2()); // expected-warning{{C++98 requires an accessible copy constructor for class 'X2' when binding a reference to a temporary; was private}}
H A Dp5-cxx0x-no-extra-copy.cpp41 void g2(const X2&);
47 g2(X2());

Completed in 398 milliseconds

123456