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

1 2 34 5 6 7 8 910

  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifData.java 194 * Removes the thumbnail and its related tags. IFD1 will be removed.
259 ExifTag[] tags = d.getAllTags(); local
260 if (tags != null) {
261 for (ExifTag t : tags) {
282 ExifTag[] tags = d.getAllTags(); local
283 if (tags == null) {
286 ArrayList<ExifTag> ret = new ArrayList<ExifTag>(tags.length);
287 for (ExifTag t : tags) {
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/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ExifData.java 194 * Removes the thumbnail and its related tags. IFD1 will be removed.
259 ExifTag[] tags = d.getAllTags(); local
260 if (tags != null) {
261 for (ExifTag t : tags) {
282 ExifTag[] tags = d.getAllTags(); local
283 if (tags == null) {
286 ArrayList<ExifTag> ret = new ArrayList<ExifTag>(tags.length);
287 for (ExifTag t : tags) {
  /packages/apps/Mms/src/com/android/mms/exif/
ExifData.java 196 * Removes the thumbnail and its related tags. IFD1 will be removed.
261 ExifTag[] tags = d.getAllTags(); local
262 if (tags != null) {
263 for (ExifTag t : tags) {
284 ExifTag[] tags = d.getAllTags(); local
285 if (tags == null) {
288 ArrayList<ExifTag> ret = new ArrayList<ExifTag>(tags.length);
289 for (ExifTag t : tags) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 80 def insert(self, index, chars, tags=None):
81 self.addcmd(InsertCommand(index, chars, tags))
164 tags = None variable in class:Command
166 def __init__(self, index1, index2, chars, tags=None):
172 if tags:
173 self.tags = tags
177 t = (self.index1, self.index2, self.chars, self.tags)
178 if self.tags is None:
210 def __init__(self, index1, chars, tags=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 80 def insert(self, index, chars, tags=None):
81 self.addcmd(InsertCommand(index, chars, tags))
164 tags = None variable in class:Command
166 def __init__(self, index1, index2, chars, tags=None):
172 if tags:
173 self.tags = tags
177 t = (self.index1, self.index2, self.chars, self.tags)
178 if self.tags is None:
210 def __init__(self, index1, chars, tags=None)
    [all...]
  /system/extras/procrank/
procrank.c 71 static const char* const tags[] = { local
94 while (tags[i]) {
95 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
  /system/media/camera/tests/
camera_metadata_tests.cpp 1043 std::vector<uint32_t> tags; local
    [all...]
  /external/doclava/src/com/google/doclava/
PageMetadata.java 51 * metadata based on the page's declared hdf vars (meta.tags and others)
68 * regex pattern to match javadoc @link and similar tags. Extracts
144 pageMeta.setKeywords(getPageTagsNormalized(hdf, "page.tags"));
145 pageMeta.setTags(getPageTagsNormalized(hdf, "meta.tags"));
267 * quotes, trim whitespace, optionally make keywords/tags lowercase for
277 StringBuilder tags = new StringBuilder(); local
279 if (tag.equals("meta.tags") && (tagList.equals(""))) {
280 //use keywords as tags if no meta tags are available
281 tagList = hdf.getValue("page.tags", "");
    [all...]
Comment.java 124 // if there are no more tags
338 for (TagInfo t : c.tags()) {
402 public TagInfo[] tags() { method in class:Comment
407 public TagInfo[] tags(String name) { method in class:Comment
  /external/chromium_org/third_party/jinja2/
ext.py 6 Jinja extensions allow to add custom tags similar to the way django custom
7 tags work. By default two example extensions exist: an i18n and a cache
60 #: if this extension parses this is the list of tags it's listening to.
61 tags = set() variable in class:Extension
100 """If any of the :attr:`tags` matched this method is called with the
158 tags = set(['trans']) variable in class:InternationalizationExtension
394 tags = set(['do']) variable in class:ExprStmtExtension
404 tags = set(['break', 'continue']) variable in class:LoopControlExtension
415 tags = set(['with']) variable in class:WithExtension
436 tags = set(['autoescape'] variable in class:AutoEscapeExtension
    [all...]
  /external/nanopb-c/generator/
nanopb_generator.py 330 def tags(self): member in class:Field
422 start. Not necessarily all tags above this are extensions, it is merely
443 def tags(self): member in class:ExtensionRange
464 def tags(self): member in class:ExtensionField
754 yield '/* Field tags (for use in manual encoding/decoding) */\n'
757 yield field.tags()
759 yield extension.tags()
    [all...]
  /frameworks/base/core/jni/
android_media_AudioRecord.cpp 211 const char* tags = env->GetStringUTFChars(jtags, NULL); local
212 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
213 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
214 env->ReleaseStringUTFChars(jtags, tags);
217 ALOGV("AudioRecord_setup for source=%d tags=%s flags=%08x", paa->source, paa->tags, paa->flags);
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 297 video.tags = body;
507 video.tags = takeText();
537 public String tags; field in class:SafeSaxTest.YouTubeVideo
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
nfc_debug_ui.cc 40 const char kAdapterTagsProperty[] = "tags";
549 NfcAdapter::TagList tags; local
550 nfc_adapter_->GetTags(&tags);
551 for (NfcAdapter::TagList::const_iterator iter = tags.begin();
552 iter != tags.end(); ++iter) {
571 NfcAdapter::TagList tags; local
572 nfc_adapter_->GetTags(&tags);
573 out->SetInteger(kAdapterTagsProperty, static_cast<int>(tags.size()));
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiapts.c 541 char tags[] = "01 21 6 21 2"; /* expected tag values at break positions */ local
568 expectedTag = tagMap[tags[i]&0xf];
  /external/chromium_org/third_party/icu/source/test/intltest/
restsnew.cpp 901 ResourceBundle tags=theBundle.get(tag, status); local
905 UResType bundleType=tags.getType();
908 tag_count=tags.getSize();
912 ResourceBundle tagelement=tags.get(index, status);
925 ResourceBundle tagelement=tags.get(index, status);
961 ResourceBundle tags=theBundle.get(tag, status); local
963 ResourceBundle tagelement=tags.get(item_tag, status);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiapts.c 545 char tags[] = "01 21 6 21 2"; /* expected tag values at break positions */ local
572 expectedTag = tagMap[tags[i]&0xf];
    [all...]
  /external/icu/icu4c/source/test/intltest/
restsnew.cpp 901 ResourceBundle tags=theBundle.get(tag, status); local
905 UResType bundleType=tags.getType();
908 tag_count=tags.getSize();
912 ResourceBundle tagelement=tags.get(index, status);
925 ResourceBundle tagelement=tags.get(index, status);
961 ResourceBundle tags=theBundle.get(tag, status); local
963 ResourceBundle tagelement=tags.get(item_tag, status);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 280 int[] tags = new int[k]; local
285 tags[i] = tag;
296 appendFrame(pos, offset, tags, data);
305 * @param tags <code>locals[i].tag</code>.
309 public void appendFrame(int pos, int offsetDelta, int[] tags, int[] data)
342 private int verifyTypeInfo(int pos, int n, int[] tags, int[] data) {
345 tags[i] = tag;
381 public void appendFrame(int pos, int offsetDelta, int[] tags, int[] data) {
382 writer.appendFrame(offsetDelta, tags, copyData(tags, data))
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 363 int[] tags = fillStackMap(bb.numLocals - prev.numLocals, local
366 writer.appendFrame(offsetDelta, tags, data);
399 int[] tags = new int[realNum]; local
404 tags[j] = StackMapTable.TOP;
408 tags[j] = td.getTypeTag();
417 return tags;
  /external/oprofile/libop/
op_events.c 432 int tags; local
448 tags = 0;
511 if (tags > 0)
512 parse_error("tags before include:");
522 tags++;
  /frameworks/base/packages/WallpaperCropper/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.
  /frameworks/native/cmds/atrace/
atrace.cpp 45 const char* k_traceTagsProperty = "debug.atrace.tags.enableflags";
57 // The userland tracing tags that the category enables.
58 uint64_t tags; member in struct:TracingCategory
265 // writable and if enabling the category will enable one or more tracing tags
269 bool ok = category.tags != 0;
294 bool ok = category.tags != 0;
431 // Set the trace tags that userland tracing uses, and poke the running
433 static bool setTagsProperty(uint64_t tags)
436 snprintf(buf, 64, "%#" PRIx64, tags);
438 fprintf(stderr, "error setting trace tags system property\n")
567 uint64_t tags = 0; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/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.

Completed in 733 milliseconds

1 2 34 5 6 7 8 910