HomeSort by relevance Sort by last modified time
    Searched refs:expect (Results 1 - 25 of 1225) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/security/keystore/
test-keystore 34 function expect() { function
72 expect "1 No error"
80 expect "6 Permission denied"
84 expect "3 Uninitialized"
89 expect "1 No error"
91 expect "-rw------- keystore keystore 84 .masterkey"
95 expect "1 No error"
99 expect "5 Protocol error"
103 expect "1 No error"
107 expect "1 No error
    [all...]
  /bootable/recovery/edify/
main.c 26 int expect(const char* expr_str, const char* expected, int* errors) { function
76 expect("a", "a", &errors);
77 expect("\"a\"", "a", &errors);
78 expect("\"\\x61\"", "a", &errors);
79 expect("# this is a comment\n"
86 expect("a; b; c", "c", &errors);
89 expect("a + b", "ab", &errors);
90 expect("a + \n \"b\"", "ab", &errors);
91 expect("a + b +\nc\n", "abc", &errors);
94 expect("concat(a, b)", "ab", &errors)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-310425-01.js 41 var expect = ''; variable
46 expect = -1;
48 reportCompare(expect, actual, summary);
50 expect = -1;
52 reportCompare(expect, actual, summary);
56 expect = (1 << 30);
58 reportCompare(expect, actual, summary);
regress-310425-02.js 41 var expect = ''; variable
46 expect = -1;
48 reportCompare(expect, actual, summary);
regress-304828.js 41 var expect = ''; variable
50 expect = '1,2,3';
59 reportCompare(expect, actual, summary + ': join');
63 expect = '123';
72 reportCompare(expect, actual, summary + ': reverse');
76 expect = 'cba';
85 reportCompare(expect, actual, summary + ': sort');
89 expect = 6;
98 reportCompare(expect, actual, summary + ': push');
103 expect = 'c'
    [all...]
regress-305002.js 41 var expect = ''; variable
53 expect = true;
56 reportCompare(expect, actual, summary);
regress-290592.js 42 var expect = ''; variable
186 expect = 1;
188 reportCompare(expect, actual, 'Array.prototype.map.length == 1');
191 expect = 'TypeError';
201 reportCompare(expect, actual, 'Array.map(undefined) throws TypeError');
206 expect = 'hello,Array,WORLD';
213 reportCompare(expect, actual, 'Array.map: identity');
218 expect = 'hello,mutated,';
225 reportCompare(expect, actual, 'Array.map: mutate');
232 expect = 'HELLO,ARRAY,WORLD'
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/
regress-309242.js 41 var expect = ''; variable
52 expect = true;
57 reportCompare(expect, actual, summary + ': &lt;!-- is comment to end of line');
59 expect = true;
66 reportCompare(expect, actual, summary + ': comment hack works inside script');
72 expect = 'element';
75 reportCompare(expect, actual, summary + ': E4X is available');
regress-311157-01.js 41 var expect = 'No Crash'; variable
54 reportCompare(expect, actual, summary);
regress-311157-02.js 41 var expect = 'No Crash'; variable
54 reportCompare(expect, actual, summary);
regress-314887.js 41 var expect = 'No Crash'; variable
51 reportCompare(expect, actual, summary);
regress-301574.js 42 var expect = 'No error'; variable
56 reportCompare(expect, actual, summary + ': XML()');
67 reportCompare(expect, actual, summary + ': XMLList()');
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/String/
regress-306591.js 41 var expect = ''; variable
47 expect = ['a', 'b', 'c'].toString();
49 reportCompare(expect, actual, summary +
52 expect = '2';
54 reportCompare(expect, actual, summary +
57 expect = 'TRUE';
59 reportCompare(expect, actual, summary +
62 expect = 2;
64 reportCompare(expect, actual, summary +
67 expect = 2
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/String/
regress-83293.js 56 var expect= ''; variable
86 expect = str.replace(new RegExp(strA), strB);
87 reportCompare(expect, actual, status);
92 expect = str.replace(new RegExp(strA), strB);
93 reportCompare(expect, actual, status);
98 expect = str.replace(new RegExp(strA), strB);
99 reportCompare(expect, actual, status);
104 expect = str.replace(new RegExp(strA), strB);
105 reportCompare(expect, actual, status);
119 expect = strJim.replace(new RegExp(strA), strB); // expect 'aa$aaZ
    [all...]
  /system/extras/tests/bionic/libc/bionic/
test_mutex.c 46 #define expect(call,result) \ macro
62 expect( pthread_mutexattr_init( &attr ), 0 );
64 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_NORMAL ), 0 );
65 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
68 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_ERRORCHECK ), 0 );
69 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
72 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE ), 0 );
73 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
77 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_NORMAL ), 0 );
78 expect( pthread_mutex_init( &lock, &attr ), 0 )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/LexicalConventions/
lexical-001.js 44 var expect = new Array();
49 expect[0]=1
53 expect[1]=7
57 expect[2]=8
61 expect[3]=9
65 expect[4]=8
69 expect[5]=15
73 expect[6]=18
77 expect[7]=19
81 expect[8]=7
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
ReturnTest.java 61 String expect = retval.getText(); local
63 if ( expect.charAt(0)=='"' && expect.charAt(expect.length()-1)=='"' ) {
64 expect = expect.substring(1, expect.length()-1);
67 return expect;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-001.js 36 var expect= ''; variable
58 expect=5;
59 reportCompare (expect, actual, status);
63 expect=5;
64 reportCompare (expect, actual, status);
72 expect=undefined;
73 reportCompare (expect, actual, status);
77 expect=2;
78 reportCompare (expect, actual, status);
86 expect=2; //<--- (FROM STEP 2 ABOVE
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-68498-004.js 39 var statprefix = '; currently at expect[';
43 var expect=[ ]; variable
69 * Sample issue: why do we set expect[4] = 'inner'? Look at actual[4]...
78 * this far up the scope chain to find x...therefore we expect 'inner'
80 expect[0] = 'function';
81 expect[1] = 44;
82 expect[2] = 44;
83 expect[3] = 'function';
84 expect[4] = 'inner';
85 expect[5] = false
    [all...]
regress-76054.js 37 var expect= ''; variable
43 expect = actual.toLowerCase();
48 expect = actual.toLowerCase();
53 expect = actual.toLowerCase();
58 expect = actual.toLowerCase();
63 expect = actual.toLowerCase();
68 expect = actual.toLowerCase();
73 expect = actual.toLowerCase();
78 expect = actual.toLowerCase();
83 expect = actual.toLowerCase()
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
class-001.js 35 var expect= ''; var expectedvalue = [ ]; variable
40 expect = 'global';
45 expect = 'Object';
50 expect = 'Function';
55 expect = 'Array';
60 expect = 'String';
65 expect = 'Boolean';
70 expect = 'Number';
75 expect = 'Math';
80 expect = 'Date'
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
arguments-001.js 34 var expect= ''; variable
48 expect = true;
52 expect = false;
56 expect = undefined;
64 expect = true;
68 expect = false;
72 expect = undefined;
76 expect = 1;
80 expect = 2;
84 expect = 3
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Statements/
regress-194364.js 51 var expect= ''; variable
57 expect = 1;
62 expect = 2;
67 expect = 3;
72 expect = 4;
77 expect = 5;
82 expect = 6;
87 expect = 7;
92 expect = 8;
97 expect = 9
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/
shell.js 37 testcases[tc].expect,
51 function AddTestCase( description, expect, actual ) {
52 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
58 this.expect = e;
63 this.passed = getTestCaseResult( this.expect, this.actual );
75 function getTestCaseResult( expect, actual ) {
85 if ( expect != expect ) {
86 if ( typeof expect == "object" ) {
87 expect = "NaN object"
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/
shell.js 40 testcases[tc].expect,
54 function AddTestCase( description, expect, actual ) {
55 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
62 this.expect = e;
67 this.passed = getTestCaseResult( this.expect, this.actual );
79 function getTestCaseResult( expect, actual ) {
89 if ( expect != expect ) {
90 if ( typeof expect == "object" ) {
91 expect = "NaN object"
    [all...]

Completed in 566 milliseconds

1 2 3 4 5 6 7 8 91011>>