Searched refs:tag (Results 201 - 225 of 451) sorted by relevance

1234567891011>>

/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java141 * @param tag a string to use for debugging
143 public AsyncPlayer(String tag) { argument
144 if (tag != null) {
145 mTag = tag;
H A DExifInterface.java71 // The Exif tag names
356 // Constants used for the Orientation Exif tag.
379 // The following values are for parsing EXIF data area. There are tag groups in EXIF data area.
494 // Exception for GPSAltitudeRef tag
565 // Exception for GPSAltitudeRef tag
795 // A class for indicating EXIF tag.
948 // Primary image IFD Interoperability tag (See JEITA CP-3451 Table 17. page 56).
991 // Indices of Exif Ifd tag groups
997 // List of Exif tag groups
1008 // List of indices of the indicated tag group
1182 getExifAttribute(String tag) argument
1200 getAttribute(String tag) argument
1238 getAttributeInt(String tag, int defaultValue) argument
1259 getAttributeDouble(String tag, double defaultValue) argument
1278 setAttribute(String tag, String value) argument
1420 updateAttribute(String tag, ExifAttribute value) argument
1436 removeAttribute(String tag) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyEventLog.java167 private void writeEvent(int tag, Bundle data) { argument
168 writeEvent(System.currentTimeMillis(), tag, -1, -1, data);
171 private void writeEvent(int tag, int param1, int param2) { argument
172 writeEvent(System.currentTimeMillis(), tag, param1, param2, null);
175 private void writeEvent(int tag, int param1, int param2, Bundle data) { argument
176 writeEvent(System.currentTimeMillis(), tag, param1, param2, data);
179 private void writeEvent(long timestamp, int tag, int param1, int param2, Bundle data) { argument
188 logEvent(timestamp, ConnectivityMetricsLogger.COMPONENT_TAG_TELEPHONY, tag, b);
492 private void writeImsCallEvent(int tag, ImsCallSession session) { argument
493 writeEvent(tag, getCallI
496 writeImsCallEvent(int tag, ImsCallSession session, ImsReasonInfo reasonInfo) argument
[all...]
/frameworks/volley/src/main/java/com/android/volley/
H A DVolleyLog.java30 * {@code <android-sdk>/platform-tools/adb shell setprop log.tag.Volley VERBOSE}
38 * Customize the log tag for your application, so that other apps
41 * Enable the log property for your tag before starting your app:
43 * {@code adb shell setprop log.tag.&lt;tag&gt;}
45 public static void setTag(String tag) { argument
46 d("Changing log tag to %s", tag);
47 TAG = tag;
/frameworks/av/media/libmedia/
H A DMediaCodecInfo.cpp272 AString tag = "feature-"; local
273 tag.append(key);
274 mCurrentCaps->mDetails->setInt32(tag.c_str(), value);
278 AString tag = "feature-"; local
279 tag.append(key);
280 mCurrentCaps->mDetails->setString(tag.c_str(), value);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCastTile.java245 item.tag = device;
267 item.tag = device;
277 if (item == null || item.tag == null) return;
279 final CastDevice device = (CastDevice) item.tag;
285 if (item == null || item.tag == null) return;
287 final CastDevice device = (CastDevice) item.tag;
/frameworks/av/media/libstagefright/
H A DStagefrightMediaScanner.cpp108 const char *tag; member in struct:android::KeyMap
133 status = client.addStringTag(kKeyMap[i].tag, value);
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java77 * tag in the "uses-policies" section of its meta-data.
88 * tag in the "uses-policies" section of its meta-data.
98 * tag in the "uses-policies" section of its meta-data.
109 * tag in the "uses-policies" section of its meta-data.
119 * tag in the "uses-policies" section of its meta-data.
128 * tag in the "uses-policies" section of its meta-data.
138 * tag in the "uses-policies" section of its meta-data.
146 * tag in the "uses-policies" section of its meta-data.
154 * tag in the "uses-policies" section of its meta-data.
162 * tag i
169 public final String tag; field in class:DeviceAdminInfo.PolicyInfo
175 PolicyInfo(int ident, String tag, int label, int description) argument
179 PolicyInfo(int ident, String tag, int label, int description, int labelForSecondaryUsers, int descriptionForSecondaryUsers) argument
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DBasicTagTechnology.java28 * A base class for tag technologies that are built on top of transceive().
38 BasicTagTechnology(Tag tag, int tech) throws RemoteException { argument
39 mTag = tag;
77 // Store this in the tag object
119 /* Note that we don't want to physically disconnect the tag,
/frameworks/base/core/java/android/printservice/
H A DIPrintServiceClient.aidl36 boolean setPrintJobTag(in PrintJobId printJobId, String tag);
/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/test-runner/src/android/test/
H A DTestPrinter.java44 public TestPrinter(String tag, boolean onlyFailures) { argument
45 mTag = tag;
/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLog.cpp54 EventLog::TagBuffer::TagBuffer(int32_t tag) argument
55 : mPos(0), mTag(tag), mOverflow(false) {
/frameworks/base/services/core/java/com/android/server/power/
H A DNotifier.java164 public void onWakeLockAcquired(int flags, String tag, String packageName, argument
167 Slog.d(TAG, "onWakeLockAcquired: flags=" + flags + ", tag=\"" + tag
179 mBatteryStats.noteStartWakelockFromSource(workSource, ownerPid, tag,
182 mBatteryStats.noteStartWakelock(ownerUid, ownerPid, tag, historyTag,
197 public void onWakeLockChanging(int flags, String tag, String packageName, argument
207 Slog.d(TAG, "onWakeLockChanging: flags=" + newFlags + ", tag=\"" + newTag
216 mBatteryStats.noteChangeWakelockFromSource(workSource, ownerPid, tag, historyTag,
223 onWakeLockReleased(flags, tag, packageName, ownerUid, ownerPid, workSource, historyTag);
232 public void onWakeLockReleased(int flags, String tag, Strin argument
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
H A DXmlEditor.java135 String tag = it.getTag();
139 String newLine = line.substring(0, endTagPosition.charIndex) + " " + tag +
194 boolean isExpression = attrName.equals("android:tag");
222 // tag with no attributes, but with content
282 // android:tag is included, regardless, so we must only count as an expression
283 // if android:tag has a binding expression.
295 String tag = "";
297 tag = "android:tag=\"" + newTag + "_" + bindingIndex + "\"";
300 tag
418 TagAndContext(String tag, ElementContext elementContext) argument
[all...]
/frameworks/base/tools/aapt/
H A DCommand.cpp351 String8 tag(ctag16);
352 if (tag == "screen") {
431 String8 tag(ctag16);
433 if (depth == 0 && tag == serviceTagName) {
444 String8 tag(ctag16);
447 if (tag == serviceTagName) {
451 if (tag == "aid-group") {
511 * Represents a <feature-group> tag in the AndroidManifest.xml
856 String8 tag(ctag16);
857 //printf("Depth %d tag
[all...]
/frameworks/av/media/libstagefright/include/
H A DESDS.h61 uint8_t *tag, size_t *data_offset, size_t *data_size) const;
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DConfigParsingUtils.h48 static void loadDevicesFromTag(const char *tag, DeviceVector &devices,
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBarService.aidl57 void onNotificationError(String pkg, String tag, int id,
60 void onNotificationClear(String pkg, String tag, int id, int userId);
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java159 int tag, long rxBytes, long txBytes) {
160 final int i = stats.findIndex(iface, uid, set, tag, ROAMING_NO);
167 int tag, long rxBytes, long rxPackets, long txBytes, long txPackets) {
168 final int i = stats.findIndex(iface, uid, set, tag, ROAMING_NO);
158 assertStatsEntry(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long txBytes) argument
166 assertStatsEntry(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets) argument
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMOTree.java194 private static XMLNode getNextNode(XMLNode node, String tag) throws IOException { argument
196 throw new IOException("No node for " + tag);
200 if (!child.getTag().equals(tag))
201 throw new IOException("Expected " + node.getTag() + " to have child '" + tag +
H A DXMLNode.java36 public XMLNode(XMLNode parent, String tag, Attributes attributes) throws SAXException { argument
37 mTag = tag;
53 public XMLNode(XMLNode parent, String tag, Map<String, String> attributes) { argument
54 mTag = tag;
123 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
131 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DGridLayoutTest.java52 public String tag() { method in class:GridLayoutTest
/frameworks/base/tools/layoutlib/rename_font/
H A Dbuild_font.py134 def get_font_info(tag):
140 for namerecord in tag.iter('namerecord'):
166 def update_tag(tag, fonts):
170 for namerecord in tag.iter('namerecord'):
/frameworks/base/wifi/java/android/net/wifi/
H A DIWifiManager.aidl112 boolean acquireWifiLock(IBinder lock, int lockType, String tag, in WorkSource ws);
122 void acquireMulticastLock(IBinder binder, String tag);

Completed in 656 milliseconds

1234567891011>>