HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 1026 - 1050 of 4749) sorted by null

<<41424344454647484950>>

  /ndk/sources/android/support/tests/
wchar_unittest.cc 140 int base; member in struct:__anon35625
157 EXPECT_EQ(kData[n].expected, wcstol(kData[n].input, &end, kData[n].base));
166 int base; member in struct:__anon35626
183 EXPECT_EQ(kData[n].expected, wcstoul(kData[n].input, &end, kData[n].base));
192 int base; member in struct:__anon35627
209 EXPECT_EQ(kData[n].expected, wcstoll(kData[n].input, &end, kData[n].base));
218 int base; member in struct:__anon35628
235 EXPECT_EQ(kData[n].expected, wcstoull(kData[n].input, &end, kData[n].base));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 25 typedef std::basic_filebuf<CharT> base; typedef in struct:test_buf
26 typedef typename base::char_type char_type;
27 typedef typename base::int_type int_type;
28 typedef typename base::traits_type traits_type;
30 char_type* pbase() const {return base::pbase();}
31 char_type* pptr() const {return base::pptr();}
32 char_type* epptr() const {return base::epptr();}
33 void gbump(int n) {base::gbump(n);}
35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 23 typedef std::basic_filebuf<CharT> base; typedef in struct:test_buf
24 typedef typename base::char_type char_type;
25 typedef typename base::int_type int_type;
26 typedef typename base::traits_type traits_type;
28 char_type* eback() const {return base::eback();}
29 char_type* gptr() const {return base::gptr();}
30 char_type* egptr() const {return base::egptr();}
31 void gbump(int n) {base::gbump(n);}
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
underflow.pass.cpp 25 typedef std::basic_filebuf<CharT> base; typedef in struct:test_buf
26 typedef typename base::char_type char_type;
27 typedef typename base::int_type int_type;
29 char_type* eback() const {return base::eback();}
30 char_type* gptr() const {return base::gptr();}
31 char_type* egptr() const {return base::egptr();}
32 void gbump(int n) {base::gbump(n);}
34 virtual int_type underflow() {return base::underflow();}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
copy.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:test
43 base::setg(gbeg, gnext, gend);
47 base::setp(pbeg, pend);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
assign.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:test
31 base::operator=(t);
44 base::setg(gbeg, gnext, gend);
48 base::setp(pbeg, pend);
swap.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:test
33 base::swap(t);
54 base::setg(gbeg, gnext, gend);
58 base::setp(pbeg, pend);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 26 typedef std::wbuffer_convert<std::codecvt_utf8<wchar_t> > base; typedef in struct:test_buf
27 typedef base::char_type char_type;
28 typedef base::int_type int_type;
29 typedef base::traits_type traits_type;
31 explicit test_buf(std::streambuf* sb) : base(sb) {}
33 char_type* pbase() const {return base::pbase();}
34 char_type* pptr() const {return base::pptr();}
35 char_type* epptr() const {return base::epptr();}
36 void gbump(int n) {base::gbump(n);}
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);
    [all...]
pbackfail.pass.cpp 26 typedef std::wbuffer_convert<std::codecvt_utf8<wchar_t> > base; typedef in struct:test_buf
27 typedef base::char_type char_type;
28 typedef base::int_type int_type;
29 typedef base::traits_type traits_type;
31 explicit test_buf(std::streambuf* sb) : base(sb) {}
33 char_type* eback() const {return base::eback();}
34 char_type* gptr() const {return base::gptr();}
35 char_type* egptr() const {return base::egptr();}
36 void gbump(int n) {base::gbump(n);}
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);
    [all...]
underflow.pass.cpp 26 typedef std::wbuffer_convert<std::codecvt_utf8<wchar_t> > base; typedef in struct:test_buf
27 typedef base::char_type char_type;
28 typedef base::int_type int_type;
29 typedef base::traits_type traits_type;
31 explicit test_buf(std::streambuf* sb) : base(sb) {}
33 char_type* eback() const {return base::eback();}
34 char_type* gptr() const {return base::gptr();}
35 char_type* egptr() const {return base::egptr();}
36 void gbump(int n) {base::gbump(n);}
38 virtual int_type underflow() {return base::underflow();
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
item.hpp 30 , typename Base
34 : Base
36 typedef typename Base::upper_bound_ index_;
38 typedef typename next<typename Base::size>::type size;
39 typedef Base base; typedef in struct:boost::mpl::v_item
45 using Base::item_;
50 , typename Base
52 struct v_item<T,Base,1>
53 : Base
58 typedef Base base; typedef in struct:boost::mpl::v_item
76 typedef Base base; typedef in struct:boost::mpl::v_mask
92 typedef Base base; typedef in struct:boost::mpl::v_mask
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
char_parameter.hpp 60 typedef basic_parameter<T,char_name_policy> base; typedef in class:boost::BOOST_RT_PARAM_NAMESPACE::cla::char_parameter_t
63 explicit char_parameter_t( char_type name ) : base( cstring( &name, 1 ) ) {}
named_parameter.hpp 68 typedef basic_parameter<T,string_name_policy> base; typedef in class:boost::BOOST_RT_PARAM_NAMESPACE::cla::named_parameter_t
71 explicit named_parameter_t( cstring name ) : base( name ) {}
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscaper.java 17 package com.google.android.mail.common.base;
19 import static com.google.android.mail.common.base.Preconditions.checkNotNull;
Platform.java 17 package com.google.android.mail.common.base;
Splitter.java 17 package com.google.android.mail.common.base;
19 import static com.google.android.mail.common.base.Preconditions.checkArgument;
20 import static com.google.android.mail.common.base.Preconditions.checkNotNull;
21 import static com.google.android.mail.common.base.Preconditions.checkState;
23 import com.google.common.base.Joiner;
Strings.java 17 package com.google.android.mail.common.base;
19 import static com.google.android.mail.common.base.Preconditions.checkArgument;
20 import static com.google.android.mail.common.base.Preconditions.checkNotNull;
  /packages/apps/UnifiedEmail/tests/src/com/google/android/mail/common/base/
StringUtilTest.java 17 package com.google.android.mail.common.base;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_reading_utils.cpp 60 const int base = *pos; local
66 return base;
68 return base + offset;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
i386-protos.h 285 rtx base, index, disp; member in struct:ix86_address
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-ssa-alias.h 71 /* The base object of the memory reference or NULL_TREE if all of
73 tree base; member in struct:ao_ref_s
74 /* The offset relative to the base. */
84 /* The alias set of the base object or -1 if not yet computed. */
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_solaris_amd64.c 31 void *base; local
40 if (pthread_attr_getstack(&attr, &base, &size) != 0)
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_solaris_amd64.c 31 void *base; local
40 if (pthread_attr_getstack(&attr, &base, &size) != 0)
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/
timer.h 28 struct tvec_t_base_s *base; member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/
timer.h 28 struct tvec_t_base_s *base; member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }

Completed in 429 milliseconds

<<41424344454647484950>>