HomeSort by relevance Sort by last modified time
    Searched defs:g2 (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/clang/test/CodeGen/
const-arithmetic.c 4 // 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
darwin-string-literals.c 18 const void *g2 = __builtin___CFStringMakeConstantString("hello \u2192 \u2603 \u2190 world"); variable
extern-inline.c 18 int g2(void) {return f2(0,1);} function
  /external/v8/test/mjsunit/compiler/
regress-or.js 47 if (!x || !g2()) {
53 function g2() { try { return 0; } finally {} } function
count-deopt.js 163 var g2 = {y:0, x:42}
173 assertEquals(42, inc10(g2));
174 assertEquals(43, g2.x);
  /external/v8/test/mjsunit/
getter-in-prototype.js 68 function g2() { class
77 assertDoesNotThrow(g2);
debug-evaluate-locals-optimized-double.js 135 case 2: assertEquals(g2, frame.func().value()); break;
152 // expect an optimized frame for f with g1, g2 and g3 inlined.
200 function g2(i) { function
213 new g2(i - 1, a3, b3);
debug-evaluate-locals-optimized.js 125 case 2: assertEquals(g2, frame.func().value()); break;
142 // expect an optimized frame for f with g1, g2 and g3 inlined.
185 function g2(i) { function
194 new g2(i - 1, a3, b3);
debug-stepin-call-function-stub.js 74 function g2() { function
79 var f = g2;
98 // of call. Use different pair of functions so that g2 is compiled lazily.
103 expected_function_name = 'g2';
  /sdk/draw9patch/src/com/android/draw9patch/ui/
GradientPanel.java 37 Graphics2D g2 = (Graphics2D) g; local
38 Rectangle clip = g2.getClipBounds();
39 Paint paint = g2.getPaint();
41 g2.setPaint(new GradientPaint(0.0f, getHeight() * 0.22f, new Color(DARK_BLUE),
43 g2.fillRect(clip.x, clip.y, clip.width, clip.height);
45 g2.setPaint(paint);
  /external/clang/test/CXX/expr/
p10-0x.cpp 6 } g2; variable in typeref:struct:S
20 g2.a;
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
p9.cpp 23 void g2() { function in namespace:PR6707
  /external/clang/test/CodeGenCXX/
member-function-pointer-calls.cpp 20 int g2() { function
  /external/clang/test/Sema/
attr-weak.c 5 int g2 __attribute__((weak)); variable
constant-builtins.c 7 long double g2 = __builtin_huge_vall(); variable
warn-missing-prototypes.c 11 static int g2();
13 int g2(int x) { return x; } function
align-x86.c 8 long long g2; variable
9 short chk1[__alignof__(g2) == 8 ? 1 : -1];
attr-deprecated-message.c 24 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}}
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatch.java 213 Graphics2D g2 = buffer.createGraphics(); local
214 g2.drawImage(image, 1, 1, null);
215 g2.dispose();
  /sdk/assetstudio/src/com/android/assetstudiolib/
MenuIconGenerator.java 50 Graphics2D g2 = (Graphics2D) tempImage.getGraphics(); local
51 Util.drawCenterInside(g2, options.sourceImage, targetRect);
84 g2.dispose();
TabIconGenerator.java 50 Graphics2D g2 = (Graphics2D) tempImage.getGraphics(); local
51 Util.drawCenterInside(g2, options.sourceImage, targetRect);
137 g2.dispose();
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
p11.cpp 20 void g2() { function
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TestCollector.java 46 Geometry g2 = new Geometry("quad", new Quad(2,2)); local
50 List<Geometry> firstOne = TriangleCollector.gatherTris(new Geometry[]{ g, g2 }, tris);
  /external/v8/test/mjsunit/regress/
regress-1229.js 73 function g2(z, y, x) { function
120 invoke(g2, [3, 2, 4]);
  /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;

Completed in 283 milliseconds

1 2 3 4 5