/external/clang/test/CodeGen/ |
merge-statics.c | 8 struct s *ap1 = &a; variable in typeref:struct:s
|
/external/clang/test/Analysis/ |
malloc-sizeof.c | 20 struct A *ap1 = calloc(1, sizeof(struct A)); local 21 struct A *ap2 = calloc(2, sizeof(*ap1)); 22 struct A *ap3 = calloc(2, sizeof(ap1)); // expected-warning {{Result of 'calloc' is converted to type 'struct A *', whose pointee type 'struct A' is incompatible with sizeof operand type 'struct A *'}}
|
/system/core/sh/ |
options.c | 318 char **ap1, **ap2; local 327 for (ap1 = shellparam.p ; --n >= 0 ; ap1++) { 329 ckfree(*ap1); 332 while ((*ap2++ = *ap1++) != NULL);
|
/external/opencv/cv/src/ |
cvcontourtree.cpp | 78 a, ap1, ap2, an1, an2, b, bp1, bp2, bn1, bn2; local 207 &ap1, &bp1 )); 355 ap2 = ap1; 356 ap1 = a; 399 icvCalcTriAttr( contour, tp1, tn2, nmn2, t, nm, &sp1, &sp1_c, &hp1, &ap1, 484 tree_one.r1 = hp1 / ap1; 485 tree_one.r2 = bp1 / ap1;
|
/libcore/luni/src/test/java/libcore/java/util/prefs/ |
OldAbstractPreferencesTest.java | 765 AbstractPreferences ap1 = (AbstractPreferences) pref.node("First node"); local 1008 AbstractPreferences ap1 = (AbstractPreferences) pref.node("First node"); local 1014 ap1.putInt("FirstIntValue", 11); 1025 assertEquals(11, ap1.getInt("FirstIntValue", 22)); [all...] |