HomeSort by relevance Sort by last modified time
    Searched full:pass (Results 626 - 650 of 12602) sorted by null

<<21222324252627282930>>

  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
test_root.rs 13 bool pass;
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
test_root.rs 13 bool pass;
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
test_root.rs 13 bool pass;
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
test_root.rs 13 bool pass;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
test_root.rs 13 bool pass;
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
test_root.rs 13 bool pass;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
vpxstats.h 23 * first pass statistics
27 int pass; member in struct:__anon24287
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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sample_doctest_no_docstrings.py 12 pass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sample_doctest_no_docstrings.py 12 pass
  /external/clang/lib/ARCMigrate/
TransARCAssign.cpp 36 MigrationPass &Pass;
40 ARCAssignChecker(MigrationPass &pass) : Pass(pass) { }
51 ASTContext &Ctx = Pass.Ctx;
57 Transaction Trans(Pass.TA);
58 if (Pass.TA.clearDiagnostic(diag::err_typecheck_arr_assign_enumeration,
62 Pass.TA.insert(TLoc.getBeginLoc(), "__strong ");
75 void trans::makeAssignARCSafe(MigrationPass &pass) {
76 ARCAssignChecker assignCheck(pass);
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitcodeWriterPass.h 1 //===-- BitcodeWriterPass.h - Bitcode writing pass --------------*- C++ -*-===//
11 /// This file provides a bitcode writing pass.
26 /// \brief Create and return a pass that writes the module to the specified
27 /// ostream. Note that this pass is designed for use with the legacy pass
35 /// \brief Pass for writing a module of IR out to a bitcode file.
37 /// Note that this is intended for use with the new pass manager. To construct
38 /// a pass for the legacy pass manager, use the function above.
44 /// \brief Construct a bitcode writer pass around a particular output stream
    [all...]
  /external/toybox/toys/pending/
sulogin.c 45 *pass; local
63 pass = crypt(toybuf, pwd);
65 if( pass && !strcmp(pass, pwd)) ret = 0;
86 char *shell = NULL, *pass = NULL, **temp = forbid; local
101 pass = pwd->pw_passwd;
103 if ((pass[0] == 'x' || pass[0] == '*') && !pass[1]) {
104 if ((spwd = getspnam (pwd->pw_name))) pass = spwd->sp_pwdp
    [all...]
  /external/v8/test/webkit/
eval-and-with-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS freeVarInsideEvalAndWith({}, "true")() is true
30 PASS freeVarInsideEvalAndWith({}, "false")() is false
31 PASS freeVarInsideEvalAndWith({}, "var x = 10; x")() == 10 is true
32 PASS freeVarInsideEvalAndWith({}, "var x = 10; (function (){return x;})")()() == 10 is true
33 PASS localVarInsideEvalAndWith({}, "true") is true
34 PASS localVarInsideEvalAndWith({}, "false") is false
35 PASS localVarInsideEvalAndWith({}, "var x = true; x") is true
36 PASS localVarInsideEvalAndWith({}, "var x = 10; (function (){return x;})")() == 10 is true
37 PASS localVarInsideEvalAndWith(y={x:false}, "var x = true; x && y.x") is tru
    [all...]
object-literal-direct-put-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS ({a:true}).a is true
30 PASS ({__proto__: {a:false}, a:true}).a is true
31 PASS ({__proto__: {set a(v) {throw 'Should not call setter'; }}, a:true}).a is true
32 PASS ({__proto__: {get a() {throw 'Should not reach getter'; }}, a:true}).a is true
33 PASS ({__proto__: {get a() {throw 'Should not reach getter'; }, b:true}, a:true}).b is true
34 PASS ({__proto__: {__proto__: {a:false}}, a:true}).a is true
35 PASS ({__proto__: {__proto__: {set a(v) {throw 'Should not call setter'; }}}, a:true}).a is true
36 PASS ({__proto__: {__proto__: {get a() {throw 'Should not reach getter'; }}}, a:true}).a is true
37 PASS ({__proto__: {__proto__: {get a() {throw 'Should not reach getter'; }, b:true}}, a:true}).b is tru
    [all...]
regexp-alternatives-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS s1.match(/<((\/([^>]+)>)|(([^>]+)>))/) is ["<p>","p>",undefined,undefined,"p>","p"]
30 PASS s1.match(/<((ABC>)|(\/([^>]+)>)|(([^>]+)>))/) is ["<p>","p>",undefined,undefined,undefined,"p>","p"]
31 PASS s1.match(/<(a|\/p|.+?)>/) is ["<p>","p"]
32 PASS s1.match(/<((\/([^>]+)>)|((([^>])+)>))/) is ["<p>","p>",undefined,undefined,"p>","p","p"]
33 PASS s1.match(/<((ABC>)|(\/([^>]+)>)|((([^>])+)>))/) is ["<p>","p>",undefined,undefined,undefined,"p>","p","p"]
34 PASS s1.match(/<(a|\/p|(.)+?)>/) is ["<p>","p","p"]
35 PASS s2.match(/<((\/([^>]+)>)|(([^>]+)>))\5/) is ["<p>p","p>",undefined,undefined,"p>","p"]
36 PASS s2.match(/<((ABC>)|(\/([^>]+)>)|(([^>]+)>))\6/) is ["<p>p","p>",undefined,undefined,undefined,"p>","p"]
37 PASS s2.match(/<(a|\/p|.+?)>\1/) is ["<p>p","p"
    [all...]
  /external/v8/test/webkit/fast/js/kde/
Date-setYear-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
30 PASS d.setYear(-1), d.getFullYear() is -1
31 PASS d.setYear(0), d.getFullYear() is 1900
32 PASS d.setYear(1), d.getFullYear() is 1901
33 PASS d.setYear(99), d.getFullYear() is 1999
34 PASS d.setYear(100), d.getFullYear() is 100
35 PASS d.setYear(2050), d.getFullYear() is 2050
36 PASS d.setYear(1899), d.getFullYear() is 1899
37 PASS d.setYear(2000), d.getFullYear() is 2000
38 PASS d.setYear(2100), d.getFullYear() is 210
    [all...]
lval-exceptions-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS function () { a = x; } threw exception ReferenceError: x is not defined.
30 PASS function () { x += "foo"; } threw exception ReferenceError: x is not defined.
31 PASS function () { b = a.x; } did not throw an exception
32 PASS function () { b = a['x']; } did not throw an exception
33 PASS function () { a['x'] += 'baz'; } did not throw an exception
34 PASS a['x'] is "undefinedbaz"
35 PASS function () { b = a.y; } did not throw an exception
36 PASS function () { a.y += 'glarch'; } did not throw an exception
37 PASS a['y'] is "undefinedglarch
    [all...]
prototype_proto-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS Object.prototype.__proto__ == Object.prototype is false
30 PASS Function.prototype.__proto__ is Object.prototype
31 PASS Array.prototype.__proto__ is Object.prototype
32 PASS String.prototype.__proto__ is Object.prototype
33 PASS Boolean.prototype.__proto__ is Object.prototype
34 PASS Number.prototype.__proto__ is Object.prototype
35 PASS Date.prototype.__proto__ is Object.prototype
36 PASS RegExp.prototype.__proto__ is Object.prototype
37 PASS Error.prototype.__proto__ is Object.prototyp
    [all...]
  /external/v8/test/webkit/fast/regex/
quantified-assertions-expected.txt 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
31 PASS regexp.test('a') is true
32 PASS regexp.lastIndex is 0
35 PASS regexp.test('a') is true
36 PASS regexp.lastIndex is 0
39 PASS regexp.test('b') is true
40 PASS regexp.lastIndex is 0
43 PASS regexp.test('b') is true
44 PASS regexp.lastIndex is 0
45 PASS /^(?=a)?b$/.test("b") is tru
    [all...]
  /external/clang/test/CodeGenCXX/
2003-11-27-MultipleInheritanceThunk.cpp 18 struct Pass {
23 struct AliasAnalysisCounter : public Pass, public AliasAnalysis {
  /external/compiler-rt/test/tsan/
interface_atomic_test.c 11 // CHECK: PASS
12 printf("PASS\n");
thread_detach.c 15 printf("PASS\n");
20 // CHECK: PASS
  /external/e2fsprogs/tests/f_dup/
expect.1 3 Pass 1: Checking inodes, blocks, and sizes
6 Pass 1B: Rescanning for multiply-claimed blocks
9 Pass 1C: Scanning directories for inodes with multiply-claimed blocks
10 Pass 1D: Reconciling multiply-claimed blocks
23 Pass 2: Checking directory structure
24 Pass 3: Checking directory connectivity
25 Pass 4: Checking reference counts
26 Pass 5: Checking group summary information
  /external/e2fsprogs/tests/f_dup3/
expect.1 0 Pass 1: Checking inodes, blocks, and sizes
6 Pass 1B: Rescanning for multiply-claimed blocks
10 Pass 1C: Scanning directories for inodes with multiply-claimed blocks
11 Pass 1D: Reconciling multiply-claimed blocks
26 Pass 2: Checking directory structure
30 Pass 3: Checking directory connectivity
31 Pass 4: Checking reference counts
32 Pass 5: Checking group summary information
  /external/junit/src/org/junit/runner/manipulation/
Filterable.java 5 * to remove tests that don't pass the filter.
10 * Remove tests that don't pass the parameter <code>filter</code>.

Completed in 408 milliseconds

<<21222324252627282930>>