Searched defs:pos (Results 1 - 25 of 2792) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-08-17-DeadCodeShortCircuit.c3 int test(_Bool pos, _Bool color) { argument
5 return (pos && color);
/external/icu/icu4c/source/i18n/
H A Dmsgfmt_impl.h37 int32_t pos; member in class:FormatNameEnumeration
H A Dnumsys_impl.h39 int32_t pos; member in class:NumsysNameEnumeration
H A Dregion_impl.h37 int32_t pos; member in class:RegionNameEnumeration
/external/syslinux/gpxe/src/hci/mucurses/
H A Dprint_nadv.c20 struct cursor_pos pos; local
22 _store_curs_pos( win, &pos );
24 _restore_curs_pos( win, &pos );
/external/adhd/cras/src/tests/
H A Dutf8_unittest.cc18 size_t pos; local
22 "\xbc\xce\xb5", &pos));
23 EXPECT_EQ(35, pos);
25 EXPECT_EQ(1, valid_utf8_string("Playback", &pos));
26 EXPECT_EQ(8, pos);
28 EXPECT_EQ(1, valid_utf8_string("The Euro sign: \xe2\x82\xac", &pos));
29 EXPECT_EQ(18, pos);
32 EXPECT_EQ(1, valid_utf8_string("\x01", &pos));
33 EXPECT_EQ(1, pos);
34 EXPECT_EQ(1, valid_utf8_string("\xc2\x80", &pos));
80 size_t pos; local
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.not.of/
H A Dchar_size.pass.cpp12 // size_type find_first_not_of(charT c, size_type pos = 0) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos, argument
24 assert(s.find_first_not_of(c, pos) == x);
26 assert(pos <= x && x < s.size());
H A Dpointer_size.pass.cpp12 // size_type find_first_not_of(const charT* s, size_type pos = 0) const;
21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_first_not_of(str, pos) == x);
26 assert(pos <= x && x < s.size());
H A Dstring_size.pass.cpp12 // size_type find_first_not_of(const basic_string& str, size_type pos = 0) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_first_not_of(str, pos) == x);
25 assert(pos <= x && x < s.size());
H A Dstring_view_size.pass.cpp12 // size_type find_first_not_of(basic_string_view sv, size_type pos = 0) const;
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_first_not_of(sv, pos) == x);
25 assert(pos <= x && x < s.size());
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.of/
H A Dchar_size.pass.cpp12 // size_type find_first_of(charT c, size_type pos = 0) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos, argument
24 assert(s.find_first_of(c, pos) == x);
26 assert(pos <= x && x < s.size());
H A Dpointer_size.pass.cpp12 // size_type find_first_of(const charT* s, size_type pos = 0) const;
21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_first_of(str, pos) == x);
26 assert(pos <= x && x < s.size());
H A Dstring_size.pass.cpp12 // size_type find_first_of(const basic_string& str, size_type pos = 0) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_first_of(str, pos) == x);
25 assert(pos <= x && x < s.size());
H A Dstring_view_size.pass.cpp12 // size_type find_first_of(const basic_string_view sv, size_type pos = 0) const;
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_first_of(sv, pos) == x);
25 assert(pos <= x && x < s.size());
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.last.not.of/
H A Dchar_size.pass.cpp12 // size_type find_last_not_of(charT c, size_type pos = npos) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos, argument
24 assert(s.find_last_not_of(c, pos) == x);
26 assert(x <= pos && x < s.size());
H A Dpointer_size.pass.cpp12 // size_type find_last_not_of(const charT* s, size_type pos = npos) const;
21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_last_not_of(str, pos) == x);
26 assert(x <= pos && x < s.size());
H A Dstring_size.pass.cpp12 // size_type find_last_not_of(const basic_string& str, size_type pos = npos) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_last_not_of(str, pos) == x);
25 assert(x <= pos && x < s.size());
H A Dstring_view_size.pass.cpp12 // size_type find_last_not_of(basic_string_view sv, size_type pos = npos) const;
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_last_not_of(sv, pos) == x);
25 assert(x <= pos && x < s.size());
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.last.of/
H A Dchar_size.pass.cpp12 // size_type find_last_of(charT c, size_type pos = npos) const;
21 test(const S& s, typename S::value_type c, typename S::size_type pos, argument
24 assert(s.find_last_of(c, pos) == x);
26 assert(x <= pos && x < s.size());
H A Dpointer_size.pass.cpp12 // size_type find_last_of(const charT* s, size_type pos = npos) const;
21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
24 assert(s.find_last_of(str, pos) == x);
26 assert(x <= pos && x < s.size());
H A Dstring_size.pass.cpp12 // size_type find_last_of(const basic_string& str, size_type pos = npos) const;
21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_last_of(str, pos) == x);
25 assert(x <= pos && x < s.size());
H A Dstring_view_size.pass.cpp12 // size_type find_last_of(const basic_string_view sv, size_type pos = npos) const;
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x) argument
23 assert(s.find_last_of(sv, pos) == x);
25 assert(x <= pos && x < s.size());
/external/libcxx/test/std/strings/string.view/string.view.find/
H A Dfind_first_not_of_char_size.pass.cpp12 // constexpr size_type find_first_not_of(charT c, size_type pos = 0) const;
22 test(const S& s, typename S::value_type c, typename S::size_type pos, argument
25 assert(s.find_first_not_of(c, pos) == x);
27 assert(pos <= x && x < s.size());
H A Dfind_first_not_of_pointer_size.pass.cpp12 // constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const;
22 test(const S& s, const typename S::value_type* str, typename S::size_type pos, argument
25 assert(s.find_first_not_of(str, pos) == x);
27 assert(pos <= x && x < s.size());
H A Dfind_first_not_of_string_view_size.pass.cpp12 // size_type find_first_not_of(const basic_string& str, size_type pos = 0) const;
19 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) argument
21 assert(s.find_first_not_of(str, pos) == x);
23 assert(pos <= x && x < s.size());

Completed in 403 milliseconds

1234567891011>>