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

  /frameworks/base/tools/aapt/
DirectoryWalker.h 41 struct dirent mEntry;
78 mEntry = *entryPtr;
80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name);
82 return &mEntry;
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsPreference.java 30 private final ProcStatsEntry mEntry;
36 mEntry = entry;
42 return mEntry;
ProcessStatsDetail.java 63 private ProcStatsEntry mEntry;
87 mEntry = (ProcStatsEntry)args.getParcelable(EXTRA_ENTRY);
88 mEntry.retrieveUiData(mPm);
117 final double percentOfWeight = (((double)mEntry.mWeight) / mMaxWeight) * 100;
120 String appLevelText = makePercentString(getResources(), mEntry.mDuration, mTotalTime);
124 summary.setText(mEntry.mName);
127 mTitleView.setText(mEntry.mUiBaseLabel);
133 if (mEntry.mUiTargetApp != null) {
134 icon.setImageDrawable(mEntry.mUiTargetApp.loadIcon(mPm));
149 if (mEntry.mUid >= android.os.Process.FIRST_APPLICATION_UID)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java 43 private ValuesDelta mEntry;
97 mEntry = values;
112 mEntry.setFromTemplate(false);
135 mEntry.put(Photo.PHOTO, (byte[])null);
143 mEntry.setFromTemplate(false);
146 mEntry.setSuperPrimary(true);
157 if (compressed != null) mEntry.setPhoto(compressed);
164 mEntry.put(Photo.IS_SUPER_PRIMARY, superPrimary ? 1 : 0);
172 mEntry.setFromTemplate(true);
LabeledEditorView.java 77 private ValuesDelta mEntry;
182 mEntry.markDeleted();
266 return mEntry;
301 mEntry.put(column, value);
327 final String dbValue = mEntry.getAsString(column);
336 setValues(mKind, mEntry, mState, mReadOnly, mViewIdGenerator);
347 mEntry = entry;
371 return mEntry;
410 mEntry.put(mKind.typeColumn, mType.rawValue);
411 mEntry.put(mType.customColumn, customText)
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
SimpleRecipientChip.java 32 private final RecipientEntry mEntry;
43 mEntry = entry;
78 return mEntry;
92 return !TextUtils.isEmpty(mOriginalText) ? mOriginalText : mEntry.getDestination();
97 return mEntry.isGalContact();
  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingMenu.java 32 private TextView mEntry;
41 mEntry = (TextView) findViewById(R.id.current_setting);
53 mEntry.setText(mPreference.getEntry());
57 mEntry.setText(mPreference.getEntries()[index]);
76 if (mEntry != null) mEntry.setEnabled(enable);
  /packages/apps/Camera2/src/com/android/camera/ui/
InLineSettingMenu.java 32 private TextView mEntry;
41 mEntry = (TextView) findViewById(R.id.current_setting);
53 mEntry.setText(mPreference.getEntry());
57 mEntry.setText(mPreference.getEntries()[index]);
76 if (mEntry != null) mEntry.setEnabled(enable);
  /libcore/luni/src/main/java/java/util/jar/
JarInputStream.java 40 private JarEntry mEntry;
66 if ((mEntry = getNextJarEntry()) == null) {
69 if (mEntry.getName().equalsIgnoreCase(JarFile.META_DIR)) {
70 mEntry = null; // modifies behavior of getNextJarEntry()
72 mEntry = getNextJarEntry();
74 if (mEntry.getName().equalsIgnoreCase(JarFile.MANIFEST_NAME)) {
75 mEntry = null;
88 mEntry.setAttributes(temp);
141 if (mEntry != null) {
180 if (mEntry != null)
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingKnob.java 40 private TextView mEntry;
102 mEntry = (TextView) findViewById(R.id.current_setting);
117 mEntry.setText(mPreference.getEntry());
124 mEntry.setText(mPreference.getEntries()[index]);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadCache.java 340 private Entry mEntry;
344 mEntry = entry;
359 while (!mIsCancelled && mEntry == null) {
367 return mEntry;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSlidingWindow.java 80 public final AlbumEntry mEntry;
82 mEntry = entry;
87 if (mEntry != null) mEntry.isPanorama = isPanorama;
  /frameworks/base/libs/hwui/
DisplayListOp.h 735 mEntry = mAtlas.getEntry(bitmap);
736 if (mEntry) {
738 mUvMapper = mEntry->uvMapper;
749 if (mEntry && mEntryGenerationId != mAtlas.getGenerationId()) {
751 mEntry = mAtlas.getEntry(mBitmap);
752 mUvMapper = mEntry->uvMapper;
754 return mEntry;
803 return renderer.drawBitmaps(mBitmap, mEntry, ops.size(), &vertices[0],
817 (mergeid_t) mEntry->getMergeId() : (mergeid_t) mBitmap;
834 AssetAtlas::Entry* mEntry;
    [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 

Completed in 579 milliseconds