Searched defs:tag (Results 76 - 100 of 242) sorted by relevance

12345678910

/frameworks/base/core/java/android/text/
H A DSpanned.java174 public int getSpanStart(Object tag); argument
180 public int getSpanEnd(Object tag); argument
187 public int getSpanFlags(Object tag); argument
/frameworks/base/core/java/android/text/method/
H A DReplacementTransformationMethod.java187 public int getSpanStart(Object tag) { argument
188 return mSpanned.getSpanStart(tag);
191 public int getSpanEnd(Object tag) { argument
192 return mSpanned.getSpanEnd(tag);
195 public int getSpanFlags(Object tag) { argument
196 return mSpanned.getSpanFlags(tag);
/frameworks/base/core/java/android/view/
H A DActionMode.java36 * Set a tag object associated with this ActionMode.
38 * <p>Like the tag available to views, this allows applications to associate arbitrary
41 * @param tag Tag to associate with this ActionMode
45 public void setTag(Object tag) { argument
46 mTag = tag;
50 * Retrieve the tag object associated with this ActionMode.
52 * <p>Like the tag available to views, this allows applications to associate arbitrary
/frameworks/base/core/java/com/android/server/
H A DNetworkManagementSocketTagger.java53 public static void setThreadSocketStatsTag(int tag) { argument
54 threadSocketTags.get().statsTag = tag;
66 public void tag(FileDescriptor fd) throws SocketException { method in class:NetworkManagementSocketTagger
76 private void tagSocketFd(FileDescriptor fd, int tag, int uid) { argument
77 if (tag == -1 && uid == -1) return;
80 final int errno = native_tagSocketFd(fd, tag, uid);
83 + tag + ", " +
134 * Convert {@code /proc/} tag format to {@link Integer}. Assumes incoming
146 private static native int native_tagSocketFd(FileDescriptor fd, int tag, int uid); argument
149 private static native int native_deleteTagData(int tag, in argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DMinikinSkia.cpp81 bool MinikinFontSkia::GetTable(uint32_t tag, uint8_t *buf, size_t *size) { argument
83 const size_t tableSize = mTypeface->getTableSize(tag);
87 const size_t actualSize = mTypeface->getTableData(tag, 0, *size, buf);
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp18 #define LOG_NAMESPACE "log.tag."
60 static jboolean isLoggable(const char* tag, jint level) { argument
63 key.append(tag);
74 static jboolean android_util_Log_isLoggable(JNIEnv* env, jobject clazz, jstring tag, jint level) argument
76 if (tag == NULL) {
80 const char* chars = env->GetStringUTFChars(tag, NULL);
88 snprintf(buf2, sizeof(buf2), "Log tag \"%s\" exceeds limit of %zu characters\n",
96 env->ReleaseStringUTFChars(tag, chars);
100 bool android_util_Log_isVerboseLogEnabled(const char* tag) { argument
101 return isLoggable(tag, level
111 const char* tag = NULL; local
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsTest.java324 int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
326 assertValues(entry, iface, uid, set, tag);
331 NetworkStats.Entry entry, String iface, int uid, int set, int tag) {
335 assertEquals(tag, entry.tag);
323 assertValues(NetworkStats stats, int index, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
330 assertValues( NetworkStats.Entry entry, String iface, int uid, int set, int tag) argument
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java158 int tag, long rxBytes, long txBytes) {
159 final int i = stats.findIndex(iface, uid, set, tag);
166 int tag, long rxBytes, long rxPackets, long txBytes, long txPackets) {
167 final int i = stats.findIndex(iface, uid, set, tag);
157 assertStatsEntry(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long txBytes) argument
165 assertStatsEntry(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets) argument
/frameworks/base/libs/common_time/
H A Dutils.cpp67 void LogRing::log(int prio, const char* tag, const char* fmt, ...) { argument
70 internalLog(prio, tag, fmt, argp);
82 const char* tag,
109 if (NULL != tag)
110 LOG_PRI_VA(prio, tag, fmt, argp);
81 internalLog(int prio, const char* tag, const char* fmt, va_list argp) argument
/frameworks/base/location/lib/java/com/android/location/provider/
H A DLocationProviderBase.java115 public LocationProviderBase(String tag, ProviderPropertiesUnbundled properties) { argument
116 TAG = tag;
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java140 * @param tag a string to use for debugging
142 public AsyncPlayer(String tag) { argument
143 if (tag != null) {
144 mTag = tag;
/frameworks/base/media/java/android/media/session/
H A DMediaSessionManager.java83 * @param tag A short name for debugging purposes.
88 @NonNull String tag, int userId) throws RemoteException {
89 return mService.createSession(mContext.getPackageName(), cbStub, tag, userId);
87 createSession(@onNull MediaSession.CallbackStub cbStub, @NonNull String tag, int userId) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothController.java49 public Object tag; field in class:BluetoothController.PairedDevice
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiUtils.java132 * @param tag the tag of caller module (for log message)
135 static boolean checkCommandSource(HdmiCecMessage cmd, int expectedAddress, String tag) { argument
138 Slog.w(tag, "Invalid source [Expected:" + expectedAddress + ", Actual:" + src + "]");
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationDelegate.java25 String pkg, String tag, int id, int userId);
27 String pkg, String tag, int id,
24 onNotificationClear(int callingUid, int callingPid, String pkg, String tag, int id, int userId) argument
26 onNotificationError(int callingUid, int callingPid, String pkg, String tag, int id, int uid, int initialPid, String message, int userId) argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DDisplayListLayersActivity.java94 LayerView(Context context, int color, int layerType, String tag) { argument
97 mTag = tag;
103 private void log(String tag) { argument
104 Log.d(LOG_TAG, mTag + ": " + tag);
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationTestList.java76 protected String tag() { method in class:NotificationTestList
/frameworks/minikin/libs/minikin/
H A DMinikinFontFreeType.cpp61 bool MinikinFontFreeType::GetTable(uint32_t tag, uint8_t *buf, size_t *size) { argument
63 FT_Error error = FT_Load_Sfnt_Table(mTypeface, tag, 0, buf, &ftsize);
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DActionMode.java43 * Set a tag object associated with this ActionMode.
45 * <p>Like the tag available to views, this allows applications to associate arbitrary
48 * @param tag Tag to associate with this ActionMode
52 public void setTag(Object tag) { argument
53 mTag = tag;
57 * Retrieve the tag object associated with this ActionMode.
59 * <p>Like the tag available to views, this allows applications to associate arbitrary
/frameworks/volley/src/com/android/volley/
H A DRequestQueue.java196 * Cancels all requests in this queue with the given tag. Tag must be non-null
199 public void cancelAll(final Object tag) { argument
200 if (tag == null) {
201 throw new IllegalArgumentException("Cannot cancelAll with a null tag");
206 return request.getTag() == tag;
H A DVolleyLog.java33 * Customize the log tag for your application, so that other apps
36 * Enable the log property for your tag before starting your app:
38 * {@code adb shell setprop log.tag.&lt;tag&gt;}
40 public static void setTag(String tag) { argument
41 d("Changing log tag to %s", tag);
42 TAG = tag;
/frameworks/av/media/libmedia/
H A DMediaCodecInfo.cpp255 AString tag = "feature-"; local
256 tag.append(key);
257 mCurrentCaps->mDetails->setInt32(tag.c_str(), value);
261 AString tag = "feature-"; local
262 tag.append(key);
263 mCurrentCaps->mDetails->setString(tag.c_str(), value);
/frameworks/base/core/java/android/app/
H A DDialogFragment.java217 * fragment to it with the given tag, and committing it. This does
222 * @param tag The tag for this fragment, as per
225 public void show(FragmentManager manager, String tag) { argument
229 ft.add(this, tag);
237 * @param tag The tag for this fragment, as per
242 public int show(FragmentTransaction transaction, String tag) { argument
245 transaction.add(this, tag);
H A DFragmentTransaction.java19 public abstract FragmentTransaction add(Fragment fragment, String tag); argument
22 * Calls {@link #add(int, Fragment, String)} with a null tag.
35 * @param tag Optional tag name for the fragment, to later retrieve the
41 public abstract FragmentTransaction add(int containerViewId, Fragment fragment, String tag); argument
44 * Calls {@link #replace(int, Fragment, String)} with a null tag.
58 * @param tag Optional tag name for the fragment, to later retrieve the
64 public abstract FragmentTransaction replace(int containerViewId, Fragment fragment, String tag); argument
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java76 * tag in the "uses-policies" section of its meta-data.
87 * tag in the "uses-policies" section of its meta-data.
97 * tag in the "uses-policies" section of its meta-data.
108 * tag in the "uses-policies" section of its meta-data.
118 * tag in the "uses-policies" section of its meta-data.
127 * tag in the "uses-policies" section of its meta-data.
137 * tag in the "uses-policies" section of its meta-data.
145 * tag in the "uses-policies" section of its meta-data.
153 * tag in the "uses-policies" section of its meta-data.
161 * tag i
168 final public String tag; field in class:DeviceAdminInfo.PolicyInfo
[all...]

Completed in 5333 milliseconds

12345678910