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

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
escaped_comment.mk 0 PASS:=\#PASS
3 echo $(PASS)
8 define pass macro
9 \#PASS
12 echo $(pass)
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
r300_compiler_tests.c 34 unsigned pass = 1; local
35 pass &= radeon_compiler_optimize_run_tests();
36 pass &= radeon_compiler_regalloc_run_tests();
37 pass &= radeon_compiler_util_run_tests();
39 if (pass) {
unit_test.c 37 unsigned pass = 1; local
42 printf("Test %s (%d/%d) pass\n", tests[i].name,
43 tests[i].result.pass, tests[i].result.test_count);
44 if (tests[i].result.pass != tests[i].result.test_count) {
45 pass = 0;
48 return pass;
60 result->pass++;
61 printf("Pass");
unit_test.h 30 unsigned int pass; member in struct:test_result
  /prebuilts/go/darwin-x86/test/
index0.go 12 const pass = 0 const
index1.go 12 const pass = 1 const
index2.go 12 const pass = 2 const
  /prebuilts/go/linux-x86/test/
index0.go 12 const pass = 0 const
index1.go 12 const pass = 1 const
index2.go 12 const pass = 2 const
  /external/icu/icu4c/source/test/cintltst/
crestst.h 54 int32_t pass; variable
  /external/icu/icu4c/source/test/intltest/
restest.h 53 int32_t pass; member in class:ResourceBundleTest
restsnew.h 56 int32_t pass; member in class:NewResourceBundleTest
  /external/testng/src/test/java/test/superclass/
ChildSampleTest3.java 8 public void pass() { method in class:ChildSampleTest3
  /external/libvpx/libvpx/
vpxstats.h 23 * first pass statistics
27 int pass; member in struct:__anon26301
33 int stats_open_file(stats_io_t *stats, const char *fpf, int pass);
34 int stats_open_mem(stats_io_t *stats, int pass);
  /external/testng/src/test/java/test/failures/
Child.java 8 public void pass() { method in class:Child
  /external/libmicrohttpd/doc/examples/
basicauthentication.c 27 char *pass; local
39 pass = NULL;
40 user = MHD_basic_auth_get_username_password (connection, &pass);
43 (0 != strcmp (pass, "pa$$w0rd") ) );
45 if (pass != NULL) free (pass);
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
UntypedHandle.java 18 * @see org.chromium.mojo.system.Handle#pass()
21 public UntypedHandle pass(); method in interface:UntypedHandle
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_pass.cpp 32 pass::pass(shader &s) : ctx(s.get_ctx()), sh(s) {} function in class:r600_sb::pass
34 int pass::run() { return -1; }
  /external/testng/src/test/java/test/testng195/
AfterMethodSampleTest.java 15 public void pass() { method in class:AfterMethodSampleTest
  /prebuilts/go/darwin-x86/test/ken/
shift.go 13 var pass string; var
19 print("itest ", t1,t2,t3,pass,
33 print("utest ", t1,t2,t3,pass,
46 pass = "con"; // constant part
66 pass = "var"; // variable part
  /prebuilts/go/linux-x86/test/ken/
shift.go 13 var pass string; var
19 print("itest ", t1,t2,t3,pass,
33 print("utest ", t1,t2,t3,pass,
46 pass = "con"; // constant part
66 pass = "var"; // variable part
  /art/compiler/optimizing/
optimization.cc 58 // Decide between default or alternative pass name.
62 const char* OptimizationPassName(OptimizationPass pass) {
63 switch (pass) {
182 // instances. This method uses the nearest instance preceeding it in the pass
190 OptimizationPass pass = definitions[i].first; local
194 : OptimizationPassName(pass);
197 switch (pass) {
292 DCHECK(alt_name == nullptr) << "arch-specific pass does not support alternative name";
298 DCHECK(alt_name == nullptr) << "arch-specific pass does not support alternative name";
304 DCHECK(alt_name == nullptr) << "arch-specific pass does not support alternative name"
    [all...]
  /external/e2fsprogs/contrib/
make-sparse.c 30 int pass = 0; local
40 if (pass++ >= 3)
44 pass = 0;
  /external/fio/t/
gen-rand.c 20 unsigned long *buckets, index, pass, fail; local
54 pass = fail = 0;
60 printf("PASS bucket%4lu: val=%8lu (%.1f < %.1f > %.1f)\n", (unsigned long) i + 1, buckets[i], vmin, mean, vmax);
61 pass++;
65 printf("Passes=%lu, Fail=%lu\n", pass, fail);

Completed in 233 milliseconds

1 2 3 4 5 6 7 8 91011>>