Searched refs:g3 (Results 1 - 25 of 74) sorted by relevance

123

/external/clang/test/CodeGen/
H A Ddarwin-string-literals.c19 const void *g3 = __builtin___CFStringMakeConstantString("testâ„¢"); variable
H A Dbitfield-2.c144 struct s3 g3 = { 0xdeadbeef, 0xdeadbeef }; variable in typeref:struct:s3
163 struct s3 g3 = { 0xdeadbeef, 0xdeadbeef }; local
165 res ^= g3.f0 ^ g3.f1;
166 res ^= f3_load(&g3) ^ f3_store(&g3) ^ f3_reload(&g3);
167 res ^= g3.f0 ^ g3.f1;
/external/llvm/test/MC/ELF/
H A Dcomdat.s43 // Test that g1 and g2 are local, but g3 is an undefined global.
65 // CHECK-NEXT: (('st_name', 0x00000007) # 'g3'
85 .section .baz,"axG",@progbits,g3,comdat
86 .long g3
/external/clang/test/SemaCXX/
H A Dwarn-unused-result.cpp10 S &g3() __attribute__((warn_unused_result));
16 g3(); // expected-warning {{ignoring return value}}
21 (void)g3();
27 g3().t();
32 S &s3 = g3();
H A Daddr-of-overloaded-function.cpp26 template<typename T> T g3(T);
27 int g3(int);
28 int g3(char);
33 g(g3);
/external/v8/test/mjsunit/compiler/
H A Dsimple-global-access.js31 var g3 = 44; variable
35 function f2() { this.x = g1; this.y = g2; this.z = g3; }
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp13.cpp7 void g3(int = ([=]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-cxx03-extra-copy.cpp51 void g3(const X3&);
58 g3(X3()); // expected-warning{{no viable constructor copying parameter of type 'X3'}}
H A Dp5-cxx0x-no-extra-copy.cpp42 void g3(const X3&);
48 g3(X3());
/external/clang/test/Sema/
H A Dalign-x86.c17 _Complex double g3; variable
18 short chk1[__alignof__(g3) == 8 ? 1 : -1];
H A Dprivate-extern.c12 int g3; // expected-note{{previous definition}} variable
13 static int g3; // expected-error{{static declaration of 'g3' follows non-static declaration}} variable
H A Dattr-weak.c6 int g3 __attribute__((weak_import)); // expected-warning {{'weak_import' attribute cannot be specified on a definition}} variable
H A Dconstant-builtins.c9 float g3 = __builtin_inf(); variable
H A Dfunction-redecl.c45 extern void g3(int); // expected-note{{previous declaration is here}}
46 static void g3(int x) { } // expected-error{{static declaration of 'g3' follows non-static declaration}} function
H A Dattr-cleanup.c7 static int g3 __attribute((cleanup(c1))); // expected-warning {{cleanup attribute ignored}}
H A Dconstant-builtins-2.c9 double g3 = __builtin_inf(); variable
/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);
51 if (a3 >= g3) return True;
/external/clang/test/PCH/
H A Dchain-staticvar-instantiation.cpp42 int g3 = NS::TS<int, 2>::value;
/external/jmonkeyengine/engine/src/test/jme3test/model/shape/
H A DTestBillboard.java61 Geometry g3 = new Geometry("Quad2", q2);
64 g3.setMaterial(mat2);
65 g3.setLocalTranslation(.5f, .5f, .01f);
77 bb.attachChild(g3);
/external/clang/test/CXX/except/except.spec/
H A Dp5-virtual.cpp50 virtual void g3() throw(A); // expected-note {{overridden virtual function is here}}
86 virtual void g3() throw(D); // expected-error {{exception specification of overriding function is more lax}}
/external/clang/test/Analysis/
H A Dstack-addr-ps.cpp16 const int& g3() { function
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp11.cpp29 void g3() { function
/external/clang/test/SemaTemplate/
H A Dcurrent-instantiation.cpp47 void g3(T&); // expected-note{{previous}}
48 void g3(typename X0::U_type&);
49 void g3(typename ::X0<T_type, U_type>::T_type&); // expected-error{{redecl}}
120 void g3(T&); // expected-note{{previous}}
121 void g3(typename X0::U_type&);
122 void g3(typename ::X0<T_type*, U_type*>::T_type&); // expected-error{{redecl}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp5.cpp10 constexpr int g3(int n) { return f(n*0); } function in namespace:StdExample
24 static_assert(g3(0) == 1, "");
25 static_assert(g3(1) == 1, "");
/external/v8/test/mjsunit/regress/
H A Dregress-1229.js77 function g3(z, y, x) { function
121 invoke(g3, [4, 3, 2]);

Completed in 1716 milliseconds

123