HomeSort by relevance Sort by last modified time
    Searched defs:g2 (Results 26 - 50 of 166) sorted by null

12 3 4 5 6 7

  /external/clang/test/Sema/
attr-deprecated-message.c 24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' has been explicitly marked deprecated here}} variable
30 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}
constant-builtins.c 8 long double g2 = __builtin_huge_vall(); variable
warn-missing-prototypes.c 12 static int g2();
14 int g2(int x) { return x; } function
  /external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
copy.pass.cpp 62 char g1, g2, g3, p1, p3; local
64 t.setg(&g1, &g2, &g3);
69 wchar_t g1, g2, g3, p1, p3; local
71 t.setg(&g1, &g2, &g3);
  /external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
assign.pass.cpp 65 char g1, g2, g3, p1, p3; local
67 t.setg(&g1, &g2, &g3);
73 wchar_t g1, g2, g3, p1, p3; local
75 t.setg(&g1, &g2, &g3);
swap.pass.cpp 75 char g1, g2, g3, p1, p3; local
77 t.setg(&g1, &g2, &g3);
83 wchar_t g1, g2, g3, p1, p3; local
85 t.setg(&g1, &g2, &g3);
  /external/nanopb-c/examples/using_double_on_avr/
test_conversions.c 34 uint64_t g2 = got_double; local
42 if (g2 != e2)
45 (unsigned long long)g2,
  /external/valgrind/main/tests/
os_test.c 32 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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
copy.pass.cpp 62 char g1, g2, g3, p1, p3; local
64 t.setg(&g1, &g2, &g3);
69 wchar_t g1, g2, g3, p1, p3; local
71 t.setg(&g1, &g2, &g3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
assign.pass.cpp 65 char g1, g2, g3, p1, p3; local
67 t.setg(&g1, &g2, &g3);
73 wchar_t g1, g2, g3, p1, p3; local
75 t.setg(&g1, &g2, &g3);
swap.pass.cpp 75 char g1, g2, g3, p1, p3; local
77 t.setg(&g1, &g2, &g3);
83 wchar_t g1, g2, g3, p1, p3; local
85 t.setg(&g1, &g2, &g3);
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
ImageUtils.java 215 Graphics2D g2 = scaled.createGraphics(); local
216 g2.setComposite(AlphaComposite.Src);
217 g2.setColor(new Color(0, true));
218 g2.fillRect(0, 0, destWidth, destHeight);
220 g2.drawImage(source, 0, 0, null);
222 setRenderingHints(g2);
223 g2.drawImage(source, 0, 0, destWidth, destHeight, 0, 0, sourceWidth, sourceHeight,
226 g2.dispose();
265 Graphics2D g2 = scaled.createGraphics(); local
266 setRenderingHints(g2);
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
assignment-deopt.js 132 var g2 = {y:0, x:42};
143 assertEquals(43, assign10(g2));
144 assertEquals(43, g2.x);
simple-global-access.js 30 var g2 = 43; variable
35 function f2() { this.x = g1; this.y = g2; this.z = g3; }
  /external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp 19 void g2() { function in namespace:DontResolveTooEarly_WaitForOverloadResolution
  /external/clang/test/CodeGen/
bitfield.c 60 int g2(void) { function
61 // CHECK-LABEL: @g2()
63 // PATH-LABEL: @g2()
complex.c 22 _Complex double g1, g2; variable
27 g1 = g1 + g2;
28 g1 = g1 - g2;
29 g1 = g1 * g2;
  /external/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
copyfmt.pass.cpp 79 void g2(std::ios_base::event ev, std::ios_base& stream, int index) function
140 ios2.register_callback(g2, 8);
move.pass.cpp 61 void g2(std::ios_base::event ev, std::ios_base& stream, int index) function
91 ios2.register_callback(g2, 8);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
copyfmt.pass.cpp 79 void g2(std::ios_base::event ev, std::ios_base& stream, int index) function
140 ios2.register_callback(g2, 8);
move.pass.cpp 61 void g2(std::ios_base::event ev, std::ios_base& stream, int index) function
91 ios2.register_callback(g2, 8);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ShadowPainter.java 78 Graphics2D g2 = image.createGraphics(); local
79 g2.drawImage(image, shadowSize, shadowSize, null);
161 g2.drawImage(source, null, 0, 0);
162 g2.dispose();
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 229 Graphics2D g2 = getGraphics(); local
235 g2.setColor(Color.WHITE);
237 g2.setPaint(new GradientPaint(bounds.x, bounds.y,
242 g2.setPaint(new GradientPaint(bounds.x, bounds.y, filteredGradient.getColor1(),
246 g2.setPaint(new GradientPaint(bounds.x, bounds.y, selectedGradient.getColor1(),
249 g2.fillRect(bounds.x, bounds.y, bounds.width, bounds.height);
  /external/chromium_org/v8/test/mjsunit/harmony/
block-let-semantics.js 118 assertEquals(3, g2());
119 assertEquals(3, eval("g2()"));
121 function g2() {
  /external/clang/test/CodeGenCXX/
mangle-ms-back-references.cpp 33 void g2(struct S a, struct S b) {} function
34 // CHECK: "\01?g2@@YAXUS@@0@Z"

Completed in 7794 milliseconds

12 3 4 5 6 7