Searched defs:sectionName (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/util/
H A DTrace.java37 abstract void beginSection(String sectionName); argument
60 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
63 * @param sectionName The name of the code section to appear in the trace. This may be at
66 public static void beginSection(String sectionName) { argument
68 LogUtil.v(TAG, "beginSection() " + sectionName);
70 sTrace.beginSection(sectionName);
93 void beginSection(String sectionName) { argument
94 android.os.Trace.beginSection(sectionName);
108 void beginSection(String sectionName) { argument
/packages/apps/Launcher3/src/com/android/launcher3/
H A DBaseRecyclerViewFastScrollPopup.java67 public void setSectionName(String sectionName) { argument
68 if (!sectionName.equals(mSectionName)) {
69 mSectionName = sectionName;
70 mTextPaint.getTextBounds(sectionName, 0, sectionName.length(), mTextBounds);
72 mTextBounds.right = (int) (mTextBounds.left + mTextPaint.measureText(sectionName));
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
H A DAllAppsGridAdapter.java152 String lastSectionName = item.sectionName;
155 String sectionName = nextItem.sectionName;
159 if (j > item.sectionAppIndex && sectionName.equals(lastSectionName)) {
165 PointF sectionBounds = getAndCacheSectionBounds(sectionName);
182 boolean fixedToRow = !sectionName.equals(nextRowItem.sectionName);
202 c.drawText(sectionName, x, y, mSectionTextPaint);
206 lastSectionName = sectionName;
222 private PointF getAndCacheSectionBounds(String sectionName) { argument
[all...]
H A DAlphabeticalAppsList.java64 public String sectionName; field in class:AlphabeticalAppsList.FastScrollSectionInfo
70 public FastScrollSectionInfo(String sectionName) { argument
71 this.sectionName = sectionName;
94 public String sectionName = null; field in class:AlphabeticalAppsList.AdapterItem
113 public static AdapterItem asPredictedApp(int pos, SectionInfo section, String sectionName, argument
115 AdapterItem item = asApp(pos, section, sectionName, sectionAppIndex, appInfo, appIndex);
120 public static AdapterItem asApp(int pos, SectionInfo section, String sectionName, argument
126 item.sectionName = sectionName;
[all...]

Completed in 65 milliseconds