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

1234567891011>>

/external/chromium_org/third_party/icu/source/i18n/
H A Dmsgfmt_impl.h35 int32_t pos; member in class:FormatNameEnumeration
H A Dnumsys_impl.h35 int32_t pos; member in class:NumsysNameEnumeration
H A Dregion_impl.h35 int32_t pos; member in class:RegionNameEnumeration
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dnegequ.asm3 pos equ 4 define
6 mov [ebp+pos], eax
8 mov [ebp-pos], eax
/external/chromium_org/v8/test/intl/break-iterator/
H A Den-break.js37 var pos = iterator.first(); variable
38 while (pos !== -1) {
42 slices.push(textToSegment.slice(pos, nextPos));
45 pos = nextPos;
H A Dzh-break.js38 var pos = iterator.first(); variable
39 while (pos !== -1) {
43 slices.push(textToSegment.slice(pos, nextPos));
46 pos = nextPos;
/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.h35 int32_t pos; member in class:FormatNameEnumeration
H A Dnumsys_impl.h35 int32_t pos; member in class:NumsysNameEnumeration
H A Dregion_impl.h35 int32_t pos; member in class:RegionNameEnumeration
/external/chromium_org/third_party/skia/gm/
H A Dbigtext.cpp42 SkPoint pos = { variable
48 canvas->drawText("/", 1, pos.fX, pos.fY, paint);
51 canvas->drawPosText("\\", 1, &pos, paint);
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dcontrol_panel.js18 var pos = {
24 target.style.left = pos.left + 'px';
25 target.style.bottom = pos.bottom + 'px';
/external/libcxx/test/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());
/external/libcxx/test/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());
/external/libcxx/test/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());
/external/libcxx/test/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());
/external/skia/gm/
H A Dbigtext.cpp41 SkPoint pos = { variable
47 canvas->drawText("/", 1, pos.fX, pos.fY, paint);
50 canvas->drawPosText("\\", 1, &pos, paint);

Completed in 303 milliseconds

1234567891011>>