HomeSort by relevance Sort by last modified time
    Searched refs:expect (Results 276 - 300 of 704) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/icu/source/test/intltest/
transtst.h 48 * of the transliterators and expect the identity function. F x
378 void expect(const UnicodeString& rules,
383 void expect(const UnicodeString& id,
389 void expect(const Transliterator& t,
394 void expect(const Transliterator& t,
numfmtst.h 177 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
179 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { function in class:NumberFormatTest
180 expect(fmt, UnicodeString(str, ""), n);
183 void expect(NumberFormat& fmt, const Formattable& n,
186 void expect(NumberFormat& fmt, const Formattable& n, function in class:NumberFormatTest
188 expect(fmt, n, UnicodeString(exp, ""), rt);
191 void expect(NumberFormat* fmt, const Formattable& n,
194 void expect(NumberFormat* fmt, const Formattable& n, function in class:NumberFormatTest
196 expect(fmt, n, UnicodeString(exp, ""), errorCode);
transtst.cpp 57 2. Make liberal use of the expect() method; it is your friend.
310 expect(UnicodeString("ab>x|y;", "") +
326 expect(UnicodeString("ab>x|yzacw;") +
353 expect(*t, "abcdefgABCDEFGU", "&bcd&fg!^**!^*&");
361 expect("{ [:Ll:] } x > y; [:Ll:] > z;", "aAbxq", "zAyzz");
362 expect("a[0-9]b > qrs", "1a7b9", "1qrs9");
364 expect(UnicodeString(
379 * of the transliterators and expect the identity function. F x
425 expect(*fwd, DATA[i], DATA[i+1]);
426 expect(*rev, DATA[i+1], DATA[i])
4698 void TransliteratorTest::expect(const UnicodeString& rules, function in class:TransliteratorTest
4705 void TransliteratorTest::expect(const UnicodeString& id, function in class:TransliteratorTest
4721 void TransliteratorTest::expect(const Transliterator& t, function in class:TransliteratorTest
4729 void TransliteratorTest::expect(const Transliterator& t, function in class:TransliteratorTest
    [all...]
  /external/icu/icu4c/source/test/intltest/
cpdtrtst.h 51 void expect(const CompoundTransliterator& t,
incaltst.h 42 void simpleTest(const Locale& loc, const UnicodeString& expect, UDate expectDate, UErrorCode& status);
transtst.h 48 * of the transliterators and expect the identity function. F x
378 void expect(const UnicodeString& rules,
383 void expect(const UnicodeString& id,
389 void expect(const Transliterator& t,
394 void expect(const Transliterator& t,
transtst.cpp 58 2. Make liberal use of the expect() method; it is your friend.
310 expect(UnicodeString("ab>x|y;", "") +
326 expect(UnicodeString("ab>x|yzacw;") +
353 expect(*t, "abcdefgABCDEFGU", "&bcd&fg!^**!^*&");
361 expect("{ [:Ll:] } x > y; [:Ll:] > z;", "aAbxq", "zAyzz");
362 expect("a[0-9]b > qrs", "1a7b9", "1qrs9");
364 expect(UnicodeString(
379 * of the transliterators and expect the identity function. F x
425 expect(*fwd, DATA[i], DATA[i+1]);
426 expect(*rev, DATA[i+1], DATA[i])
4698 void TransliteratorTest::expect(const UnicodeString& rules, function in class:TransliteratorTest
4705 void TransliteratorTest::expect(const UnicodeString& id, function in class:TransliteratorTest
4721 void TransliteratorTest::expect(const Transliterator& t, function in class:TransliteratorTest
4729 void TransliteratorTest::expect(const Transliterator& t, function in class:TransliteratorTest
    [all...]
  /external/lldb/test/lang/objc/foundation/
TestFoundationDisassembly.py 93 self.expect("thread backtrace", "Stop at +[NSString stringWithFormat:]",
104 self.expect("thread backtrace", "Stop at a.out`-[MyString initWithNSString:]",
113 self.expect("thread backtrace", "Stop at -[MyString description]",
124 self.expect("thread backtrace", "Stop at -[NSAutoreleasePool release]",
  /external/lldb/test/macosx/universal/
TestUniversal.py 52 self.expect("file " + exe, CURRENT_EXECUTABLE_SET,
71 self.expect(registers, exe=False,
77 self.expect("file " + exe + " -a i386", CURRENT_EXECUTABLE_SET,
99 self.expect(registers, exe=False,
  /external/lldb/test/python_api/symbol-context/
TestSymbolContext.py 69 self.expect(desc, "The module should match", exe=False,
73 self.expect(str(compileUnit), "The compile unit should match", exe=False,
86 self.expect(lineEntry.GetFileSpec().GetDirectory(), "The line entry should have the correct directory",
89 self.expect(lineEntry.GetFileSpec().GetFilename(), "The line entry should have the correct filename",
  /external/lldb/test/warnings/uuid/
TestAddDsymCommand.py 79 self.expect("add-dsym " + wrong_path, error=True,
83 self.expect("add-dsym " + right_path, error=True,
90 # This time, the UUID should match and we expect some feedback from lldb.
92 self.expect("add-dsym " + right_path,
101 self.expect("add-dsym " + right_path,
  /external/chromium_org/third_party/pexpect/
pxssh.py 227 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT, "(?i)connection closed by remote host"], timeout=login_timeout)
235 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT])
238 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT])
241 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT])
249 ### TODO: May NOT be OK if expect() got tricked and matched a false prompt.
295 index = self.expect([EOF, "(?i)there are stopped jobs"])
298 self.expect(EOF)
304 to the expect() method. This returns True if the shell prompt was
315 i = self.expect([self.PROMPT, TIMEOUT], timeout=timeout)
339 i = self.expect ([TIMEOUT, self.PROMPT], timeout=10
    [all...]
  /external/chromium_org/third_party/skia/tests/
BlitRowTest.cpp 64 uint8_t expect8, uint32_t* expect) {
67 *expect = expect32;
71 *expect = expect16;
74 *expect = expect8;
77 *expect = 0;
85 uint32_t expect; local
86 Proc proc = find_proc(bm, expect32, expect16, expect8, &expect);
89 int x = proc(bm.getAddr(0, y), bm.width(), expect, &bad);
92 gColorTypeName[bm.colorType()], x, y, expect, bad);
  /external/lldb/test/pexpect-2.4/
pxssh.py 196 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT, "(?i)connection closed by remote host"], timeout=login_timeout)
204 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT])
207 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT])
210 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT])
218 ### TODO: May NOT be OK if expect() got tricked and matched a false prompt.
264 index = self.expect([EOF, "(?i)there are stopped jobs"])
267 self.expect(EOF)
273 to the expect() method. This returns True if the shell prompt was
279 i = self.expect([self.PROMPT, TIMEOUT], timeout=timeout)
303 i = self.expect ([TIMEOUT, self.PROMPT], timeout=10
    [all...]
  /external/skia/tests/
BlitRowTest.cpp 64 uint8_t expect8, uint32_t* expect) {
67 *expect = expect32;
71 *expect = expect16;
74 *expect = expect8;
77 *expect = 0;
85 uint32_t expect; local
86 Proc proc = find_proc(bm, expect32, expect16, expect8, &expect);
89 int x = proc(bm.getAddr(0, y), bm.width(), expect, &bad);
92 gColorTypeName[bm.colorType()], x, y, expect, bad);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerTest.java 20 import static org.easymock.EasyMock.expect;
73 expect(mockServiceInterface.addClient(anyIAccessibilityManagerClient(),
76 expect(mockServiceInterface.getInstalledAccessibilityServiceList(UserHandle.USER_OWNER))
97 expect(mockServiceInterface.addClient(anyIAccessibilityManagerClient(),
116 expect(mockServiceInterface.addClient(anyIAccessibilityManagerClient(),
153 expect(mockServiceInterface.addClient(anyIAccessibilityManagerClient(),
156 expect(mockServiceInterface.sendAccessibilityEvent(eqAccessibilityEvent(sentEvent),
158 expect(mockServiceInterface.sendAccessibilityEvent(eqAccessibilityEvent(sentEvent),
191 expect(mockServiceInterface.addClient(anyIAccessibilityManagerClient(),
  /ndk/build/core/
definitions-host.mk 195 $(call test-expect,,$(call host-path-is-absolute,foo))\
196 $(call test-expect,,$(call host-path-is-absolute,foo/bar))\
197 $(call test-expect,,$(call host-path-is-absolute,.))\
198 $(call test-expect,,$(call host-path-is-absolute,..))
201 $(call test-expect,true,$(call host-path-is-absolute,/))\
202 $(call test-expect,true,$(call host-path-is-absolute,/foo))\
203 $(call test-expect,true,$(call host-path-is-absolute,/foo/bar))\
204 $(call test-expect,true,$(call host-path-is-absolute,//foo))\
205 $(call test-expect,true,$(call host-path-is-absolute,/.))
208 $(call test-expect,$(call windows-path-is-absolute,foo))
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
usettest.c 27 static void expect(const USet* set,
59 expect(s, "{abc}", "{ccc}", &status);
88 expect(set, "", "abc{ab}", NULL);
92 expect(set, "", "abc{ab}", NULL);
97 expect(set, "", "abc{ab}", NULL);
102 expect(set, "ABC", "DEF{ab}", NULL);
115 expect(set, "abc{ab}", "def{bc}", &ec);
119 expect(set, "abcd{ab}", "ef{bc}", NULL);
124 expect(set, "acd{ab}{bc}", "bef{cd}", NULL);
128 expect(set, "acd{bc}", "bfg{ab}", NULL)
236 static void expect(const USet* set, function
    [all...]
cnormtst.c 758 UChar input[1000], expect[1000], output[1000]; local
848 expect[expectLength++]=HANGUL_SYLLABLE;
850 expect[expectLength++]=HANGUL_SYLLABLE;
852 expect[expectLength++]=HANGUL_SYLLABLE;
854 expect[expectLength++]=HANGUL_SYLLABLE;
856 expect[expectLength++]=HANGUL_SYLLABLE;
858 expect[expectLength++]=HANGUL_SYLLABLE;
860 expect[expectLength++]=HANGUL_SYLLABLE;
862 expect[expectLength++]=HANGUL_SYLLABLE;
864 expect[expectLength++]=HANGUL_AC00+3
966 expect[]={ local
1032 const UChar *expect, *outLimit, *in; local
1435 UChar expect[12]; member in struct:__anon15934
    [all...]
  /external/icu/icu4c/source/test/cintltst/
usettest.c 27 static void expect(const USet* set,
59 expect(s, "{abc}", "{ccc}", &status);
88 expect(set, "", "abc{ab}", NULL);
92 expect(set, "", "abc{ab}", NULL);
97 expect(set, "", "abc{ab}", NULL);
102 expect(set, "ABC", "DEF{ab}", NULL);
115 expect(set, "abc{ab}", "def{bc}", &ec);
119 expect(set, "abcd{ab}", "ef{bc}", NULL);
124 expect(set, "acd{ab}{bc}", "bef{cd}", NULL);
128 expect(set, "acd{bc}", "bfg{ab}", NULL)
236 static void expect(const USet* set, function
    [all...]
cnormtst.c 762 UChar input[1000], expect[1000], output[1000]; local
852 expect[expectLength++]=HANGUL_SYLLABLE;
854 expect[expectLength++]=HANGUL_SYLLABLE;
856 expect[expectLength++]=HANGUL_SYLLABLE;
858 expect[expectLength++]=HANGUL_SYLLABLE;
860 expect[expectLength++]=HANGUL_SYLLABLE;
862 expect[expectLength++]=HANGUL_SYLLABLE;
970 expect[]={ local
1036 const UChar *expect, *outLimit, *in; local
1439 UChar expect[12]; member in struct:__anon25850
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 368 private void checkLegacyMessage(String tag, EmailContent.Message expect, Message actual)
370 assertEquals(tag, expect.mServerId, actual.getUid());
371 assertEquals(tag, expect.mServerTimeStamp, actual.getInternalDate().getTime());
372 assertEquals(tag, expect.mSubject, actual.getSubject());
373 assertEquals(tag, expect.mFrom, Address.toHeader(actual.getFrom()));
374 assertEquals(tag, expect.mTimeStamp, actual.getSentDate().getTime());
375 assertEquals(tag, expect.mTo, Address.toHeader(actual.getRecipients(RecipientType.TO)));
376 assertEquals(tag, expect.mCc, Address.toHeader(actual.getRecipients(RecipientType.CC)));
377 assertEquals(tag, expect.mBcc, Address.toHeader(actual.getRecipients(RecipientType.BCC)));
378 assertEquals(tag, expect.mReplyTo, Address.toHeader(actual.getReplyTo()))
    [all...]
  /external/chromium_org/third_party/jinja2/
parser.py 156 self.stream.expect('block_end')
172 self.stream.expect('assign')
178 lineno = self.stream.expect('name:for').lineno
180 self.stream.expect('name:in')
197 node = result = nodes.If(lineno=self.stream.expect('name:if').lineno)
218 node.name = self.stream.expect('name').value
261 self.stream.expect('name:as')
268 self.stream.expect('name:import')
281 self.stream.expect('comma')
307 self.stream.expect('lparen'
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
FunnelsTest.java 22 EasyMock.expect(byteSink.putBytes(EasyMock.aryEq(new byte[] { 4, 3, 2, 1})))
39 EasyMock.expect(byteSink.putString("test")).andReturn(byteSink).once();
  /external/lldb/test/expression_command/call-function/
TestCallStdStringFunction.py 46 self.expect("print str",
55 self.expect("print str.c_str()",

Completed in 951 milliseconds

<<11121314151617181920>>