HomeSort by relevance Sort by last modified time
    Searched defs:front (Results 1 - 25 of 208) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium/base/memory/
ref_counted_memory.cc 13 const unsigned char* RefCountedStaticMemory::front() const { function in class:RefCountedStaticMemory
35 const unsigned char* RefCountedBytes::front() const { function in class:RefCountedBytes
36 // STL will assert if we do front() on an empty vector, but calling code
38 return size() ? &data.front() : NULL;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.h 39 * Traditional .got.plt is placed in the front part of GOT (PLTGOT), and
82 Part() : front(NULL), last_used(NULL) { }
85 ARMGOTEntry* front; member in struct:mcld::ARMGOT::Part
  /external/icu4c/layoutex/
LXUtilities.cpp 77 le_int32 front, back; local
79 for (front = 0, back = length - 1; front < back; front += 1, back -= 1) {
80 le_int32 swap = array[front];
82 array[front] = array[back];
89 le_int32 front, back; local
91 for (front = 0, back = length - 1; front < back; front += 1, back -= 1)
    [all...]
  /external/skia/legacy/include/core/
SkDeque.h 25 const void* front() const;
28 void* front() { function in class:SkDeque
29 return (void*)((const SkDeque*)this)->front();
  /frameworks/av/media/libnbaio/
MonoPipeReader.cpp 70 size_t front = mPipe->mFront & (mPipe->mMaxFrames - 1); local
71 size_t part1 = mPipe->mMaxFrames - front;
76 memcpy(buffer, (char *) mPipe->mBuffer + (front << mBitShift), part1 << mBitShift);
77 if (CC_UNLIKELY(front + part1 == mPipe->mMaxFrames)) {
PipeReader.cpp 73 size_t front = mFront & (mPipe.mMaxFrames - 1); local
74 size_t red = mPipe.mMaxFrames - front;
79 memcpy(buffer, (char *) mPipe.mBuffer + (front << mBitShift), red << mBitShift);
81 if (CC_UNLIKELY(front + red == mPipe.mMaxFrames)) {
82 if (CC_UNLIKELY((count -= red) > front)) {
83 count = front;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 70 Item *front() { return first_; } function in struct:__sanitizer::IntrusiveList
  /external/marisa-trie/lib/marisa/
vector.h 53 const T &front() const { function in class:marisa::Vector
75 T &front() { function in class:marisa::Vector
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
vector.h 53 const T &front() const { function in class:marisa_alpha::Vector
75 T &front() { function in class:marisa_alpha::Vector
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 82 sp<NativeBuffer> front; member in class:android::FramebufferNativeWindow
  /frameworks/wilhelm/src/itf/
I3DLocation.c 171 SLVec3D front = *pFront; local
176 thiz->mOrientationVectors.mFront = front;
251 SLVec3D front = thiz->mOrientationVectors.mFront; local
254 *pFront = front;
I3DMacroscopic.c 104 SLVec3D front = *pFront; local
108 thiz->mOrientationVectors.mFront = front;
164 SLVec3D front = thiz->mOrientationVectors.mFront; local
167 *pFront = front;
  /external/llvm/include/llvm/ADT/
ArrayRef.h 100 /// front - Get the first element.
101 const T &front() const { function in class:llvm::ArrayRef
208 /// front - Get the first element.
209 T &front() const { function in class:llvm::ArrayRef
MapVector.h 67 std::pair<KeyT, ValueT> &front() { return Vector.front(); } function in class:llvm::MapVector
68 const std::pair<KeyT, ValueT> &front() const { return Vector.front(); } function in class:llvm::MapVector
StringRef.h 115 /// front - Get the first character in the string.
116 char front() const { function in class:llvm::StringRef
TinyPtrVector.h 57 Val = RHS.front();
66 Val.template get<VecTy*>()->push_back(RHS.front());
91 V->push_back(RHS.front());
166 EltTy front() const { function in class:llvm::TinyPtrVector
170 return Val.template get<VecTy*>()->front();
  /external/skia/include/core/
SkDeque.h 40 const void* front() const { return fFront; } function in class:SkDeque
43 void* front() { function in class:SkDeque
44 return (void*)((const SkDeque*)this)->front();
  /external/stlport/stlport/stl/
_queue.h 96 reference front() { return c.front(); } function in class:queue
97 const_reference front() const { return c.front(); } function in class:queue
222 const_reference top() const { return c.front(); }
  /frameworks/compile/mclinker/include/mcld/LD/
RelocData.h 77 reference front () { return m_Relocations.front(); } function in class:mcld::RelocData
78 const_reference front () const { return m_Relocations.front(); } function in class:mcld::RelocData
SectionData.h 70 reference front () { return m_Fragments.front(); } function in class:mcld::SectionData
71 const_reference front () const { return m_Fragments.front(); } function in class:mcld::SectionData
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_queue.h 96 reference front() { return c.front(); } function in class:queue
97 const_reference front() const { return c.front(); } function in class:queue
222 const_reference top() const { return c.front(); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_queue.h 81 * that supports @c front, @c back, @c push_back, and @c pop_front,
169 front() function in class:queue
172 return c.front();
180 front() const function in class:queue
183 return c.front();
345 * any type that supports @c front(), @c push_back, @c pop_back,
497 return c.front();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_queue.h 84 * that supports @c front, @c back, @c push_back, and @c pop_front,
162 front() function in class:queue
165 return c.front();
173 front() const function in class:queue
176 return c.front();
335 * any type that supports @c front(), @c push_back, @c pop_back,
476 return c.front();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_queue.h 84 * that supports @c front, @c back, @c push_back, and @c pop_front,
162 front() function in class:queue
165 return c.front();
173 front() const function in class:queue
176 return c.front();
335 * any type that supports @c front(), @c push_back, @c pop_back,
476 return c.front();
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_queue.h 81 * that supports @c front, @c back, @c push_back, and @c pop_front,
169 front() function in class:queue
172 return c.front();
180 front() const function in class:queue
183 return c.front();
345 * any type that supports @c front(), @c push_back, @c pop_back,
497 return c.front();

Completed in 1057 milliseconds

1 2 3 4 5 6 7 8 9