/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.cpp | 28 int expect(const char* expr_str, const char* expected, int* errors) { function 75 expect("a", "a", &errors); 76 expect("\"a\"", "a", &errors); 77 expect("\"\\x61\"", "a", &errors); 78 expect("# this is a comment\n" 85 expect("a; b; c", "c", &errors); 88 expect("a + b", "ab", &errors); 89 expect("a + \n \"b\"", "ab", &errors); 90 expect("a + b +\nc\n", "abc", &errors); 93 expect("concat(a, b)", "ab", &errors) [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;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/d10v/ |
error-001.d | 4 # Test expect's dump_run_test baseline
|
error-002.d | 4 # Test expect's dump_run_test error option
|
/art/test/494-checker-instanceof-tests/src/ |
Main.java | 152 public static void expect(boolean expected, boolean actual) { method in class:Main 159 expect(false, classTypeTestNull()); method 160 expect(false, classTypeTestExactMain()); method 161 expect(true, classTypeTestExactSubMain()); method 164 expect(false, classTypeTestSubMainOrNull()); method 166 expect(true, classTypeTestSubMainOrNull()); method 169 expect(false, classTypeTestMainOrNull()); method 171 expect(false, classTypeTestMainOrNull()); method 173 expect(true, classTypeTestMainOrNull()); method 176 expect(false, classTypeTestUnrelated()) method 178 expect(false, classTypeTestUnrelated()); method 181 expect(false, classTypeTestFinalUnrelated()); method 183 expect(false, classTypeTestFinalUnrelated()); method 185 expect(false, interfaceTypeTestNull()); method 186 expect(false, interfaceTypeTestExactMain()); method 187 expect(true, interfaceTypeTestExactSubMain()); method 190 expect(false, interfaceTypeTestSubMainOrNull()); method 192 expect(true, interfaceTypeTestSubMainOrNull()); method 195 expect(false, interfaceTypeTestMainOrNull()); method 197 expect(false, interfaceTypeTestMainOrNull()); method 199 expect(true, interfaceTypeTestMainOrNull()); method 202 expect(false, interfaceTypeTestUnrelated()); method 204 expect(false, interfaceTypeTestUnrelated()); method 207 expect(false, interfaceTypeTestFinalUnrelated()); method 209 expect(false, interfaceTypeTestFinalUnrelated()); method [all...] |
/external/curl/lib/ |
objnames-test08.sh | 85 expect=16AFKPQR 87 echo "result: $outstr expected: $expect input: $argstr" 90 expect=16AFKPQ 92 echo "result: $outstr expected: $expect input: $argstr" 95 expect=16ABC 97 echo "result: $outstr expected: $expect input: $argstr" 100 expect=16 102 echo "result: $outstr expected: $expect input: $argstr" 105 expect=123 107 echo "result: $outstr expected: $expect input: $argstr [all...] |
objnames-test10.sh | 85 expect=16AFKPQRST 87 echo "result: $outstr expected: $expect input: $argstr" 90 expect=16AFKPQ 92 echo "result: $outstr expected: $expect input: $argstr" 95 expect=16ABC 97 echo "result: $outstr expected: $expect input: $argstr" 100 expect=16 102 echo "result: $outstr expected: $expect input: $argstr" 105 expect=123 107 echo "result: $outstr expected: $expect input: $argstr [all...] |
/external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/ |
CoreTutorialTest.java | 31 console.expect(containsLine("0 of 3 methods missed")); 32 console.expect(containsLine("1 of 5 complexity missed")); 33 console.expect(containsLine("Line 46: ")); 34 console.expect(containsLine("Line 47: green")); 35 console.expect(containsLine("Line 48: yellow")); 36 console.expect(containsLine("Line 49: red"));
|
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/spec/gl-matrix/ |
vec4-spec.js | 31 it("should return a 4 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0, 0, 0]); }); 36 it("should return a 4 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); }); 41 it("should return a 4 element array initialized to the values passed", function() { expect(result).toBeEqualish([1, 2, 3, 4]); }); 46 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); }); 47 it("should return out", function() { expect(result).toBe(out); }); 52 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); }); 53 it("should return out", function() { expect(result).toBe(out); }); 60 it("should place values into out", function() { expect(out).toBeEqualish([6, 8, 10, 12]); }); 61 it("should return out", function() { expect(result).toBe(out); }); 62 it("should not modify vecA", function() { expect(vecA).toBeEqualish([1, 2, 3, 4]); }) [all...] |
vec3-spec.js | 33 it("should return the rotated vector", function(){ expect(result).toBeEqualish([0, -1, 0]); }); 37 it("should return the rotated vector", function(){ expect(result).toBeEqualish([2, 3, 0]); }); 44 it("should return the rotated vector", function(){ expect(result).toBeEqualish([-1, 0, 0]); }); 48 it("should return the rotated vector", function(){ expect(result).toBeEqualish([-6, 3, 10]); }); 55 it("should return the rotated vector", function(){ expect(result).toBeEqualish([0, -1, 0]); }); 59 it("should return the rotated vector", function(){ expect(result).toBeEqualish([0, -6, -5]); }); 71 expect(out).toBeEqualish([1, 2, 3]); 74 it("should return out", function() { expect(result).toBe(out); }); 83 expect(out).toBeEqualish([ 4, -4, -4 ]); 86 it("should return out", function() { expect(result).toBe(out); }) [all...] |
mat2d-spec.js | 54 it("should return a 6 element array initialized to a 2x3 identity matrix", function() { expect(result).toBeEqualish(identity); }); 59 it("should return a 6 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); }); 64 it("should place values into out", function() { expect(out).toBeEqualish(matA); }); 65 it("should return out", function() { expect(result).toBe(out); }); 70 it("should place values into out", function() { expect(result).toBeEqualish(identity); }); 71 it("should return out", function() { expect(result).toBe(out); }); 78 it("should place values into out", function() { expect(out).toBeEqualish([ -2, 1, 1.5, -0.5, 1, -2 ]); }); 79 it("should return out", function() { expect(result).toBe(out); }); 80 it("should not modify matA", function() { expect(matA).toBeEqualish(oldA); }); 86 it("should place values into matA", function() { expect(matA).toBeEqualish([ -2, 1, 1.5, -0.5, 1, -2 ]); }) [all...] |
vec2-spec.js | 30 it("should return a 2 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0]); }); 35 it("should return a 2 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); }); 40 it("should return a 2 element array initialized to the values passed", function() { expect(result).toBeEqualish([1, 2]); }); 45 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); }); 46 it("should return out", function() { expect(result).toBe(out); }); 51 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); }); 52 it("should return out", function() { expect(result).toBe(out); }); 59 it("should place values into out", function() { expect(out).toBeEqualish([4, 6]); }); 60 it("should return out", function() { expect(result).toBe(out); }); 61 it("should not modify vecA", function() { expect(vecA).toBeEqualish([1, 2]); }) [all...] |
mat4-spec.js | 52 it("should return a 16 element array initialized to a 4x4 identity matrix", function() { expect(result).toBeEqualish(identity); }); 57 it("should return a 16 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); }); 62 it("should place values into out", function() { expect(out).toBeEqualish(matA); }); 63 it("should return out", function() { expect(result).toBe(out); }); 68 it("should place values into out", function() { expect(result).toBeEqualish(identity); }); 69 it("should return out", function() { expect(result).toBe(out); }); 77 expect(out).toBeEqualish([ 84 it("should return out", function() { expect(result).toBe(out); }); 86 expect(matA).toBeEqualish([ 99 expect(matA).toBeEqualish( [all...] |
quat-spec.js | 45 it("should return out", function() { expect(result).toBe(out); }); 47 expect(result).toBeEqualish([0, 0.707106, 0, 0.707106]); 56 it("should return out", function() { expect(result).toBe(out); }); 58 expect(result).toBeEqualish([0, 0, 0, 1]); 69 expect(result).toBeEqualish([0,0,0,-1]); 78 it("should return out", function() { expect(result).toBe(out); }); 80 expect(result).toBeEqualish([1, 0, 0, 0]); 90 it("should return out", function() { expect(result).toBe(out); }); 93 expect(vec).toBeEqualish([0, 1, 0]); 102 it("should return out", function() { expect(result).toBe(out); }) [all...] |
mat2-spec.js | 42 it("should return a 4 element array initialized to a 2x2 identity matrix", function() { expect(result).toBeEqualish(identity); }); 47 it("should return a 4 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); }); 52 it("should place values into out", function() { expect(out).toBeEqualish(matA); }); 53 it("should return out", function() { expect(result).toBe(out); }); 58 it("should place values into out", function() { expect(result).toBeEqualish(identity); }); 59 it("should return out", function() { expect(result).toBe(out); }); 66 it("should place values into out", function() { expect(out).toBeEqualish([1, 3, 2, 4]); }); 67 it("should return out", function() { expect(result).toBe(out); }); 68 it("should not modify matA", function() { expect(matA).toBeEqualish([1, 2, 3, 4]); }); 74 it("should place values into matA", function() { expect(matA).toBeEqualish([1, 3, 2, 4]); }) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_textwrap.py | 31 def check(self, result, expect): 32 self.assertEqual(result, expect, 34 self.show(expect), self.show(result))) 36 def check_wrap(self, text, width, expect, **kwargs): 38 self.check(result, expect) 40 def check_split(self, text, expect): 42 self.assertEqual(result, expect, 44 "but got %r" % (expect, result)) 90 expect = ["This is a paragraph that already has line", 98 self.check(result, expect) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_textwrap.py | 31 def check(self, result, expect): 32 self.assertEqual(result, expect, 34 self.show(expect), self.show(result))) 36 def check_wrap(self, text, width, expect, **kwargs): 38 self.check(result, expect) 40 def check_split(self, text, expect): 42 self.assertEqual(result, expect, 44 "but got %r" % (expect, result)) 90 expect = ["This is a paragraph that already has line", 98 self.check(result, expect) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_textwrap.py | 31 def check(self, result, expect): 32 self.assertEqual(result, expect, 34 self.show(expect), self.show(result))) 36 def check_wrap(self, text, width, expect, **kwargs): 38 self.check(result, expect) 40 def check_split(self, text, expect): 42 self.assertEqual(result, expect, 44 "but got %r" % (expect, result)) 90 expect = ["This is a paragraph that already has line", 98 self.check(result, expect) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_textwrap.py | 31 def check(self, result, expect): 32 self.assertEqual(result, expect, 34 self.show(expect), self.show(result))) 36 def check_wrap(self, text, width, expect, **kwargs): 38 self.check(result, expect) 40 def check_split(self, text, expect): 42 self.assertEqual(result, expect, 44 "but got %r" % (expect, result)) 90 expect = ["This is a paragraph that already has line", 98 self.check(result, expect) [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/ |
EmitterState.java | 24 void expect() throws IOException; method in interface:EmitterState
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug473.go | 48 func expect(name string, a interface{}, b int) { func 55 expect("V1", V1, 38) 56 expect("V2", V2, 38) 57 expect("V3", V3, 1) 58 expect("V4", V4, 2) 59 expect("V5", V5, 3) 60 expect("V6", V6, 4) 61 expect("V7", V7, 5) 62 expect("V8", V8, 21) 63 expect("V9", V9, 27 [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug473.go | 48 func expect(name string, a interface{}, b int) { func 55 expect("V1", V1, 38) 56 expect("V2", V2, 38) 57 expect("V3", V3, 1) 58 expect("V4", V4, 2) 59 expect("V5", V5, 3) 60 expect("V6", V6, 4) 61 expect("V7", V7, 5) 62 expect("V8", V8, 21) 63 expect("V9", V9, 27 [all...] |
/packages/apps/Email/tests/src/com/android/email/provider/ |
ProviderTestUtils.java | 270 private static void assertEmailContentEqual(String caller, EmailContent expect, 272 if (expect == actual) { 276 assertEquals(caller + " mId", expect.mId, actual.mId); 277 assertEquals(caller + " mBaseUri", expect.mBaseUri, actual.mBaseUri); 285 public static void assertAccountEqual(String caller, Account expect, Account actual) { 286 if (expect == actual) { 290 assertEmailContentEqual(caller, expect, actual); 291 assertEquals(caller + " mDisplayName", expect.mDisplayName, actual.mDisplayName); 292 assertEquals(caller + " mEmailAddress", expect.mEmailAddress, actual.mEmailAddress); 293 assertEquals(caller + " mSyncKey", expect.mSyncKey, actual.mSyncKey) [all...] |
/packages/apps/Email/tests/src/com/android/email/mail/transport/ |
SmtpSenderUnitTests.java | 123 mockTransport.expect("Content-Type: text/plain; charset=utf-8"); 124 mockTransport.expect("Content-Transfer-Encoding: base64"); 125 mockTransport.expect(""); 126 mockTransport.expect(TEST_STRING_BASE64); 127 mockTransport.expect("\r\n\\.", "250 2.0.0 kv2f1a00C02Rf8w3Vv mail accepted for delivery"); 151 mockTransport.expect("Content-Type: multipart/mixed; boundary=\".*"); 152 mockTransport.expect(""); 153 mockTransport.expect("----.*"); 155 mockTransport.expect(""); 156 mockTransport.expect("----.*--") [all...] |