HomeSort by relevance Sort by last modified time
    Searched defs:tags (Results 101 - 125 of 235) sorted by null

1 2 3 45 6 7 8 910

  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ExifOutputStream.java 283 ExifTag[] tags = ifd.getAllTags(); local
284 dataOutputStream.writeShort((short) tags.length);
285 for (ExifTag tag : tags) {
302 for (ExifTag tag : tags) {
311 ExifTag[] tags = ifd.getAllTags(); local
312 for (ExifTag tag : tags) {
393 // Get rid of tags for uncompressed if they exist.
420 // Get rid of tags for compressed if they exist.
425 // Get rid of offset and length tags if there is no thumbnail.
  /packages/apps/Mms/src/com/android/mms/exif/
ExifOutputStream.java 285 ExifTag[] tags = ifd.getAllTags(); local
286 dataOutputStream.writeShort((short) tags.length);
287 for (ExifTag tag : tags) {
304 for (ExifTag tag : tags) {
313 ExifTag[] tags = ifd.getAllTags(); local
314 for (ExifTag tag : tags) {
395 // Get rid of tags for uncompressed if they exist.
422 // Get rid of tags for compressed if they exist.
427 // Get rid of offset and length tags if there is no thumbnail.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
firewire-cdev.h 519 * @tags: Tag filter bit mask. Only valid for isochronous reception.
521 * Use FW_CDEV_ISO_CONTEXT_MATCH_ macros to set @tags.
527 __u32 tags; member in struct:fw_cdev_start_iso
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
firewire-cdev.h 519 * @tags: Tag filter bit mask. Only valid for isochronous reception.
521 * Use FW_CDEV_ISO_CONTEXT_MATCH_ macros to set @tags.
527 __u32 tags; member in struct:fw_cdev_start_iso
  /system/core/liblog/
fake_log_device.c 83 /* tags and priorities */
178 * This can be used to reveal or conceal logs with specific tags.
200 const char* tags = getenv("ANDROID_LOG_TAGS"); local
201 TRACE("Found ANDROID_LOG_TAGS='%s'\n", tags);
202 if (tags != NULL) {
205 while (*tags != '\0') {
209 while (isspace(*tags))
210 tags++;
213 while (*tags != '\0' && !isspace(*tags) && *tags != ':' &
    [all...]
  /system/media/camera/docs/
metadata_model.py 198 tags: A sequence of all Tag instances available in the graph.
229 def tags(self): member in class:Metadata
259 tag_ids = [tg.name for tg in self.tags if tg.name == tag]
377 tag_dict = self._dictionary_by_name(self.tags)
577 if self.tags is not None:
578 for i in self.tags:
1051 tags: A sequence of Tag nodes associated with this Entry.
1059 parent and tags edges are invalid until after Metadata#construct_graph
1197 def tags(self): member in class:Entry
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowView.java 38 * visibility, onclick, tags, and tracks the size and shape of the view.
65 private final Map<Integer, Object> tags = new HashMap<Integer, Object>(); field in class:ShadowView
467 return tags.get(key);
472 tags.put(key, value);
  /bionic/libc/kernel/uapi/linux/
firewire-cdev.h 277 __u32 tags; member in struct:fw_cdev_start_iso
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerTest.java 378 this.tags = t;
381 String[] tags; field in class:MediaScannerTest.MediaScanEntry
502 String expected = entry.tags[j];
535 if ("".equals(entry.tags[j])) {
540 Log.i("@@@", "tags: @@" + entry.tags[j] + "@@" + actual[j] + "@@");
542 entry.tags[j], actual[j]);
  /development/ndk/platforms/android-L/include/linux/
firewire-cdev.h 277 __u32 tags; member in struct:fw_cdev_start_iso
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac.cc 244 UInt32 tags[] = { kSecAccountItemAttr, local
253 attrInfo.count = arraysize(tags);
254 attrInfo.tag = tags;
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftimage.h 358 /* tags :: A pointer to an array of `n_points' chars, giving */
387 /* The B/W rasterizer only checks bit~2 in the `tags' array for the */
398 char* tags; /* the points flags */ member in struct:FT_Outline_
477 /* B/W rasterizer; see the `tags' field in @FT_Outline. */
    [all...]
  /external/chromium_org/third_party/freetype/src/pshinter/
pshalgo.c 1224 char* tags = glyph->outline->tags; local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gencnval/
gencnval.c 123 static Tag tags[MAX_TAG_COUNT]; variable
135 /* Were the standard tags declared before the aliases. */
277 uprv_memset(tags, 0, sizeof(tags));
359 fprintf(stderr, "%s:%d: error: alias table needs to start a list of standard tags\n", path, lineNum);
476 /* handle tags if they are present */
504 addAlias(alias, EMPTY_TAG_NUM, cnv, (UBool)(tags[0].aliasList[cnv].aliasCount == 0));
516 fprintf(stderr, "%s:%d: too many tags\n", path, lineNum);
526 const char *currTag = GET_TAG_STR(tags[t].tag);
534 fprintf(stderr, "%s:%d: error: too many tags\n", path, lineNum)
    [all...]
  /external/chromium_org/third_party/qcms/src/
iccread.c 229 struct tag *tags; member in struct:tag_index
239 invalid_source(mem, "max number of tags exceeded");
243 index.tags = malloc(sizeof(struct tag)*index.count);
244 if (index.tags) {
246 index.tags[i].signature = read_u32(mem, 128 + 4 + 4*i*3);
247 index.tags[i].offset = read_u32(mem, 128 + 4 + 4*i*3 + 4);
248 index.tags[i].size = read_u32(mem, 128 + 4 + 4*i*3 + 8);
349 if (index.tags[i].signature == tag_id) {
350 return &index.tags[i];
410 // This method is used when reading mAB tags where nested curveType ar
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_mbuf.h 189 SLIST_ENTRY(m_tag) m_tag_link; /* List of packet tags */
209 SLIST_HEAD(packet_tags, m_tag) tags; /* list of packet tags */ member in struct:pkthdr
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 1198 const std::pair<const ProgramPointTag *, const ProgramPointTag *> &tags = local
    [all...]
  /external/doclava/src/com/google/doclava/
MethodInfo.java 33 public TagInfo[] tags() { method in class:MethodInfo.InlineTags
34 return comment().tags();
72 && me.inlineTags().tags() != null && me.inlineTags().tags().length > 0) {
110 && me.inlineTags().tags() != null && me.inlineTags().tags().length > 0
169 && me.inlineTags().tags() != null && me.inlineTags().tags().length > 0) {
178 public TagInfo[] tags() { method in class:MethodInfo.FirstSentenceTags
193 public TagInfo[] tags() { method in class:MethodInfo.ReturnTags
    [all...]
  /external/freetype/include/
ftimage.h 358 /* tags :: A pointer to an array of `n_points' chars, giving */
387 /* The B/W rasterizer only checks bit~2 in the `tags' array for the */
398 char* tags; /* the points flags */ member in struct:FT_Outline_
477 /* B/W rasterizer; see the `tags' field in @FT_Outline. */
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 1224 char* tags = glyph->outline->tags; local
    [all...]
  /external/icu/icu4c/source/tools/gencnval/
gencnval.c 123 static Tag tags[MAX_TAG_COUNT]; variable
135 /* Were the standard tags declared before the aliases. */
278 uprv_memset(tags, 0, sizeof(tags));
309 /* clean up tags */
312 if (tags[i].aliasList[n].aliases!=NULL) {
313 uprv_free(tags[i].aliasList[n].aliases);
369 fprintf(stderr, "%s:%d: error: alias table needs to start a list of standard tags\n", path, lineNum);
486 /* handle tags if they are present */
514 addAlias(alias, EMPTY_TAG_NUM, cnv, (UBool)(tags[0].aliasList[cnv].aliasCount == 0))
    [all...]
  /external/kernel-headers/original/uapi/linux/
firewire-cdev.h 851 __u32 tags; member in struct:fw_cdev_start_iso
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftimage.h 358 /* tags :: A pointer to an array of `n_points' chars, giving */
387 /* The B/W rasterizer only checks bit~2 in the `tags' array for the */
398 char* tags; /* the points flags */ member in struct:FT_Outline_
477 /* B/W rasterizer; see the `tags' field in @FT_Outline. */
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftimage.h 358 /* tags :: A pointer to an array of `n_points' chars, giving */
387 /* The B/W rasterizer only checks bit~2 in the `tags' array for the */
398 char* tags; /* the points flags */ member in struct:FT_Outline_
477 /* B/W rasterizer; see the `tags' field in @FT_Outline. */
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
pshalgo.c 1224 char* tags = glyph->outline->tags; local
    [all...]

Completed in 1291 milliseconds

1 2 3 45 6 7 8 910