HomeSort by relevance Sort by last modified time
    Searched full:pbase (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 30 char_type* pbase() const {return base::pbase();} function in struct:test_buf
44 assert(f.pbase() == 0);
48 assert(f.pbase() != 0);
49 assert(f.pptr() == f.pbase());
50 assert(f.epptr() - f.pbase() == 4095);
64 assert(f.pbase() == 0);
68 assert(f.pbase() == 0);
83 assert(f.pbase() == 0);
87 assert(f.pbase() != 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 30 char_type* pbase() const {return base::pbase();} function in struct:test_buf
44 assert(f.pbase() == 0);
48 assert(f.pbase() != 0);
49 assert(f.pptr() == f.pbase());
50 assert(f.epptr() - f.pbase() == 4095);
64 assert(f.pbase() == 0);
68 assert(f.pbase() == 0);
83 assert(f.pbase() == 0);
87 assert(f.pbase() != 0)
    [all...]
  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 33 char_type* pbase() const {return base::pbase();} function in struct:test_buf
46 assert(f.pbase() == 0);
50 assert(f.pbase() != 0);
51 assert(f.pptr() == f.pbase());
52 assert(f.epptr() - f.pbase() == 4095);
64 assert(f.pbase() == 0);
68 assert(f.pbase() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 33 char_type* pbase() const {return base::pbase();} function in struct:test_buf
46 assert(f.pbase() == 0);
50 assert(f.pbase() != 0);
51 assert(f.pptr() == f.pbase());
52 assert(f.epptr() - f.pbase() == 4095);
64 assert(f.pbase() == 0);
68 assert(f.pbase() == 0);
  /ndk/sources/cxx-stl/gabi++/tests/
test_gabixx_rtti.cpp 74 Base* pbase = &derived; local
77 CHECK(typeid(pbase) == typeid(Base*));
81 printf(" *pbase is: %s\n", typeid(*pbase).name());
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 74 Base* pbase = &derived; local
77 CHECK(typeid(pbase) == typeid(Base*));
81 printf(" *pbase is: %s\n", typeid(*pbase).name());
  /frameworks/compile/mclinker/include/mcld/MC/
Attribute.h 39 AttributeBase(const AttributeBase& pBase)
40 : m_WholeArchive(pBase.m_WholeArchive),
41 m_AsNeeded(pBase.m_AsNeeded),
42 m_AddNeeded(pBase.m_AddNeeded),
43 m_Static(pBase.m_Static) {}
152 const Attribute& pBase,
180 AttributeProxy& assign(Attribute* pBase);
  /frameworks/compile/mclinker/lib/MC/
Attribute.cpp 52 const Attribute& pBase,
54 : m_AttrPool(pParent), m_pBase(&pBase), m_Constraint(pConstraint) {
96 const Attribute*& pBase,
101 pBase = pCopy;
104 pBase = result;
156 AttributeProxy& AttributeProxy::assign(Attribute* pBase) {
157 m_pBase = pBase;
  /external/libcxx/src/
strstream.cpp 147 return static_cast<int>(pptr() - pbase());
173 ptrdiff_t nout = pptr() - pbase();
174 ptrdiff_t eout = epptr() - pbase();
275 // min(pbase, newpos), newpos, epptr()
277 setp(min(pbase(), newpos), epptr());
278 pbump(static_cast<int>((epptr() - pbase()) - __off));
305 // min(pbase, newpos), newpos, epptr()
307 setp(min(pbase(), newpos), epptr());
308 pbump(static_cast<int>((epptr() - pbase()) - temp));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
strstream.cpp 147 return static_cast<int>(pptr() - pbase());
173 ptrdiff_t nout = pptr() - pbase();
174 ptrdiff_t eout = epptr() - pbase();
275 // min(pbase, newpos), newpos, epptr()
277 setp(min(pbase(), newpos), epptr());
278 pbump(static_cast<int>((epptr() - pbase()) - __off));
305 // min(pbase, newpos), newpos, epptr()
307 setp(min(pbase(), newpos), epptr());
308 pbump(static_cast<int>((epptr() - pbase()) - temp));
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
swap.pass.cpp 37 assert(this->pbase() == old_that.pbase());
45 assert(t.pbase() == old_this.pbase());
assign.pass.cpp 35 assert(this->pbase() == t.pbase());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
swap.pass.cpp 37 assert(this->pbase() == old_that.pbase());
45 assert(t.pbase() == old_this.pbase());
assign.pass.cpp 35 assert(this->pbase() == t.pbase());
  /external/opencv3/3rdparty/libtiff/
tif_unix.c 114 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize)
119 *pbase = (void*)
121 if (*pbase != (void*) -1) {
137 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize)
139 (void) fd; (void) pbase; (void) psize;
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
copy.pass.cpp 35 assert(this->pbase() == t.pbase());
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
pbump.pass.cpp 35 CharT* pbeg = base::pbase();
39 assert(base::pbase() == pbeg);
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/res/layout/
resource_test.xml 20 <variable name="pbase" type="int"/>
54 android:text="@{`` + @fraction/myParentFraction(base, pbase)}"/>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
copy.pass.cpp 35 assert(this->pbase() == t.pbase());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
pbump.pass.cpp 35 CharT* pbeg = base::pbase();
39 assert(base::pbase() == pbeg);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
sstream.tcc 115 if (this->pbase())
116 __tmp.assign(this->pbase(), this->epptr() - this->pbase());
120 this->gptr() - this->eback(), this->pptr() - this->pbase());
160 const char_type* __beg = __testin ? this->eback() : this->pbase();
187 _M_pbump(this->pbase(), this->epptr(), __newoffo);
203 const char_type* __beg = __testin ? this->eback() : this->pbase();
217 _M_pbump(this->pbase(), this->epptr(), __pos);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
sstream.tcc 115 if (this->pbase())
116 __tmp.assign(this->pbase(), this->epptr() - this->pbase());
120 this->gptr() - this->eback(), this->pptr() - this->pbase());
160 const char_type* __beg = __testin ? this->eback() : this->pbase();
187 _M_pbump(this->pbase(), this->epptr(), __newoffo);
203 const char_type* __beg = __testin ? this->eback() : this->pbase();
217 _M_pbump(this->pbase(), this->epptr(), __pos);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
sstream.tcc 115 if (this->pbase())
116 __tmp.assign(this->pbase(), this->epptr() - this->pbase());
120 this->gptr() - this->eback(), this->pptr() - this->pbase());
160 const char_type* __beg = __testin ? this->eback() : this->pbase();
187 _M_pbump(this->pbase(), this->epptr(), __newoffo);
203 const char_type* __beg = __testin ? this->eback() : this->pbase();
217 _M_pbump(this->pbase(), this->epptr(), __pos);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
sstream.tcc 115 if (this->pbase())
116 __tmp.assign(this->pbase(), this->epptr() - this->pbase());
120 this->gptr() - this->eback(), this->pptr() - this->pbase());
160 const char_type* __beg = __testin ? this->eback() : this->pbase();
187 _M_pbump(this->pbase(), this->epptr(), __newoffo);
203 const char_type* __beg = __testin ? this->eback() : this->pbase();
217 _M_pbump(this->pbase(), this->epptr(), __pos);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTypedValue.java 122 public static float complexToFraction(int data, float base, float pbase)
128 return complexToFloat(data) * pbase;
134 public float getFraction(float base, float pbase)
136 return complexToFraction(typedValue.data, base, pbase);

Completed in 6563 milliseconds

1 2 3 4 5 6 7 8 9