Searched refs:tag (Results 176 - 200 of 222) sorted by relevance

123456789

/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java451 private boolean getBooleanArgument(Bundle arguments, String tag) { argument
452 String tagString = arguments.getString(tag);
/frameworks/av/include/media/
H A DMediaProfiles.h351 int tag; member in struct:android::MediaProfiles::NameToTagMap
421 // Customized element tag handler for parsing the xml configuration file.
/frameworks/av/media/libmedia/
H A DMediaProfiles.cpp153 int tag = -1; local
156 tag = map[i].tag;
160 return tag;
/frameworks/base/core/java/android/os/
H A DStrictMode.java1800 * <p>The name is an arbitary label (or tag) that will be applied
2080 for (String tag : tags) {
2081 result = 37 * result + tag.hashCode();
2157 for (String tag : tags) {
2158 pw.println(prefix + "tag[" + (index++) + "]: " + tag);
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
H A DBandwidthTest.java316 if (statsEntry.tag != 0) {
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java368 * @param tag The log tag of the application using the utility.
370 public BluetoothTestUtils(Context context, String tag) { argument
371 this(context, tag, null);
378 * @param tag The log tag of the application using the utility.
382 public BluetoothTestUtils(Context context, String tag, String outputFile) { argument
384 mTag = tag;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java323 notification.pkg, notification.tag, notification.id);
/frameworks/base/core/java/android/app/
H A DActivityManager.java1281 public String tag; field in class:ActivityManager.ProcessErrorStateInfo
1315 dest.writeString(tag);
1326 tag = source.readString();
H A DActivity.java572 * tag. By doing so, other applications will need to declare a corresponding
4685 String tag = a.getString(com.android.internal.R.styleable.Fragment_tag);
4689 if (containerId == View.NO_ID && id == View.NO_ID && tag == null) {
4691 + ": Must specify unique android:id, android:tag, or have a parent with an id for " + fname);
4698 if (fragment == null && tag != null) {
4699 fragment = mFragments.findFragmentByTag(tag);
4713 fragment.mTag = tag;
4724 + ", tag " + tag + ", or parent id 0x" + Integer.toHexString(containerId)
4747 fragment.mView.setTag(tag);
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java1056 Object tag = convertView.getTag(com.android.internal.R.id.rowTypeId);
1057 if (tag != null) {
1058 typeId = (Integer) tag;
H A DListView.java3543 protected View findViewWithTagTraversal(Object tag) { argument
3545 v = super.findViewWithTagTraversal(tag);
3547 v = findViewWithTagInHeadersOrFooters(mHeaderViewInfos, tag);
3552 v = findViewWithTagInHeadersOrFooters(mFooterViewInfos, tag);
3562 * Look in the passed in list of headers or footers for the view with the tag.
3564 View findViewWithTagInHeadersOrFooters(ArrayList<FixedViewInfo> where, Object tag) { argument
3573 v = v.findViewWithTag(tag);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkPolicyManagerServiceTest.java847 final FutureCapture<String> tag = new FutureCapture<String>();
848 mNotifManager.enqueueNotificationWithTag(isA(String.class), capture(tag.capture), anyInt(),
850 return tag;
H A DNetworkStatsServiceTest.java973 int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, int operations) {
976 final int i = stats.findIndex(iface, uid, SET_DEFAULT, tag);
982 final int i = stats.findIndex(iface, uid, SET_FOREGROUND, tag);
972 assertValues(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, int operations) argument
/frameworks/base/core/java/android/view/
H A DView.java676 * The logging tag used by this class with android.util.Log.
1568 * The view's tag.
3253 * @param attrs The attributes of the XML tag that is inflating the view.
3271 * @param attrs The attributes of the XML tag that is inflating the view.
11628 * Return true if the application tag in the AndroidManifest has set "supportRtl" to true
15065 * @param tag the tag of the view to be found
15066 * @return the view of specified tag, null if cannot be found
15068 protected View findViewWithTagTraversal(Object tag) { argument
15069 if (tag !
15142 findViewWithTag(Object tag) argument
15277 setTag(final Object tag) argument
15317 setTag(int key, final Object tag) argument
15334 setTagInternal(int key, Object tag) argument
15343 setKeyedTag(int key, Object tag) argument
[all...]
H A DViewDebug.java1340 * @param tag for log
1343 public static void dumpCapturedView(String tag, Object view) { argument
1348 Log.d(tag, sb.toString());
/frameworks/av/media/libeffects/visualizer/
H A DEffectVisualizer.cpp579 tag : AUDIO_EFFECT_LIBRARY_TAG,
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java736 /*package*/ native static final void dumpTheme(int theme, int priority, String tag, String prefix); argument
H A DResources.java1336 * @param tag The log tag to use.
1339 public void dump(int priority, String tag, String prefix) { argument
1340 AssetManager.dumpTheme(mTheme, priority, tag, prefix);
1722 * an XML file. You call this when you are at the parent tag of the
1724 * This will call {@link #parseBundleExtra} for each extra tag encountered.
1753 * Parse a name/value pair out of an XML tag holding that data. The
1767 * @param tagName The name of the tag these attributes come from; this is
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java983 public Tab setTag(Object tag) { argument
984 mTag = tag;
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java1111 /** Returns the URL for a particular tag. */
1112 public static String getTagsURL(String tag) { argument
1113 return "http://flickr.com/photos/tags/" + tag;
1126 /** Returns the URL for a user tag photo set. */
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java201 * Log GL calls to the system log at "verbose" level with tag "GLSurfaceView".
1196 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
1197 Log.w(tag, formatEglError(function, error));
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java1351 * @param tag If non-null, this will be used in a log message if the
1355 String tag) {
1359 if (tag != null) {
1361 Log.v(TAG, tag + ": unknown account " + au);
1368 if (tag != null) {
1370 Log.v(TAG, tag + ": unknown authority " + authorityName);
1354 getAuthorityLocked(Account accountName, int userId, String authorityName, String tag) argument
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp513 uint8_t tag; local
515 if (mDataSource->readAt(data_offset, &tag, 1) < 1) {
520 if (0x0B/*IPMP_DESCRIPTOR_ID_TAG*/ == tag) {
1671 // were are interested in the specific tag, make sure to clear out
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp770 tag : AUDIO_EFFECT_LIBRARY_TAG,
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java1072 String tag = parser.getName();
1073 if ("wp".equals(tag)) {

Completed in 482 milliseconds

123456789