/external/regex-re2/ |
testinstall.cc | 19 printf("PASS\n");
|
/external/v8/test/webkit/fast/js/ |
caller-property-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS childHasCallerWhenExecutingGlobalCode is false 30 PASS childHasCallerWhenCalledWithoutParent is false 31 PASS childHasCallerWhenCalledFromWithinParent is true 32 PASS nonStrictCaller(nonStrictCallee) is nonStrictCaller 36 PASS nonStrictCaller(boundNonStrictCallee) is nonStrictCaller 40 PASS nonStrictGetter(nonStrictAccessor) is nonStrictGetter 41 PASS nonStrictSetter(nonStrictAccessor) is true 48 PASS successfullyParsed is true
|
/external/valgrind/exp-sgcheck/tests/ |
hackedbz2.stdout.exp | 5 pass 1: size is 17143, grp uses are 38 62 2 92 6 71 6 pass 2: size is 6506, grp uses are 28 71 0 86 9 77 7 pass 3: size is 6479, grp uses are 26 70 0 81 11 83 8 pass 4: size is 6469, grp uses are 26 69 0 74 17 85
|
/external/valgrind/gdbserver_tests/ |
mcsignopass.stdoutB.exp | 1 Signal Stop Print Pass to program Description 3 Signal Stop Print Pass to program Description 5 Signal Stop Print Pass to program Description 51 Signal Stop Print Pass to program Description
|
/external/valgrind/memcheck/tests/ |
origin5-bz2.stdout.exp | 6 pass 1: size is 17143, grp uses are 38 62 2 92 6 71 7 pass 2: size is 6506, grp uses are 28 71 0 86 9 77 8 pass 3: size is 6479, grp uses are 26 70 0 81 11 83 9 pass 4: size is 6469, grp uses are 26 69 0 74 17 85
|
vcpu_bz2.stdout.exp | 5 pass 1: size is 17143, grp uses are 38 62 2 92 6 71 6 pass 2: size is 6506, grp uses are 28 71 0 86 9 77 7 pass 3: size is 6479, grp uses are 26 70 0 81 11 83 8 pass 4: size is 6469, grp uses are 26 69 0 74 17 85
|
/external/valgrind/none/tests/ |
ansi.c | 2 * -ansi. So valgrind.h shouldn't contain any code that won't pass -ansi,
|
/external/valgrind/none/tests/mips64/ |
cvm_bbit.c | 33 printf("TEST bbit0: %s\n", t1 == 0x08 ? "PASS" : "FAIL"); 34 printf("TEST bbit1: %s\n", t2 == 0xF7 ? "PASS" : "FAIL"); 71 printf("TEST bbit032: %s\n", lt1 == 0x0800000000 ? "PASS" : "FAIL"); 72 printf("TEST bbit132: %s\n", lt2 == 0xF700000000 ? "PASS" : "FAIL");
|
/frameworks/av/media/libeffects/lvm/lib/Bass/src/ |
LVDBE_Private.h | 86 Biquad_2I_Order2_Taps_t HPFTaps; /* High pass filter taps */ 87 Biquad_1I_Order2_Taps_t BPFTaps; /* Band pass filter taps */ 97 Biquad_Instance_t HPFInstance; /* High pass filter instance */ 98 Biquad_Instance_t BPFInstance; /* Band pass filter instance */
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/ |
FullscreenBlur.java | 84 RenderPass pass = new RenderPass();
local 85 pass.setColorTarget(color);
86 pass.setDepthTarget(depth);
87 pass.setShouldClearColor(false);
88 pass.setShouldClearDepth(false);
89 pass.setCamera(cam);
90 scene.appendRenderPass(pass);
91 return pass;
120 // Pass for selecting bright colors
|
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
shared.rsh | 7 bool pass;
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
shared.rsh | 7 bool pass;
|
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/ |
shared.rsh | 7 bool pass;
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/ |
viddec_pm_parse.h | 5 /* This structure is used by first pass parsing(sc detect), the pm passes information on number of bytes
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
new1.cpp | 2 // Test that when a constructor throws in a new-expression, we pass the
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
new1.cpp | 2 // Test that when a constructor throws in a new-expression, we pass the
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_util.py | 252 self.assertTrue(self.find_binding("a", "def a(): pass")) 253 self.assertTrue(self.find_binding("a", "def a(b, c, d): pass")) 255 self.assertFalse(self.find_binding("a", "def d(b, (c, a), e): pass")) 256 self.assertFalse(self.find_binding("a", "def d(a=7): pass")) 257 self.assertFalse(self.find_binding("a", "def d(a): pass")) 263 pass""" 267 self.assertTrue(self.find_binding("a", "class a: pass")) 268 self.assertTrue(self.find_binding("a", "class a(): pass")) 269 self.assertTrue(self.find_binding("a", "class a(b): pass")) 270 self.assertTrue(self.find_binding("a", "class a(b, c=8): pass")) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ast.py | 26 "def f(): pass", 28 "def f(a): pass", 30 "def f(a=0): pass", 32 "def f(*args): pass", 34 "def f(**kwargs): pass", 36 "def f(a, b=1, c=None, d=[], e={}, *args, **kwargs): pass", 38 "class C:pass", 40 "class C(object): pass", 52 "for v in v:pass", 54 "while v:pass", [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_util.py | 252 self.assertTrue(self.find_binding("a", "def a(): pass")) 253 self.assertTrue(self.find_binding("a", "def a(b, c, d): pass")) 255 self.assertFalse(self.find_binding("a", "def d(b, (c, a), e): pass")) 256 self.assertFalse(self.find_binding("a", "def d(a=7): pass")) 257 self.assertFalse(self.find_binding("a", "def d(a): pass")) 263 pass""" 267 self.assertTrue(self.find_binding("a", "class a: pass")) 268 self.assertTrue(self.find_binding("a", "class a(): pass")) 269 self.assertTrue(self.find_binding("a", "class a(b): pass")) 270 self.assertTrue(self.find_binding("a", "class a(b, c=8): pass")) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ast.py | 26 "def f(): pass", 28 "def f(a): pass", 30 "def f(a=0): pass", 32 "def f(*args): pass", 34 "def f(**kwargs): pass", 36 "def f(a, b=1, c=None, d=[], e={}, *args, **kwargs): pass", 38 "class C:pass", 40 "class C(object): pass", 52 "for v in v:pass", 54 "while v:pass", [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiModelTreeLabelProvider.java | 86 // pass 91 // pass 96 // pass 102 // pass
|
/external/libpng/ |
pngpread.c | 886 png_ptr->pass > 6) 904 png_ptr->pass > 6) 985 if (png_ptr->pass < 6) 986 png_do_read_interlace(&row_info, png_ptr->row_buf + 1, png_ptr->pass, 989 switch (png_ptr->pass) 994 for (i = 0; i < 8 && png_ptr->pass == 0; i++) 997 png_read_push_finish_row(png_ptr); /* Updates png_ptr->pass */ 1000 if (png_ptr->pass == 2) /* Pass 1 might be empty */ 1002 for (i = 0; i < 4 && png_ptr->pass == 2; i++ [all...] |
/external/pdfium/samples/fx_lpng/lpng_v163/ |
fx_pngpread.c | 884 png_ptr->pass > 6)
902 png_ptr->pass > 6)
983 if (png_ptr->pass < 6)
984 png_do_read_interlace(&row_info, png_ptr->row_buf + 1, png_ptr->pass,
987 switch (png_ptr->pass)
992 for (i = 0; i < 8 && png_ptr->pass == 0; i++)
995 png_read_push_finish_row(png_ptr); /* Updates png_ptr->pass */
998 if (png_ptr->pass == 2) /* Pass 1 might be empty */
1000 for (i = 0; i < 4 && png_ptr->pass == 2; i++) [all...] |
/external/icu/icu4c/source/test/perf/perldriver/ |
PerfFramework.pm | 159 # @param if >0 then the number of iterations per pass. If <0 then 160 # (negative of) the number of seconds per pass. 163 # [0] iterations per pass 165 # [2..] ms reported for each pass, in order 176 # $a->[3...]: gc messages from JVM during pass 188 # out("Iterations per pass: $iterCount<BR>\n"); 190 # debug("Iterations per pass: $iterCount<BR>\n"); 197 # out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n"); 198 debug("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n"); 214 # @param if >0 then the number of iterations per pass. If <0 the [all...] |
/external/llvm/lib/Analysis/ |
LoopPass.cpp | 1 //===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===// 24 #define DEBUG_TYPE "loop-pass-manager" 187 /// Pass Manager itself does not invalidate any analysis info. 202 // Collect inherited analysis from Module level pass manager. 263 // is a function pass and it's really expensive to verify every 290 // some memory, and avoids trouble with the pass manager trying to call 294 Pass *P = getContainedPass(Index); 316 errs().indent(Offset*2) << "Loop Pass Manager\n"; 318 Pass *P = getContainedPass(Index) [all...] |