HomeSort by relevance Sort by last modified time
    Searched refs:mBase (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/base/core/java/android/content/
ContextWrapper.java 46 Context mBase;
49 mBase = base;
60 if (mBase != null) {
63 mBase = base;
70 return mBase;
75 return mBase.getAssets();
81 return mBase.getResources();
86 return mBase.getPackageManager();
91 return mBase.getContentResolver();
96 return mBase.getMainLooper()
    [all...]
MutableContextWrapper.java 36 mBase = base;
  /packages/apps/Calculator/src/com/android/calculator2/
HistoryEntry.java 25 private String mBase;
29 mBase = str;
35 mBase = in.readUTF();
44 out.writeUTF(mBase);
51 return mBase;
55 mEdited = mBase;
67 return mBase;
  /external/doclava/src/com/google/doclava/
SeeTagInfo.java 22 private ContainerInfo mBase;
27 mBase = base;
33 LinkReference.parse(text(), mBase, position(), (!"@see".equals(name()))
34 && (mBase != null ? mBase.checkLevel() : true));
67 if (tag.mBase.checkLevel() && tag.checkLevel()) {
AttrTagInfo.java 31 private ContainerInfo mBase;
46 mBase = base;
65 LinkReference linkRef = LinkReference.parse(ref, mBase, position, false);
Comment.java 45 mBase = base;
309 mParamTagsList.add(new ParamTagInfo("@param", "@param", text, mBase, pos));
311 mSeeTagsList.add(new SeeTagInfo("@see", "@see", text, mBase, pos));
313 mInlineTagsList.add(new SeeTagInfo(name, "@see", text, mBase, pos));
315 mThrowsTagsList.add(new ThrowsTagInfo("@throws", "@throws", text, mBase, pos));
317 mReturnTagsList.add(new ParsedTagInfo("@return", "@return", text, mBase, pos));
323 mDeprecatedTagsList.add(new ParsedTagInfo("@deprecated", "@deprecated", text, mBase, pos));
331 AttrTagInfo tag = new AttrTagInfo("@attr", "@attr", text, mBase, pos);
342 mInlineTagsList.add(new SampleTagInfo(name, "@include", text, mBase, pos));
543 ContainerInfo mBase;
    [all...]
SampleTagInfo.java 56 private ContainerInfo mBase;
70 mBase = base;
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 29 private Context mBase;
40 mBase = base;
46 mBase = newBase;
75 mInflater = LayoutInflater.from(mBase).cloneInContext(this);
79 return mBase.getSystemService(name);
101 Resources.Theme theme = mBase.getTheme();
  /system/core/libpixelflinger/codeflinger/
CodeCache.cpp 44 mBase = (uint32_t*)mspace_malloc(getMspace(), size);
51 mspace_free(getMspace(), mBase);
68 if (!mBase) return NO_MEMORY;
74 return mBase;
79 mBase = (uint32_t*)mspace_realloc(getMspace(), mBase, newSize);
96 uint32_t* pageStart = (uint32_t*) (((uintptr_t) mBase) & pagemask);
97 size_t adjustedLength = (mBase - pageStart) * sizeof(uint32_t) + mSize;
99 if (mBase && mprotect(pageStart, adjustedLength, PROT_READ | PROT_WRITE | PROT_EXEC) != 0) {
100 mspace_free(getMspace(), mBase);
    [all...]
CodeCache.h 75 uint32_t* mBase;
  /frameworks/base/libs/binder/
MemoryHeapBase.cpp 44 : mFD(-1), mSize(0), mBase(MAP_FAILED),
50 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags),
67 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags),
86 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags),
100 mBase = base;
136 mBase = base;
139 mBase = 0; // not MAP_FAILED
158 //LOGD("munmap(fd=%d, base=%p, size=%lu)", fd, mBase, mSize);
159 munmap(mBase, mSize);
161 mBase = 0
    [all...]
IMemory.cpp 108 mutable void* mBase;
234 mHeapId(-1), mBase(MAP_FAILED), mSize(0), mFlags(0), mOffset(0), mRealHeap(false)
243 if (mBase != MAP_FAILED) {
254 munmap(mBase, mSize);
270 if (heap->mBase != MAP_FAILED) {
273 mBase = heap->mBase;
316 mBase = mmap(0, size, access, MAP_SHARED, fd, offset);
317 if (mBase == MAP_FAILED) {
338 return mBase;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
UnicodeChart.java 43 private int mBase;
98 drawChart(canvas, mBase * 256);
104 if (mBase > 0) {
105 mBase -= 1;
110 mBase += 1;
  /packages/apps/Launcher2/src/com/android/launcher2/
SymmetricalLinearTween.java 35 long mBase;
73 mBase = baseTime;
81 long diff = now - mBase;
82 mBase = now + diff - mDuration;
90 long base = mBase;
  /cts/apps/CtsVerifier/jni/audioquality/
Fft.h 65 int mBase;
Fft.cpp 75 mBase = (mFftTableSize * 2)/mFftSize;
88 int lmx, lo, lixnp, lm, j, nv2, k=mBase, im, jm, l = mPower2;
140 int lmx, lo, lixnp, lm, j, nv2, k=mBase, im, jm, l = mPower2;
  /frameworks/base/libs/utils/
RefBase.cpp 57 RefBase* const mBase;
65 , mBase(base)
84 , mBase(base)
141 // "addStrongRef: RefBase=%p, id=%p", mBase, id);
147 // "removeStrongRef: RefBase=%p, id=%p", mBase, id);
158 // mBase, old_id, new_id);
191 sprintf(buf, "Strong references on RefBase %p (weakref_type %p):\n", mBase, this);
194 sprintf(buf, "Weak references on RefBase %p (weakref_type %p):\n", mBase, this);
263 id, mBase, this);
268 id, mBase, this)
    [all...]
  /frameworks/base/core/java/android/widget/
Chronometer.java 61 private long mBase;
109 mBase = SystemClock.elapsedRealtime();
110 updateText(mBase);
120 mBase = base;
129 return mBase;
225 long seconds = now - mBase;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ThreadPanel.java 81 private Composite mBase;
193 mBase = new Composite(parent, SWT.NONE);
194 mBase.setLayout(new StackLayout());
197 mNotEnabled = new Label(mBase, SWT.CENTER | SWT.WRAP);
202 mNotSelected = new Label(mBase, SWT.CENTER | SWT.WRAP);
206 mThreadBase = new Composite(mBase, SWT.NONE);
360 ((StackLayout)mBase.getLayout()).topControl = mNotSelected;
362 return mBase;
438 ((StackLayout)mBase.getLayout()).topControl = mNotEnabled;
444 ((StackLayout)mBase.getLayout()).topControl = mThreadBase
    [all...]
NativeHeapPanel.java 88 private Composite mBase;
484 mBase = new Composite(parent, SWT.NONE);
488 mBase.setLayout(gl);
489 mBase.setLayoutData(new GridData(GridData.FILL_BOTH));
492 Composite tmp = new Composite(mBase, SWT.NONE);
526 Composite top_layout = new Composite(mBase, SWT.NONE);
560 FileDialog fileDialog = new FileDialog(mBase.getShell(), SWT.SAVE);
633 mTopStackComposite = new Composite(mBase, SWT.NONE);
647 //mImage = new Label(mBase, SWT.NONE);
649 mBase.pack()
    [all...]
  /external/webkit/Source/WebKit/android/jni/
PictureSet.h 61 bool mBase;
132 bool mBase : 8; // true if nothing is drawn underneath this
PictureSet.cpp 138 pictureAndBounds.mBase = true;
218 current->mBase);
256 if (!remove && !current->mBase && intersect)
260 if (!remove && current->mBase && rect.contains(current->mArea))
265 if (!remove && current->mBase && intersect
272 current->mBase = false;
301 if (current->mBase)
316 if (!current->mBase)
340 current->mBase = true;
468 working->mBase ? 'Y' : 'N')
    [all...]
  /frameworks/base/include/binder/
MemoryHeapBase.h 90 void* mBase;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLocaleUtils.java 134 private ContactLocaleUtilsBase mBase = new ContactLocaleUtilsBase();
183 return (utils == null) ? mBase: utils;
  /frameworks/base/core/java/android/text/
DynamicLayout.java 104 mBase = base;
188 if (s != mBase)
478 private CharSequence mBase;

Completed in 622 milliseconds

1 2