Searched defs:tag (Results 176 - 200 of 313) sorted by relevance

1234567891011>>

/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java126 * fragment to it with the given tag, and committing it. This does
131 * @param tag The tag for this fragment, as per
134 public void show(FragmentManager manager, String tag) { argument
138 ft.add(this, tag);
146 * @param tag The tag for this fragment, as per
151 public int show(FragmentTransaction transaction, String tag) { argument
154 transaction.add(this, tag);
H A DFragmentTabHost.java62 private final String tag; field in class:FragmentTabHost.TabInfo
68 tag = _tag;
82 public View createTabContent(String tag) { argument
228 String tag = tabSpec.getTag();
230 TabInfo info = new TabInfo(tag, clss, args);
236 info.fragment = mFragmentManager.findFragmentByTag(tag);
259 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag);
261 if (tab.tag.equals(currentTab)) {
329 if (tab.tag.equals(tabId)) {
334 throw new IllegalStateException("No tab known for tag "
[all...]
H A DFragmentTransaction.java42 public abstract FragmentTransaction add(Fragment fragment, String tag); argument
45 * Calls {@link #add(int, Fragment, String)} with a null tag.
58 * @param tag Optional tag name for the fragment, to later retrieve the
65 @Nullable String tag);
68 * Calls {@link #replace(int, Fragment, String)} with a null tag.
82 * @param tag Optional tag name for the fragment, to later retrieve the
89 @Nullable String tag);
64 add(@dRes int containerViewId, Fragment fragment, @Nullable String tag) argument
88 replace(@dRes int containerViewId, Fragment fragment, @Nullable String tag) argument
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DSupportActionModeWrapper.java57 public void setTag(Object tag) { argument
58 mWrappedObject.setTag(tag);
/frameworks/av/camera/
H A DCameraMetadata.cpp171 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { argument
172 int tagType = get_camera_metadata_tag_type(tag);
174 ALOGE("Update metadata entry: Unknown tag %d", tag);
178 ALOGE("Mismatched tag type when updating entry %s (%d) of type %s; "
180 get_camera_metadata_tag_name(tag), tag,
188 status_t CameraMetadata::update(uint32_t tag, argument
195 if ( (res = checkType(tag, TYPE_INT32)) != OK) {
198 return updateImpl(tag, (cons
201 update(uint32_t tag, const uint8_t *data, size_t data_count) argument
214 update(uint32_t tag, const float *data, size_t data_count) argument
227 update(uint32_t tag, const int64_t *data, size_t data_count) argument
240 update(uint32_t tag, const double *data, size_t data_count) argument
253 update(uint32_t tag, const camera_metadata_rational_t *data, size_t data_count) argument
266 update(uint32_t tag, const String8 &string) argument
280 updateImpl(uint32_t tag, const void *data, size_t data_count) argument
342 find(uint32_t tag) argument
369 erase(uint32_t tag) argument
[all...]
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp37 ALOGW("%s: Failed to add entry for tag 0x%x to IFD %u, too many entries in IFD!",
43 ALOGW("%s: Failed to add entry for tag 0x%x to ifd %u.", __FUNCTION__, entry->getTag(),
50 sp<TiffEntry> TiffIfd::getEntry(uint16_t tag) const {
51 ssize_t index = mEntries.indexOfTag(tag);
53 ALOGW("%s: No entry for tag 0x%x in ifd %u.", __FUNCTION__, tag, mIfdId);
59 void TiffIfd::removeEntry(uint16_t tag) { argument
60 ssize_t index = mEntries.indexOfTag(tag);
117 // Write tag entries
132 // Write values for each tag entr
[all...]
H A DTiffWriter.cpp153 const TagDefinition_t* TiffWriter::lookupDefinition(uint16_t tag) const {
156 ssize_t index = mTagMaps[i].indexOfKey(tag);
164 ALOGE("%s: No definition exists for tag with id %x.", __FUNCTION__, tag);
169 sp<TiffEntry> TiffWriter::getEntry(uint16_t tag, uint32_t ifd) const { argument
175 return mNamedIfds[index]->getEntry(tag);
178 void TiffWriter::removeEntry(uint16_t tag, uint32_t ifd) { argument
181 mNamedIfds[index]->removeEntry(tag);
186 uint16_t tag = entry->getTag(); local
188 const TagDefinition_t* definition = lookupDefinition(tag);
[all...]
/frameworks/base/core/java/android/app/usage/
H A DNetworkStats.java228 private static int convertTag(int tag) { argument
229 switch (tag) {
232 return tag;
262 * @return Bucket tag.
430 void startHistoryEnumeration(int uid, int tag) { argument
434 android.net.NetworkStats.SET_ALL, tag,
436 setSingleUidTag(uid, tag);
492 bucketOut.mTag = Bucket.convertTag(mRecycledSummaryEntry.tag);
582 private void setSingleUidTag(int uid, int tag) { argument
584 mTag = tag;
[all...]
/frameworks/base/core/java/android/net/
H A DTrafficStats.java82 * Default tag value for {@link DownloadManager} traffic.
89 * Default tag value for {@link MediaPlayer} traffic.
96 * Default tag value for {@link BackupManager} backup traffic; that is,
104 * Default tag value for {@link BackupManager} restore traffic; that is,
133 * Set active tag to use when accounting {@link Socket} traffic originating
134 * from the current thread. Only one active tag per thread is supported.
145 public static void setThreadStatsTag(int tag) { argument
146 NetworkManagementSocketTagger.setThreadSocketStatsTag(tag);
150 * Set active tag to use when accounting {@link Socket} traffic originating
151 * from the current thread. The tag use
321 incrementOperationCount(int tag, int operationCount) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java224 * @param name Name attribute to include with this list's tag, or null for
243 * @param name Name attribute to include with this list's tag, or null for
276 * with readThisMapXml(). This method presumes that the start tag and
277 * name attribute have already been written and does not write an end tag.
309 * @param name Name attribute to include with this list's tag, or null for
367 * @param name Name attribute to include with this array's tag, or null for
411 * @param name Name attribute to include with this array's tag, or null for
451 * @param name Name attribute to include with this array's tag, or null for
490 * @param name Name attribute to include with this array's tag, or null for
529 * @param name Name attribute to include with this array's tag, o
1692 readThisUnknownObjectXml(XmlPullParser in, String tag) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java241 private void assertIntTag(ExifInterface exifInterface, String tag, int expectedValue) { argument
242 int intValue = exifInterface.getAttributeInt(tag, 0);
246 private void assertDoubleTag(ExifInterface exifInterface, String tag, float expectedValue) { argument
247 double doubleValue = exifInterface.getAttributeDouble(tag, 0.0);
251 private void assertStringTag(ExifInterface exifInterface, String tag, String expectedValue) { argument
252 String stringValue = exifInterface.getAttribute(tag);
/frameworks/base/obex/javax/obex/
H A DObexHelper.java876 * Retrieves the value from the byte array for the tag value specified. The
878 * @param tag the tag to retrieve from the byte array
879 * @param triplet the byte sequence containing the tag length value form
880 * @return the value of the specified tag
882 public static byte[] getTagValue(byte tag, byte[] triplet) { argument
884 int index = findTag(tag, triplet);
900 * Finds the index that starts the tag value pair in the byte array provide.
901 * @param tag the tag t
905 findTag(byte tag, byte[] value) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java244 public Object tag; field in class:QSDetailItems.Item
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSignalController.java59 public SignalController(String tag, Context context, int type, CallbackHandler callbackHandler, argument
61 mTag = TAG + "." + tag;
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java297 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
298 Log.w(tag, formatEglError(function, error));
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java64 * {@link NetworkIdentitySet}, UID, set, and tag. Knows how to persist itself.
163 NetworkTemplate template, int uid, int set, int tag, int fields,
165 return getHistory(template, uid, set, tag, fields, Long.MIN_VALUE, Long.MAX_VALUE,
174 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end,
176 return getHistory(template, uid, set, tag, fields, start, end, accessLevel,
185 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end,
200 if (key.uid == uid && NetworkStats.setMatches(set, key.set) && key.tag == tag
244 entry.tag = key.tag;
162 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, @NetworkStatsAccess.Level int accessLevel) argument
173 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end, @NetworkStatsAccess.Level int accessLevel) argument
184 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end, @NetworkStatsAccess.Level int accessLevel, int callerUid) argument
264 recordData(NetworkIdentitySet ident, int uid, int set, int tag, long start, long end, NetworkStats.Entry entry) argument
298 findOrCreateHistory( NetworkIdentitySet ident, int uid, int set, int tag) argument
616 public final int tag; field in class:NetworkStatsCollection.Key
620 Key(NetworkIdentitySet ident, int uid, int set, int tag) argument
[all...]
/frameworks/base/services/core/java/com/android/server/policy/
H A DBarController.java66 public BarController(String tag, int transientFlag, int unhideFlag, int translucentFlag, argument
68 mTag = "BarController." + tag;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp48 // An unknown tag encounterred.
342 // There's nothing to do for this tag. It doesn't have an actual value.
376 // value in this tag are definitely incompatible.)
445 // 1. For tag N where N >= 128, tag N has the same properties as
446 // tag N % 128.
971 TagType tag = static_cast<TagType>(i); local
972 const ELFAttributeValue& value = m_Attrs[tag];
975 result += leb128::size(static_cast<uint32_t>(tag));
985 TagType tag local
1029 TagType tag = static_cast<TagType>(i); local
1039 TagType tag = static_cast<TagType>(i); local
1052 TagType tag = unknown_attr_it->first; local
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java94 private FromHeader createFromHeader(SipProfile profile, String tag) argument
96 return mHeaderFactory.createFromHeader(profile.getSipAddress(), tag);
103 private ToHeader createToHeader(SipProfile profile, String tag) argument
105 return mHeaderFactory.createToHeader(profile.getSipAddress(), tag);
196 String tag) throws SipException {
199 ? createRequest(Request.OPTIONS, caller, tag)
200 : createRequest(Request.OPTIONS, caller, callee, tag);
211 public ClientTransaction sendRegister(SipProfile userProfile, String tag, argument
214 Request request = createRequest(Request.REGISTER, userProfile, tag);
234 String tag) throw
195 sendOptions(SipProfile caller, SipProfile callee, String tag) argument
233 createRequest(String requestType, SipProfile userProfile, String tag) argument
269 createRequest(String requestType, SipProfile caller, SipProfile callee, String tag) argument
287 sendInvite(SipProfile caller, SipProfile callee, String sessionDescription, String tag, ReferredByHeader referredBy, String replaces) argument
349 sendRinging(RequestEvent event, String tag) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DMediaSessionCompatApi21.java38 public static Object createSession(Context context, String tag) { argument
39 return new MediaSession(context, tag);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp1039 AString tag = "csd-"; local
1040 tag.append(i);
1042 if (!format->findBuffer(tag.c_str(), &buffer)) {
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSerializer.cpp84 xmlStrcmp(root->name, (const xmlChar *)Trait::tag)) {
93 if (!xmlStrcmp(child->name, (const xmlChar *)Trait::tag)) {
106 if (!xmlStrcmp(root->name, (const xmlChar *)Trait::tag)) {
114 const char *const AudioGainTraits::tag = "gain"; member in class:android::AudioGainTraits
188 const char *const AudioProfileTraits::tag = "profile"; member in class:android::AudioProfileTraits
214 const char *const MixPortTraits::tag = "mixPort"; member in class:android::MixPortTraits
228 ALOGV("%s: %s %s=%s", __FUNCTION__, tag, Attributes::name, name.c_str());
269 const char *const DevicePortTraits::tag = "devicePort"; member in class:android::DevicePortTraits
286 ALOGV("%s: %s %s=%s", __FUNCTION__, tag, Attributes::tagName, name.c_str());
292 ALOGV("%s: %s %s=%s", __FUNCTION__, tag, Attribute
336 const char *const RouteTraits::tag = "route"; member in class:android::RouteTraits
407 const char *const ModuleTraits::tag = "module"; member in class:android::ModuleTraits
487 const char *const GlobalConfigTraits::tag = "globalConfiguration"; member in class:android::GlobalConfigTraits
512 const char *const VolumeTraits::tag = "volume"; member in class:android::VolumeTraits
[all...]
/frameworks/base/core/java/android/app/
H A DAlarmManager.java280 * or through the &lt;receiver&gt; tag in an AndroidManifest.xml file.
353 * @param tag string describing the alarm, used for logging and battery-use
363 public void set(int type, long triggerAtMillis, String tag, OnAlarmListener listener, argument
365 setImpl(type, triggerAtMillis, legacyExactLength(), 0, 0, null, listener, tag,
492 String tag, OnAlarmListener listener, Handler targetHandler) {
493 setImpl(type, windowStartMillis, windowLengthMillis, 0, 0, null, listener, tag,
545 public void setExact(int type, long triggerAtMillis, String tag, OnAlarmListener listener, argument
547 setImpl(type, triggerAtMillis, WINDOW_EXACT, 0, 0, null, listener, tag,
556 public void setIdleUntil(int type, long triggerAtMillis, String tag, OnAlarmListener listener, argument
559 listener, tag, targetHandle
491 setWindow(int type, long windowStartMillis, long windowLengthMillis, String tag, OnAlarmListener listener, Handler targetHandler) argument
609 set(int type, long triggerAtMillis, long windowMillis, long intervalMillis, String tag, OnAlarmListener listener, Handler targetHandler, WorkSource workSource) argument
[all...]
/frameworks/base/core/java/android/content/
H A DUndoManager.java89 public UndoOwner getOwner(String tag, Object data) { argument
90 if (tag == null) {
91 throw new NullPointerException("tag can't be null");
96 UndoOwner owner = mOwners.get(tag);
108 owner = new UndoOwner(tag, this);
110 mOwners.put(tag, owner);
198 String tag = in.readString();
200 owner = new UndoOwner(tag, this);
203 mOwners.put(tag, owner);
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java187 * Get the tag corresponding to this key. This enables insertion into the
193 * @return The tag numeric value corresponding to the string
364 * Set the global client-side vendor tag descriptor to allow use of vendor
378 * Set the global client-side vendor tag descriptor to allow use of vendor
466 int tag = key.getTag();
467 byte[] values = readValues(tag);
948 int tag = key.getTag();
952 writeValues(tag, /*src*/null);
965 writeValues(tag, values);
1089 private native synchronized byte[] nativeReadValues(int tag); argument
1090 nativeWriteValues(int tag, byte[] src) argument
1096 nativeGetTypeFromTag(int tag) argument
1162 getNativeType(int tag) argument
1177 writeValues(int tag, byte[] src) argument
1192 readValues(int tag) argument
[all...]

Completed in 483 milliseconds

1234567891011>>