HomeSort by relevance Sort by last modified time
    Searched refs:expect (Results 26 - 50 of 1166) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_setpasswd/
tpmtoken_setpasswd_tests_exp04.sh 1 #! /usr/bin/expect -f
28 expect -re "Enter the TPM security officer password: "
30 expect -re "Enter new password: "
32 expect -re "Confirm password: "
34 expect timeout
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d10v/
error-002.d 4 # Test expect's dump_run_test error option
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
EmitterState.java 24 void expect() throws IOException; method in interface:EmitterState
  /external/ltp/testcases/commands/tpm-tools/tpm/tpm_changeauth/
tpm_changeauth_tests_exp03.sh 1 #! /usr/bin/expect -f
29 expect -re "Enter owner password: "
31 expect -re "Enter new SRK password: "
33 expect -re "Confirm password: "
35 expect -re "Enter new owner password: "
37 expect -re "Confirm password: "
39 expect timeout
  /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...]
  /external/libcxx/test/support/test.support/
test_demangle.pass.cpp 21 const char* expect; member in struct:__anon22913
30 const char* expect = TestCases[i].expect; local
33 ((void)expect);
35 assert(demangle(raw) == expect);
  /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...]
  /external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/
tpmtoken_import_tests_exp02.sh 1 #! /usr/bin/expect -f
32 expect -re "Enter PEM pass phrase:"
34 expect -re "Enter your TPM user password: "
37 expect -re "Import the object?"
40 expect -re "Import the object?"
42 expect timeout
  /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...]
  /external/dtc/tests/
fdtget-runtest.sh 6 EXPECT=tmp.expect.$$
7 rm -f $LOG $EXPECT
8 trap "rm -f $LOG $EXPECT" 0
10 expect="$1"
11 printf '%b\n' "$expect" > $EXPECT
16 if cmp $EXPECT $LOG>/dev/null; then
21 cat $EXPECT
  /frameworks/native/services/vr/virtual_touchpad/tests/
VirtualTouchpad_test.cpp 113 void DumpDifference(const char* expect, const char* actual) {
115 while (*expect && *expect == *actual) {
116 putchar(*expect);
117 ++expect;
120 printf("\n expect: %s\n", expect);
131 UInputRecorder expect; local
161 expect.Reset();
163 expect.Open()
292 UInputRecorder expect; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_eof.py 9 expect = "EOL while scanning string literal (<string>, line 1)"
14 self.assertEqual(str(msg), expect)
19 expect = ("EOF while scanning triple-quoted string literal "
24 self.assertEqual(str(msg), expect)
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletUtilsTest.java 5 import static org.easymock.EasyMock.expect;
21 expect(servletRequest.getContextPath()).andReturn("/a_context_path");
22 expect(servletRequest.getRequestURI()).andReturn("/a_context_path/test.html");
31 expect(servletRequest.getContextPath()).andReturn("/a_context_path");
32 expect(servletRequest.getRequestURI()).andReturn("/test.html");
41 expect(servletRequest.getContextPath()).andReturn("/a_context_path");
42 expect(servletRequest.getRequestURI()).andReturn("/a_context_path");
51 expect(servletRequest.getContextPath()).andReturn("");
52 expect(servletRequest.getRequestURI()).andReturn("");
  /external/ltp/testcases/commands/tpm-tools/tpm/tpm_clear/
tpm_clear_tests_exp01.sh 1 #! /usr/bin/expect -f
26 expect -re "Enter owner password: "
28 expect timeout
  /external/ltp/testcases/commands/tpm-tools/tpm/tpm_getpubek/
tpm_getpubek_tests_exp01.sh 1 #! /usr/bin/expect -f
28 expect {
35 expect timeout
  /external/ltp/testcases/commands/tpm-tools/tpm/tpm_restrictpubek/
tpm_restrictpubek_tests_exp01.sh 1 #! /usr/bin/expect -f
26 expect -re "Enter owner password: "
28 expect timeout
tpm_restrictpubek_tests_exp02.sh 1 #! /usr/bin/expect -f
26 expect -re "Enter owner password: "
28 expect timeout
tpm_restrictpubek_tests_exp03.sh 1 #! /usr/bin/expect -f
28 expect {
35 expect timeout
  /external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_objects/
tpmtoken_objects_tests_exp01.sh 1 #! /usr/bin/expect -f
26 expect -re "Enter your TPM user password: "
28 expect timeout
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_eof.py 9 expect = "EOL while scanning string literal (<string>, line 1)"
14 self.assertEqual(str(msg), expect)
19 expect = ("EOF while scanning triple-quoted string literal "
24 self.assertEqual(str(msg), expect)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_eof.py 9 expect = "EOL while scanning string literal (<string>, line 1)"
14 self.assertEqual(str(msg), expect)
19 expect = ("EOF while scanning triple-quoted string literal "
24 self.assertEqual(str(msg), expect)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_eof.py 9 expect = "EOL while scanning string literal (<string>, line 1)"
14 self.assertEqual(str(msg), expect)
19 expect = ("EOF while scanning triple-quoted string literal "
24 self.assertEqual(str(msg), expect)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_eof.py 9 expect = "EOL while scanning string literal (<string>, line 1)"
14 self.assertEqual(str(msg), expect)
19 expect = ("EOF while scanning triple-quoted string literal "
24 self.assertEqual(str(msg), expect)
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
MockFileUtil.java 41 EasyMock.expect(mockDevice.getFileEntry(rootPath)).andStubReturn(rootEntry);
43 EasyMock.expect(rootEntry.isDirectory()).andStubReturn(isDir);
44 EasyMock.expect(rootEntry.getFullEscapedPath()).andStubReturn(rootPath);
45 EasyMock.expect(rootEntry.getName()).andStubReturn(rootPath);
49 EasyMock.expect(childMockEntry.getName()).andStubReturn(childName);
51 EasyMock.expect(childMockEntry.getFullEscapedPath()).andStubReturn(fullPath);
52 EasyMock.expect(childMockEntry.isDirectory()).andStubReturn(Boolean.FALSE);
56 EasyMock.expect(rootEntry.getChildren(EasyMock.anyBoolean()))
73 EasyMock.expect(mockDevice.getFileEntry(rootPath)).andStubReturn(rootEntry);
74 EasyMock.expect(rootEntry.getFullEscapedPath()).andStubReturn(rootPath)
    [all...]

Completed in 535 milliseconds

12 3 4 5 6 7 8 91011>>