Searched refs:tags (Results 26 - 47 of 47) sorted by relevance

12

/frameworks/base/core/java/android/os/
H A DLocaleList.java143 * Retrieves a String representation of the language tags in this list.
259 * Generates a new LocaleList with the given language tags.
261 * @param list The language tags to be included as a single {@link String} separated by commas.
262 * @return A new instance with the {@link Locale} items identified by the given tags.
269 final String[] tags = list.split(",");
270 final Locale[] localeArray = new Locale[tags.length];
272 localeArray[i] = Locale.forLanguageTag(tags[i]);
433 * Returns true if the collection of locale tags only contains empty locales and pseudolocales.
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java297 video.tags = body;
507 video.tags = takeText();
537 public String tags; field in class:SafeSaxTest.YouTubeVideo
/frameworks/support/compat/java/android/support/v4/os/
H A DLocaleListHelper.java152 * Retrieves a String representation of the language tags in this list.
264 * Generates a new LocaleListHelper with the given language tags.
266 * @param list The language tags to be included as a single {@link String} separated by commas.
267 * @return A new instance with the {@link Locale} items identified by the given tags.
277 final String[] tags = list.split(",");
278 final Locale[] localeArray = new Locale[tags.length];
280 localeArray[i] = LocaleHelper.forLanguageTag(tags[i]);
450 * Returns true if the collection of locale tags only contains empty locales and pseudolocales.
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java254 // IFD GPS tags
317 // IFD Interoperability tags
718 * Reads the exif tags from a byte array, clearing this ExifInterface
719 * object's existing exif tags.
729 * Reads the exif tags from an InputStream, clearing this ExifInterface
730 * object's existing exif tags.
749 * Reads the exif tags from a file, clearing this ExifInterface object's
750 * existing exif tags.
772 * Sets the exif tags, clearing this ExifInterface object's existing exif
773 * tags
777 setExif(Collection<ExifTag> tags) argument
1010 rewriteExif(String filename, Collection<ExifTag> tags) argument
1068 rewriteExif(ByteBuffer buf, Collection<ExifTag> tags) argument
1093 forceRewriteExif(String filename, Collection<ExifTag> tags) argument
1593 setTags(Collection<ExifTag> tags) argument
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.cpp211 /*out*/const uint32_t** tags) const {
233 *tags = mTags.array();
321 // System tags that should be hidden from users
/frameworks/data-binding/extensions/library/
H A Dbuild.gradle87 options.tags = ['hide']
/frameworks/base/core/jni/
H A Dandroid_media_AudioRecord.cpp272 const char* tags = env->GetStringUTFChars(jtags, NULL); local
273 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
274 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
275 env->ReleaseStringUTFChars(jtags, tags);
278 ALOGV("AudioRecord_setup for source=%d tags=%s flags=%08x", paa->source, paa->tags, paa->flags);
H A Dandroid_media_AudioTrack.cpp306 const char* tags = env->GetStringUTFChars(jtags, NULL); local
307 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
308 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
309 env->ReleaseStringUTFChars(jtags, tags);
315 ALOGV("AudioTrack_setup for usage=%d content=%d flags=0x%#x tags=%s",
316 paa->usage, paa->content_type, paa->flags, paa->tags);
H A Dandroid_os_Debug.cpp601 // Ignored tags that don't actually consume memory (ie remappings)
706 static const char* const tags[] = { local
743 while (tags[i]) {
744 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp240 ALOGE("%s: Transaction error getting vendor tags from provider '%s': %s",
255 "vendor tags", __FUNCTION__, strerror(res), res);
1266 tagCount += vts[s].tags.size();
1276 "%s: too many (%u) vendor tags defined.", __FUNCTION__, tagCount);
1296 for (size_t j = 0; j < section.tags.size(); j++) {
1297 uint32_t tag = section.tags[j].tagId;
1303 tagArray.editItemAt(idx++) = section.tags[j].tagId;
1305 const char *tagName = section.tags[j].tagName.c_str();
1313 int tagType = (int) section.tags[j].tagType;
/frameworks/av/services/oboeservice/
H A DAAudioServiceStreamMMAP.cpp78 .tags = ""
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp198 // marshalling tag indicating flattened utf16 tags
214 // | kAudioAttributesMarshallTagFlattenTags | // ignore tags if not found
216 // | flattened tags in UTF16 |
231 // the tags are UTF16, convert to UTF8
232 String16 tags = parcel.readString16(); local
233 ssize_t realTagSize = utf16_to_utf8_length(tags.string(), tags.size());
235 strcpy(attributes->tags, "");
238 // copying array size -1, array for tags was calloc'd, no need to NULL-terminate it
241 utf16_to_utf8(tags
[all...]
/frameworks/base/packages/SystemUI/tests/
H A DAndroid.mk55 SystemUI-tags \
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java793 // Space is "fairly" shared between tags -- they are all squeezed
807 TreeSet<FileList> tags = new TreeSet<FileList>(mFilesByTag.values());
808 for (FileList tag : tags) {
818 for (FileList tag : tags) {
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/av/media/libstagefright/
H A DUtils.cpp1372 int tags = sscanf(tsSchema.c_str(), "android.generic.%u%c%u%c", local
1374 if ((tags == 1 || (tags == 3 && dummy == '+'))
H A DACodec.cpp2494 int tags; local
2501 } else if ((tags = sscanf(tsSchema.c_str(), "android.generic.%u%c%u%c",
2503 && (tags == 1 || (tags == 3 && dummy == '+'))
4476 int tags; local
4483 } else if ((tags = sscanf(tsSchema.c_str(), "android.generic.%u%c%u%c",
4485 && (tags == 1 || (tags == 3 && dummy == '+'))
7296 // Removes trailing tags matching |tag| from |key| (e.g. a settings name). |minLength| specifies
7297 // the minimum number of characters to keep in |key| (even if it has trailing tags)
[all...]
/frameworks/av/media/libaudioclient/
H A DAudioRecord.cpp193 ALOGV("Building AudioRecord with attributes: source=%d flags=0x%x tags=[%s]",
194 mAttributes.source, mAttributes.flags, mAttributes.tags);
H A DAudioTrack.cpp192 strcpy(mAttributes.tags, "");
377 ALOGV("Building AudioTrack with attributes: usage=%d content=%d flags=0x%x tags=[%s]",
378 mAttributes.usage, mAttributes.content_type, mAttributes.flags, mAttributes.tags);
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp49 ALOGV("SoundPool constructor: maxChannels=%d, attr.usage=%d, attr.flags=0x%x, attr.tags=%s",
50 maxChannels, pAttributes->usage, pAttributes->flags, pAttributes->tags);
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp777 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
779 attr->tags);
814 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
1516 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
1523 address = String8(attr->tags + strlen("addr="));
2320 // - 1 look for a mix matching the address passed in attribtutes tags if any
2329 // - 1 look for a mix matching the address passed in attribtutes tags if any
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java14356 if (info.tags != null) {
14357 for (String tag : info.tags) {
[all...]

Completed in 726 milliseconds

12