HomeSort by relevance Sort by last modified time
    Searched defs:mLast (Results 1 - 10 of 10) sorted by null

  /frameworks/base/core/java/android/net/http/
Timer.java 28 private long mLast;
31 mStart = mLast = SystemClock.uptimeMillis();
37 HttpLog.v(message + " " + (now - mLast) + " total " + (now - mStart));
39 mLast = now;
  /frameworks/base/libs/rs/
rsProgramFragment.h 67 ObjectBaseRef<ProgramFragment> mLast;
rsProgramRaster.h 63 ObjectBaseRef<ProgramRaster> mLast;
rsProgramVertex.h 79 ObjectBaseRef<ProgramVertex> mLast;
rsProgramFragmentStore.h 72 ObjectBaseRef<ProgramFragmentStore> mLast;
  /hardware/msm7k/libgralloc/
allocator.h 36 NODE* mLast;
39 LinkedList() : mFirst(0), mLast(0) { }
43 NODE const* tail() const { return mLast; }
44 NODE* tail() { return mLast; }
49 if (node->next == 0) mLast = newNode;
64 mFirst = mLast = newNode;
75 if (mLast == 0) {
78 newNode->prev = mLast;
80 mLast->next = newNode;
81 mLast = newNode
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/
allocator.h 37 NODE* mLast;
40 LinkedList() : mFirst(0), mLast(0) { }
44 NODE const* tail() const { return mLast; }
45 NODE* tail() { return mLast; }
50 if (node->next == 0) mLast = newNode;
65 mFirst = mLast = newNode;
76 if (mLast == 0) {
79 newNode->prev = mLast;
81 mLast->next = newNode;
82 mLast = newNode
    [all...]
  /frameworks/base/libs/binder/
MemoryDealer.cpp 52 NODE* mLast;
55 LinkedList() : mFirst(0), mLast(0) { }
59 NODE const* tail() const { return mLast; }
60 NODE* tail() { return mLast; }
65 if (node->next == 0) mLast = newNode;
80 mFirst = mLast = newNode;
91 if (mLast == 0) {
94 newNode->prev = mLast;
96 mLast->next = newNode;
97 mLast = newNode
    [all...]
  /external/quake/quake/src/WinQuake/
gl_draw.cpp 213 if (! mLast) {
214 mLast = e;
282 mLast = 0;
332 if (e == mLast) {
333 mLast = e->prev;
340 entry* e = mLast;
377 entry* mLast;
    [all...]
  /external/webkit/WebKit/android/nav/
SelectText.cpp 472 , mLast(area.width(), area.height())
475 mLast.set(last);
482 return !mLast.isSpace(mLastGlyph);
529 mLast.set(*this);
533 CommonCheck mLast;
615 mLast.setEmpty();
631 if (VERBOSE_LOGGING && !mLast.isEmpty()) DBG_NAV_LOGD("%s 1"
633 " mLast=(%d,%d,r=%d,b=%d) mLastBase=%d",
636 mLast.fLeft, mLast.fTop, mLast.fRight, mLast.fBottom, mLastBase)
    [all...]

Completed in 628 milliseconds