HomeSort by relevance Sort by last modified time
    Searched refs:expect (Results 201 - 225 of 1498) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/ltp/testcases/network/tcp_cmds/ssh/
ssh03_s1 1 #! /usr/bin/expect -f
23 # SETUP: The program `/usr/bin/expect' MUST be installed.
46 expect {
  /external/ltp/testcases/network/tcp_cmds/telnet/
telnet01 27 tst_check_cmds telnet expect
60 expect -c "
63 expect -re \"login:\"
66 expect -re \"Password:\"
69 expect {
  /external/mockito/src/test/java/org/mockito/internal/util/
ChecksTest.java 30 expectedException.expect(IllegalArgumentException.class);
37 expectedException.expect(IllegalArgumentException.class);
  /external/python/cpython2/Lib/json/tests/
test_separators.py 10 expect = textwrap.dedent("""\
40 self.assertEqual(d2, expect)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/
map_allocator_requirement_test_templates.h 46 cc->expect<const ValueTp&>();
59 cc->expect<const ValueTp&>();
72 cc->expect<ValueTp&&>();
85 cc->expect<const ValueTp&>();
97 cc->expect<ValueTp&&>();
110 cc->expect<ValueTp const&>(2);
122 cc->expect<ValueTp const&>(3);
134 cc->expect<ValueTp&&>(3);
149 cc->expect<ValueTp const&>(3);
175 cc->expect<const ValueTp&>()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/path.generic.obs/
generic_string_alloc.pass.cpp 46 const wchar_t* expect = longString; local
53 assert(s == expect);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.status_known/
status_known.pass.cpp 39 bool expect; member in struct:TestCase
55 TEST_CHECK(status_known(s) == TC.expect);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_separators.py 10 expect = textwrap.dedent("""\
40 self.assertEqual(d2, expect)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_separators.py 10 expect = textwrap.dedent("""\
40 self.assertEqual(d2, expect)
  /system/update_engine/init/
update-engine.conf 27 expect fork
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/targetprep/
MediaPreparerTest.java 46 EasyMock.expect(mMockDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).andReturn(
64 EasyMock.expect(mMockDevice.doesFileExist(shortFile)).andReturn(true).once();
65 EasyMock.expect(mMockDevice.doesFileExist(fullFile)).andReturn(true).once();
67 EasyMock.expect(mMockDevice.doesFileExist(mMediaPreparer.mBaseDeviceImagesDir))
83 EasyMock.expect(mMockDevice.doesFileExist(shortFile)).andReturn(true).anyTimes();
84 EasyMock.expect(mMockDevice.doesFileExist(fullFile)).andReturn(true).anyTimes();
86 EasyMock.expect(mMockDevice.doesFileExist(mMediaPreparer.mBaseDeviceImagesDir))
96 EasyMock.expect(mMockDevice.doesFileExist(firstFileChecked)).andReturn(false).once();
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ieee-fp/
x930509a.exp 25 expect {
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
RemoteAndroidDeviceTest.java 61 EasyMock.expect(mMockIDevice.getSerialNumber()).andReturn(MOCK_DEVICE_SERIAL).anyTimes();
82 EasyMock.expect(mMockRunUtil.runTimedCmd(EasyMock.anyLong(),
85 EasyMock.expect(mMockRunUtil.runTimedCmd(EasyMock.anyLong(),
99 EasyMock.expect(mMockRunUtil.runTimedCmd(EasyMock.anyLong(),
117 EasyMock.expect(mMockRunUtil.runTimedCmd(EasyMock.anyLong(),
132 EasyMock.expect(mMockRunUtil.runTimedCmd(EasyMock.anyLong(),
145 EasyMock.expect(mMockRunUtil.runTimedCmd(EasyMock.anyLong(),
160 EasyMock.expect(mMockIDevice.getSerialNumber()).andReturn("wrongserial").anyTimes();
  /external/skia/src/sksl/
SkSLParser.cpp 162 bool Parser::expect(Token::Kind kind, const char* expected, Token* result) { function in class:SkSL::Parser
196 if (!this->expect(Token::DIRECTIVE, "a directive", &start)) {
201 this->expect(Token::INT_LITERAL, "a version number");
212 if (!this->expect(Token::IDENTIFIER, "an identifier", &name)) {
215 if (!this->expect(Token::COLON, "':'")) {
219 if (!this->expect(Token::IDENTIFIER, "an identifier")) {
234 if (!this->expect(Token::SECTION, "a section token", &start)) {
241 if (!this->expect(Token::IDENTIFIER, "an identifier", &argToken)) {
245 if (!this->expect(Token::RPAREN, "')'")) {
249 if (!this->expect(Token::LBRACE, "'{'"))
    [all...]
  /external/skqp/src/sksl/
SkSLParser.cpp 162 bool Parser::expect(Token::Kind kind, const char* expected, Token* result) { function in class:SkSL::Parser
196 if (!this->expect(Token::DIRECTIVE, "a directive", &start)) {
201 this->expect(Token::INT_LITERAL, "a version number");
212 if (!this->expect(Token::IDENTIFIER, "an identifier", &name)) {
215 if (!this->expect(Token::COLON, "':'")) {
219 if (!this->expect(Token::IDENTIFIER, "an identifier")) {
234 if (!this->expect(Token::SECTION, "a section token", &start)) {
241 if (!this->expect(Token::IDENTIFIER, "an identifier", &argToken)) {
245 if (!this->expect(Token::RPAREN, "')'")) {
249 if (!this->expect(Token::LBRACE, "'{'"))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_tool.py 18 expect = textwrap.dedent("""\
45 self.assertEqual(out.splitlines(), self.expect.encode().splitlines())
58 self.assertEqual(out.splitlines(), self.expect.encode().splitlines())
67 self.assertEqual(fp.read(), self.expect)
  /external/e2fsprogs/tests/f_boundscheck/
script 10 EXP1=$test_dir/expect.1
18 EXP2=$test_dir/expect.2
  /external/e2fsprogs/tests/f_itable_collision/
script 15 EXP1=$test_dir/expect.1
23 EXP2=$test_dir/expect.2
  /external/e2fsprogs/tests/f_super_bad_csum/
script 10 EXP1=$test_dir/expect.1
18 EXP2=$test_dir/expect.2
  /external/e2fsprogs/tests/j_recover_csum2_32bit/
script 9 EXP1=$test_dir/expect.1
17 EXP2=$test_dir/expect.2
  /external/e2fsprogs/tests/j_recover_csum2_64bit/
script 9 EXP1=$test_dir/expect.1
17 EXP2=$test_dir/expect.2
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 126 * @param expect the expected value
131 public final boolean compareAndSet(double expect, double update) {
133 doubleToRawLongBits(expect),
148 * @param expect the expected value
152 public final boolean weakCompareAndSet(double expect, double update) {
154 doubleToRawLongBits(expect),
  /external/icu/icu4c/source/test/cintltst/
nccbtst.h 50 UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen,
55 UBool testConvertToUnicode( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen,
59 UBool testConvertFromUnicodeWithContext(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen,
63 UBool testConvertToUnicodeWithContext( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen,
  /external/icu/icu4c/source/test/intltest/
dtifmtts.h 70 void expect(const char** data, int32_t data_length);
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
ExpressionParser.java 45 expect(TT_EOF);
79 expect(')');
81 expect(TT_NUMBER);
95 private void expect(final int type) throws IOException { method in class:ExpressionParser

Completed in 729 milliseconds

1 2 3 4 5 6 7 891011>>