Searched refs:mLength (Results 1 - 8 of 8) sorted by relevance

/external/astl/src/
H A Dstring.cpp57 // mCapacity is either mLength or the number of bytes reserved using
60 // mLength is the number of char in the string, excluding the terminating '\0'.
65 // Ensure that mCapacity + 1 and mLength + 1 is accessible.
88 // Resize the buffer pointed by mData if n >= mLength.
91 // Must be > mLength and > 0.
95 if (n < mLength || n == mCapacity || n + 1 < n) {
139 mLength = 0;
155 mLength = n;
156 mData[mLength] = '\0';
169 mLength
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteAnimation.java30 private float mLength; field in class:SpriteAnimation
37 mLength = 0.0f;
43 final float length = mLength;
84 mFrameStartTimes[mFrames.getCount()] = mLength;
86 mLength += frame.holdTime;
90 return mLength;
/external/astl/include/
H A Dvector103 bool empty() const { return mLength == 0; }
104 size_type size() const { return mLength; }
122 reference back() { return mLength ? *(mBegin + mLength - 1) : front(); }
123 const_reference back() const { return mLength ? *(mBegin + mLength - 1) : front(); }
137 { return index < mLength ? *( mBegin + index) : sDummy; }
140 { return index < mLength ? *( mBegin + index) : sDummy; }
143 iterator end() { return iterator(mBegin + mLength); }
146 const_iterator end() const { return const_iterator(mBegin + mLength); }
[all...]
H A Dstring113 size_type length() const { return mLength; }
114 size_type size() const { return mLength; }
290 iterator end() {return iterator(mData + mLength);}
291 const_iterator end() const {return const_iterator(mData + mLength);}
317 size_type mLength; // len of the string excl. null-terminator.
348 size_type new_len = mLength + dist;
349 if (new_len <= mLength) {
356 std::copy(first, last, mData + mLength);
357 mLength = new_len;
358 mData[mLength]
[all...]
H A Dlist197 bool empty() const { return mLength == 0; }
200 size_type size() const { return mLength; }
227 mLength = 0;
233 size_type mLength;
253 if (mLength + 1 > mLength) {
257 ++mLength;
286 --mLength;
/external/webkit/Source/WebKit/android/nav/
H A DFindCanvas.h204 size_t mLength; member in class:android::FindCanvas
H A DFindCanvas.cpp128 , mLength(byteLength)
488 GlyphSet set(paint, mLowerText, mUpperText, mLength);
/external/quake/quake/src/WinQuake/
H A Dgl_draw.cpp239 if (size + mLength > mCapacity) {
251 e->pData = mBase + mLength;
258 mLength += size;
311 mLength = 0;
365 size_t mLength; // How much of the mm file we are currently using member in class:textureStore

Completed in 624 milliseconds