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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chromeos/dbus/
nfc_adapter_client.h 47 // The object paths of the NFC tags that are known to the local adapter.
48 // These are tags that have been "tapped" on the local adapter. Read-only.
49 dbus::Property<std::vector<dbus::ObjectPath> > tags; member in struct:chromeos::NfcAdapterClient::Properties
  /external/chromium_org/content/renderer/pepper/
pepper_truetype_font_win.cc 34 virtual int32_t GetTableTags(std::vector<uint32_t>* tags) OVERRIDE;
162 int32_t PepperTrueTypeFontWin::GetTableTags(std::vector<uint32_t>* tags) {
189 tags->resize(num_tables);
196 (*tags)[i] = tag;
212 // Tags are byte swapped on Windows.
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType_common.h 69 virtual int onGetTableTags(SkFontTableTag tags[]) const SK_OVERRIDE;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BaseDescriptor.java 38 @Descriptor(tags = 0x00)
DecoderSpecificInfo.java 32 @Descriptor(tags = 0x05)
ExtensionDescriptor.java 32 @Descriptor(tags = {0x13, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253})
39 //todo: add this better to the tags list?
SLConfigDescriptor.java 59 @Descriptor(tags = {0x06})
  /external/qemu/android/
cmdline-option.c 16 static void parse_debug_tags( const char* tags );
92 /* special handing for -debug <tags> */
95 derror( "-debug must be followed by tags (see -help-verbose)\n");
235 /* special handling of -debug option and tags */
239 parse_debug_tags( const char* tags )
245 if (tags == NULL)
248 x = x0 = strdup(tags);
  /external/skia/src/ports/
SkFontHost_FreeType_common.h 69 virtual int onGetTableTags(SkFontTableTag tags[]) const SK_OVERRIDE;
  /external/valgrind/main/cachegrind/
cg_sim.c 50 UWord* tags; member in struct:__anon36088
75 c->tags = VG_(malloc)("cg.sim.ci.1",
79 c->tags[i] = 0;
94 set = &(c->tags[set_no * c->assoc]);
133 /* Tags used in real caches are minimal to save space.
  /system/media/camera/docs/
metadata_parser_xml.py 122 tags = self.soup.tags
123 if tags is not None:
124 for tag in tags.find_all('tag'):
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_defs.h 671 * DIEs by the list of tags.
674 /* Zero-terminated list of tags to collect DIEs for. If this field is NULL,
675 * DIEs for all tags will be collected during the parsing. */
676 const Dwarf_Tag* tags; member in struct:DwarfParseContext
682 * be NULL, indicating that all tags should be collected.
690 if (parse_context == NULL || parse_context->tags == NULL) {
693 for (const Dwarf_Tag* tags = parse_context->tags; *tags != 0; tags++)
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.js 78 // Convert the tags array to a tags hash for easier querying.
80 for (var j = 0; j < resource.tags.length; j++)
81 resource.tagsHash[resource.tags[j]] = true;
83 // Determine the type and topics of the resource by inspecting its tags.
  /bootable/recovery/minadbd/
adb.c 65 /* read a comma/space/colum/semi-column separated list of tags
78 } tags[] = { local
107 for (tagn = 0; tags[tagn].tag != NULL; tagn++)
109 int taglen = strlen(tags[tagn].tag);
111 if (len == taglen && !memcmp(tags[tagn].tag, p, len) )
113 int flag = tags[tagn].flag;
  /frameworks/base/core/jni/
android_util_EventLog.cpp 148 * static native void readEvents(int[] tags, Collection<Event> output)
153 jintArray tags,
156 if (tags == NULL || out == NULL) {
169 jsize tagLength = env->GetArrayLength(tags);
170 jint *tagValues = env->GetIntArrayElements(tags, NULL);
222 env->ReleaseIntArrayElements(tags, tagValues, 0);
  /external/chromium_org/third_party/freetype/src/base/
ftstroke.c 307 FT_Byte* tags; member in struct:FT_StrokeBorderRec_
335 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
385 /* then the tags */
387 FT_Byte* tag1 = border->tags + start + 1;
388 FT_Byte* tag2 = border->tags + count - 1;
403 border->tags[start ] |= FT_STROKE_TAG_BEGIN;
404 border->tags[count - 1] |= FT_STROKE_TAG_END;
440 FT_Byte* tag = border->tags + border->num_points;
468 FT_Byte* tag = border->tags + border->num_points;
501 FT_Byte* tag = border->tags + border->num_points
660 FT_Byte* tags = border->tags; local
730 FT_Byte* tags = border->tags; local
2053 char* tags; local
    [all...]
  /external/freetype/src/base/
ftstroke.c 307 FT_Byte* tags; member in struct:FT_StrokeBorderRec_
335 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
385 /* then the tags */
387 FT_Byte* tag1 = border->tags + start + 1;
388 FT_Byte* tag2 = border->tags + count - 1;
403 border->tags[start ] |= FT_STROKE_TAG_BEGIN;
404 border->tags[count - 1] |= FT_STROKE_TAG_END;
440 FT_Byte* tag = border->tags + border->num_points;
468 FT_Byte* tag = border->tags + border->num_points;
501 FT_Byte* tag = border->tags + border->num_points
660 FT_Byte* tags = border->tags; local
730 FT_Byte* tags = border->tags; local
2053 char* tags; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftstroke.c 307 FT_Byte* tags; member in struct:FT_StrokeBorderRec_
335 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
385 /* then the tags */
387 FT_Byte* tag1 = border->tags + start + 1;
388 FT_Byte* tag2 = border->tags + count - 1;
403 border->tags[start ] |= FT_STROKE_TAG_BEGIN;
404 border->tags[count - 1] |= FT_STROKE_TAG_END;
440 FT_Byte* tag = border->tags + border->num_points;
468 FT_Byte* tag = border->tags + border->num_points;
501 FT_Byte* tag = border->tags + border->num_points
660 FT_Byte* tags = border->tags; local
730 FT_Byte* tags = border->tags; local
2053 char* tags; local
    [all...]
  /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...]
  /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;
  /build/tools/
event_log_tags.py 15 """A module for reading and parsing event-log-tags files."""
32 """Read an input event-log-tags file."""
49 self.tags = []
101 self.tags.append(Tag(tag, tagname, description,
merge-event-log-tags.py 18 Usage: merge-event-log-tags.py [-o output_file] [input_files...]
20 Merge together zero or more event-logs-tags files to produce a single
44 # Tags with a tag number of ? are assigned a tag in the range
68 # Restrictions on tags:
82 for t in event_log_tags.TagFile(pre_merged_file).tags:
88 for t in tagfile.tags:
105 # instead of failing (to make it easier to move tags between
152 # numbers should stay relatively stable as tags are added.
154 # If we were provided pre-merged tags (w/ the -m option), then don't
175 # by_tagnum should be complete now; we've assigned numbers to all tags
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/js/
samples.js 18 if (sample.getAttribute('tags').toLowerCase().indexOf(searchText) < 0 &&
  /external/chromium_org/third_party/skia/include/core/
SkTypeface.h 173 /** Copy into tags[] (allocated by the caller) the list of table tags in
175 * or 0 if an error occured. If tags == NULL, this only returns the count
178 int getTableTags(SkFontTableTag tags[]) const;
317 virtual int onGetTableTags(SkFontTableTag tags[]) const = 0;
  /external/clang/include/clang/AST/
Makefile 57 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags -o $(call SYSPATH, $@) $<
62 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags-properties -o $(call SYSPATH, $@) $<

Completed in 522 milliseconds

1 2 3 4 56 7 8 91011>>