HomeSort by relevance Sort by last modified time
    Searched refs:tags (Results 176 - 200 of 553) sorted by null

1 2 3 4 5 6 78 91011>>

  /ndk/toolchains/x86_64-clang3.4/
setup.mk 77 # a C or Assembler source file, based on its tags.
79 TARGET-process-src-files-tags = \
  /cts/libs/vogar-expect/src/vogar/
ExpectationStore.java 147 Set<String> tags = new LinkedHashSet<String>(); local
168 } else if (name.equals("tags")) {
169 readStrings(reader, tags);
191 Expectation expectation = new Expectation(result, pattern, tags, description, buganizerBug);
  /cts/tests/tests/media/src/android/media/cts/
MediaSessionTest.java 122 Set<String> tags = info.getAudioAttributes().getTags(); local
123 assertNotNull(tags);
124 assertTrue(tags.contains(val));
  /external/chromium_org/chrome/utility/media_galleries/
media_metadata_parser.cc 92 it->tags.begin();
93 tag_it != it->tags.end(); ++tag_it) {
94 stream_info->tags.additional_properties.SetString(tag_it->first,
  /external/chromium_org/net/quic/crypto/
crypto_handshake_message.cc 71 vector<QuicTag> tags; local
80 tags.push_back(list_item);
83 // Because of the way that we keep tags in memory, we can copy the contents
86 SetVector(tag, tags);
  /external/chromium_org/third_party/skia/src/core/
SkTypeface.cpp 73 virtual int onGetTableTags(SkFontTableTag tags[]) const SK_OVERRIDE { return 0; }
200 int SkTypeface::getTableTags(SkFontTableTag tags[]) const {
201 return this->onGetTableTags(tags);
  /external/chromium_org/tools/grit/grit/
tclib.py 48 # The tags have to be sorted in order of decreasing length, so that
49 # longer tags are substituted before shorter tags that happen to be
53 tags = tag_map.keys()
54 tags.sort(cmp=lambda x,y: len(x) - len(y) or cmp(x, y), reverse=True)
55 tag_re = '(' + '|'.join(tags) + ')'
  /external/doclava/src/com/google/doclava/
DocFile.java 166 TagInfo[] tags = comment.tags(); local
168 TagInfo.makeHDF(hdf, "root.descr", tags);
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...]
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...]
  /external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
Makefile 275 tags: force
276 $(RM) tags
280 TAGS: force
281 $(RM) TAGS
300 $(RM) TRACEEVENT-CFLAGS tags TAGS
  /external/skia/src/core/
SkTypeface.cpp 73 virtual int onGetTableTags(SkFontTableTag tags[]) const SK_OVERRIDE { return 0; }
200 int SkTypeface::getTableTags(SkFontTableTag tags[]) const {
201 return this->onGetTableTags(tags);
  /ndk/sources/host-tools/make-3.81/w32/
Makefile 337 tags: TAGS
339 TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
341 tags=; \
349 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
352 $$tags $$unique; \
357 tags=; \
365 test -z "$(CTAGS_ARGS)$$tags$$unique" \
367 $$tags $$unique
374 distclean-tags
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_rules_registry.cc 135 if (!rule->tags().empty() && !ignore_tags[extension_id].empty()) {
137 const WebRequestRule::Tags& tags = rule->tags(); local
138 for (WebRequestRule::Tags::const_iterator i = tags.begin();
139 !ignore_rule && i != tags.end();
  /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/ppapi/tests/
test_truetype_font.cc 263 std::vector<uint32_t> tags = cc.output(); local
264 ASSERT_NE(0, tags.size());
265 ASSERT_EQ(static_cast<int32_t>(tags.size()), cc.result());
266 // Tags will vary depending on the actual font that the host platform
267 // chooses. Check that all required TrueType tags are present.
281 std::sort(tags.begin(), tags.end());
282 ASSERT_TRUE(std::includes(tags.begin(),
283 tags.end(),
330 // directory are in file (big-endian) order, we need to byte swap tags an
    [all...]
  /build/tools/releasetools/
sign_target_files_apks 60 Comma-separated list of changes to make to the set of tags (in
279 def EditTags(tags):
280 """Given a string containing comma-separated tags, apply the edits
282 tags = set(tags.split(","))
285 tags.discard(ch[1:])
287 tags.add(ch[1:])
288 return ",".join(sorted(tags))
313 elif key == "ro.build.tags":
  /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...]
  /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.
  /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.
  /packages/apps/Gallery2/gallerycommon/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/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.
  /external/chromium-trace/
systrace-legacy.py 15 # This list is based on the tags in frameworks/native/include/utils/Trace.h.
63 parser.add_option('--set-tags', dest='set_tags', action='store',
64 help='set the enabled trace tags and exit; set to a ' +
80 tags = options.set_tags.split(',')
81 for tag in tags:
85 parser.error('unrecognized tag: %s\nknown tags are: %s' %
87 atrace_args = ['adb', 'shell', 'setprop', 'debug.atrace.tags.enableflags', hex(flags)]
92 print >> sys.stderr, 'unable to set tags: %s' % e
93 print '\nSet enabled tags to: %s\n' % ', '.join(tags)
    [all...]
  /external/chromium_org/ui/app_list/views/
search_result_view.cc 40 const SearchResult::Tags& tags) {
45 for (SearchResult::Tags::const_iterator it = tags.begin();
46 it != tags.end();

Completed in 1619 milliseconds

1 2 3 4 5 6 78 91011>>