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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/AArch64/
arm64-elf-reloc-condbr.s 4 b.eq somewhere
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_base64.py 10 eq = self.assertEqual
11 eq(base64.encodestring("www.python.org"), "d3d3LnB5dGhvbi5vcmc=\n")
12 eq(base64.encodestring("a"), "YQ==\n")
13 eq(base64.encodestring("ab"), "YWI=\n")
14 eq(base64.encodestring("abc"), "YWJj\n")
15 eq(base64.encodestring(""), "")
16 eq(base64.encodestring("abcdefghijklmnopqrstuvwxyz"
23 eq(base64.encodestring(bytearray('abc')), 'YWJj\n')
26 eq = self.assertEqual
27 eq(base64.decodestring("d3d3LnB5dGhvbi5vcmc=\n"), "www.python.org"
    [all...]
test_mimetypes.py 19 eq = self.assertEqual
20 eq(self.db.guess_type("foo.html"), ("text/html", None))
21 eq(self.db.guess_type("foo.tgz"), ("application/x-tar", "gzip"))
22 eq(self.db.guess_type("foo.tar.gz"), ("application/x-tar", "gzip"))
23 eq(self.db.guess_type("foo.tar.Z"), ("application/x-tar", "compress"))
24 eq(self.db.guess_type("foo.tar.bz2"), ("application/x-tar", "bzip2"))
25 eq(self.db.guess_type("foo.tar.xz"), ("application/x-tar", "xz"))
28 eq = self.assertEqual
30 eq(guess_type("data:,thisIsTextPlain"), ("text/plain", None))
31 eq(guess_type("data:;base64,thisIsTextPlain"), ("text/plain", None)
    [all...]
test_gettext.py 92 eq = self.assertEqual
94 eq(_('albatross'), 'albatross')
95 eq(_(u'mullusk'), 'bacon')
96 eq(_(r'Raymond Luxury Yach-t'), 'Throatwobbler Mangrove')
97 eq(_(ur'nudge nudge'), 'wink wink')
100 eq = self.assertEqual
102 eq(_("albatross"), 'albatross')
103 eq(_(u"mullusk"), 'bacon')
104 eq(_(r"Raymond Luxury Yach-t"), 'Throatwobbler Mangrove')
105 eq(_(ur"nudge nudge"), 'wink wink'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_base64.py 10 eq = self.assertEqual
11 eq(base64.encodestring("www.python.org"), "d3d3LnB5dGhvbi5vcmc=\n")
12 eq(base64.encodestring("a"), "YQ==\n")
13 eq(base64.encodestring("ab"), "YWI=\n")
14 eq(base64.encodestring("abc"), "YWJj\n")
15 eq(base64.encodestring(""), "")
16 eq(base64.encodestring("abcdefghijklmnopqrstuvwxyz"
23 eq(base64.encodestring(bytearray('abc')), 'YWJj\n')
26 eq = self.assertEqual
27 eq(base64.decodestring("d3d3LnB5dGhvbi5vcmc=\n"), "www.python.org"
    [all...]
test_mimetypes.py 19 eq = self.assertEqual
20 eq(self.db.guess_type("foo.html"), ("text/html", None))
21 eq(self.db.guess_type("foo.tgz"), ("application/x-tar", "gzip"))
22 eq(self.db.guess_type("foo.tar.gz"), ("application/x-tar", "gzip"))
23 eq(self.db.guess_type("foo.tar.Z"), ("application/x-tar", "compress"))
24 eq(self.db.guess_type("foo.tar.bz2"), ("application/x-tar", "bzip2"))
25 eq(self.db.guess_type("foo.tar.xz"), ("application/x-tar", "xz"))
28 eq = self.assertEqual
30 eq(guess_type("data:,thisIsTextPlain"), ("text/plain", None))
31 eq(guess_type("data:;base64,thisIsTextPlain"), ("text/plain", None)
    [all...]
test_gettext.py 92 eq = self.assertEqual
94 eq(_('albatross'), 'albatross')
95 eq(_(u'mullusk'), 'bacon')
96 eq(_(r'Raymond Luxury Yach-t'), 'Throatwobbler Mangrove')
97 eq(_(ur'nudge nudge'), 'wink wink')
100 eq = self.assertEqual
102 eq(_("albatross"), 'albatross')
103 eq(_(u"mullusk"), 'bacon')
104 eq(_(r"Raymond Luxury Yach-t"), 'Throatwobbler Mangrove')
105 eq(_(ur"nudge nudge"), 'wink wink'
    [all...]
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
eq.pass.cpp 14 // static constexpr bool eq(char_type c1, char_type c2);
22 assert(std::char_traits<char>::eq('a', 'a'));
23 assert(!std::char_traits<char>::eq('a', 'A'));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
eq.pass.cpp 14 // static constexpr bool eq(char_type c1, char_type c2);
22 assert(std::char_traits<char>::eq('a', 'a'));
23 assert(!std::char_traits<char>::eq('a', 'A'));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
check-for-global-initializers 100 if ($configuration eq "Debug" or $variant eq "debug" or $debugRoot) {
101 if ($target eq "JavaScriptCore") {
102 next if $shortName eq "AllInOneFile.o";
103 next if $shortName eq "Opcode.o";
104 next if $shortName eq "Structure.o";
105 next if $shortName eq "nodes.o";
107 if ($target eq "WebCore") {
108 next if $shortName eq "BidiRun.o";
109 next if $shortName eq "CachedPage.o"
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
removeEOL.pl 40 ok(removeEOL(undef) eq "", $title);
44 ok(removeEOL("This line ends with a Windows line ending.\r\n") eq "This line ends with a Windows line ending.", $title);
48 ok(removeEOL("This line ends with a Unix line ending.\n") eq "This line ends with a Unix line ending.", $title);
52 ok(removeEOL("This line ends with a Mac line ending.\r") eq "This line ends with a Mac line ending.", $title);
56 ok(removeEOL("This line contains a mix of line endings.\r\n\r\n\r\r\n\n\n\n") eq "This line contains a mix of line endings.", $title);
parseFirstEOL.pl 39 ok(firstEOLInString("This line ends with a Windows line ending.\r\n") eq "\r\n", $title);
43 ok(firstEOLInString("This line ends with a Unix line ending.\n") eq "\n", $title);
47 ok(firstEOLInString("This line ends with a Mac line ending.\r") eq "\r", $title);
51 ok(firstEOLInString("This line ends with a Mac line ending.\rThis line doesn't have a line ending.") eq "\r", $title);
55 ok(firstEOLInString("This line contains a mix of line endings.\r\n\r\n\r\r\n\n\n\n") eq "\r\n", $title);
  /external/chromium_org/third_party/WebKit/ManualTests/resources/multiFileResources/
post-echo-and-notify-done.cgi 5 if ($ENV{'REQUEST_METHOD'} eq "POST") {
  /external/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/
erase_const_iter.pass.cpp 43 typedef std::pair<C::const_iterator, C::const_iterator> Eq;
44 Eq eq = c.equal_range(1); local
45 assert(std::distance(eq.first, eq.second) == 2);
46 C::const_iterator k = eq.first;
52 eq = c.equal_range(2);
53 assert(std::distance(eq.first, eq.second) == 1);
54 k = eq.first
90 Eq eq = c.equal_range(1); local
    [all...]
insert_init.pass.cpp 43 typedef std::pair<C::iterator, C::iterator> Eq;
44 Eq eq = c.equal_range(1); local
45 assert(std::distance(eq.first, eq.second) == 2);
46 C::iterator k = eq.first;
52 eq = c.equal_range(2);
53 assert(std::distance(eq.first, eq.second) == 2);
54 k = eq.first
91 Eq eq = c.equal_range(1); local
    [all...]
insert_range.pass.cpp 43 typedef std::pair<C::iterator, C::iterator> Eq;
44 Eq eq = c.equal_range(1); local
45 assert(std::distance(eq.first, eq.second) == 2);
46 C::iterator k = eq.first;
52 eq = c.equal_range(2);
53 assert(std::distance(eq.first, eq.second) == 2);
54 k = eq.first
91 Eq eq = c.equal_range(1); local
    [all...]
erase_range.pass.cpp 44 typedef std::pair<C::iterator, C::iterator> Eq;
45 Eq eq = c.equal_range(1); local
46 assert(std::distance(eq.first, eq.second) == 2);
47 k = eq.first;
53 eq = c.equal_range(2);
54 assert(std::distance(eq.first, eq.second) == 2);
55 k = eq.first
122 Eq eq = c.equal_range(1); local
    [all...]
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
eq.pass.cpp 14 // static constexpr bool eq(char_type c1, char_type c2);
22 assert(std::char_traits<wchar_t>::eq(L'a', L'a'));
23 assert(!std::char_traits<wchar_t>::eq(L'a', L'A'));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/
erase_const_iter.pass.cpp 43 typedef std::pair<C::const_iterator, C::const_iterator> Eq;
44 Eq eq = c.equal_range(1); local
45 assert(std::distance(eq.first, eq.second) == 2);
46 C::const_iterator k = eq.first;
52 eq = c.equal_range(2);
53 assert(std::distance(eq.first, eq.second) == 1);
54 k = eq.first
90 Eq eq = c.equal_range(1); local
    [all...]
insert_init.pass.cpp 43 typedef std::pair<C::iterator, C::iterator> Eq;
44 Eq eq = c.equal_range(1); local
45 assert(std::distance(eq.first, eq.second) == 2);
46 C::iterator k = eq.first;
52 eq = c.equal_range(2);
53 assert(std::distance(eq.first, eq.second) == 2);
54 k = eq.first
91 Eq eq = c.equal_range(1); local
    [all...]
insert_range.pass.cpp 43 typedef std::pair<C::iterator, C::iterator> Eq;
44 Eq eq = c.equal_range(1); local
45 assert(std::distance(eq.first, eq.second) == 2);
46 C::iterator k = eq.first;
52 eq = c.equal_range(2);
53 assert(std::distance(eq.first, eq.second) == 2);
54 k = eq.first
91 Eq eq = c.equal_range(1); local
    [all...]
erase_range.pass.cpp 44 typedef std::pair<C::iterator, C::iterator> Eq;
45 Eq eq = c.equal_range(1); local
46 assert(std::distance(eq.first, eq.second) == 2);
47 k = eq.first;
53 eq = c.equal_range(2);
54 assert(std::distance(eq.first, eq.second) == 2);
55 k = eq.first
122 Eq eq = c.equal_range(1); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
eq.pass.cpp 14 // static constexpr bool eq(char_type c1, char_type c2);
22 assert(std::char_traits<wchar_t>::eq(L'a', L'a'));
23 assert(!std::char_traits<wchar_t>::eq(L'a', L'A'));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
antRun.pl 43 if ($^O eq "NetWare") {
59 if ($returnValue eq 0) {
  /external/valgrind/main/coregrind/
link_tool_exe_linux.in 79 if (($arch eq 'mips') || ($arch eq 'mipsel')
80 || ($arch eq 'mipsisa32r2el')) {
82 } elsif (($arch eq 'mips64') || ($arch eq 'mips64el') ||
83 ($arch eq 'mipsisa64el')) {

Completed in 1034 milliseconds

1 2 3 4 5 6 7 8 91011>>