Searched refs:tag (Results 51 - 75 of 1855) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkFontStream.h41 static size_t GetTableData(SkStream*, int ttcIndex, SkFontTableTag tag,
44 static size_t GetTableSize(SkStream* stream, int ttcIndex, SkFontTableTag tag) { argument
45 return GetTableData(stream, ttcIndex, tag, 0, ~0U, NULL);
/external/chromium_org/sandbox/win/src/
H A Dshared_handles.h68 // tag : an integer, different from zero that uniquely identfies the
70 // handle: the handle value associated with 'tag' to tranfer
73 bool SetHandle(uint32 tag, HANDLE handle);
77 // tag: an integer different from zero that uniquely identfies the handle
80 // If a handle with the provided tag is not found the return value is false.
81 // If the tag is found the return value is true.
82 bool GetHandle(uint32 tag, HANDLE* handle);
85 // A single item is the tuple handle/tag
87 uint32 tag; member in struct:sandbox::SharedHandles::SharedItem
97 // Finds an Item tuple provided the handle tag
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontFeatureValue.h36 static PassRefPtrWillBeRawPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value) argument
38 return adoptRefWillBeNoop(new CSSFontFeatureValue(tag, value));
41 const AtomicString& tag() const { return m_tag; } function in class:blink::CSSFontFeatureValue
50 CSSFontFeatureValue(const AtomicString& tag, int value);
/external/chromium_org/third_party/hwcplus/include/android/
H A Dlog.h43 * - a log tag
46 * The tag normally corresponds to the component that emits the log message,
94 int __android_log_write(int prio, const char *tag, const char *text);
99 int __android_log_print(int prio, const char *tag, const char *fmt, ...)
109 int __android_log_vprint(int prio, const char *tag,
116 void __android_log_assert(const char *cond, const char *tag,
/external/libcxx/test/iterators/iterator.primitives/std.iterator.tags/
H A Dinput_iterator_tag.pass.cpp19 std::input_iterator_tag tag; local
H A Doutput_iterator_tag.pass.cpp19 std::output_iterator_tag tag; local
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DWireFormatMicro.java58 /** Given a tag value, determines the wire type (the lower 3 bits). */
59 static int getTagWireType(final int tag) { argument
60 return tag & TAG_TYPE_MASK;
63 /** Given a tag value, determines the field number (the upper 29 bits). */
64 public static int getTagFieldNumber(final int tag) { argument
65 return tag >>> TAG_TYPE_BITS;
68 /** Makes a tag value given a field number and wire type. */
/external/chromium_org/native_client_sdk/src/doc/doxygen/
H A Ddoxy_cleanup.py83 - Putting the "name" attribute into the "id" attribute of the <tr> tag.
102 for tag in self.soup.findAll('tr'):
103 if tag.td and tag.td.h2 and tag.td.h2.a and tag.td.h2.a['name']:
104 #tag['id'] = tag.td.h2.a['name']
105 tag.string = tag
[all...]
/external/srec/portable/include/
H A Dpmemory.h64 #define MALLOC(n, tag) malloc(n)
65 #define CALLOC(m, n, tag) calloc(m, n)
66 #define CALLOC_CLR(m, n, tag) calloc(m, n)
69 #define NEW(type, tag) ((type*)MALLOC(sizeof(type), tag))
70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag))
101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__))
106 #define MALLOC(nbBytes, tag) (pmallo
[all...]
/external/elfutils/0.153/backends/
H A Dppc64_retval.c87 int tag = dwarf_tag (typedie); local
90 while (tag == DW_TAG_typedef
91 || tag == DW_TAG_const_type || tag == DW_TAG_volatile_type
92 || tag == DW_TAG_restrict_type || tag == DW_TAG_mutable_type)
96 tag = dwarf_tag (typedie);
100 switch (tag)
110 tag = dwarf_tag (typedie);
121 if (tag
[all...]
H A Darm_retval.c73 int tag = dwarf_tag (typedie); local
76 while (tag == DW_TAG_typedef
77 || tag == DW_TAG_const_type || tag == DW_TAG_volatile_type
78 || tag == DW_TAG_restrict_type || tag == DW_TAG_mutable_type)
82 tag = dwarf_tag (typedie);
86 switch (tag)
96 tag = dwarf_tag (typedie);
107 if (tag
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_element_lookup_trie.py47 (char, subtrie, tag, conditions): (char, trie, str, list)
62 tag = subtags[0]
63 conditions = _conditions(tag, index + 1)
66 tag = None
68 return char, subtrie, tag, conditions
71 def char_at_index(tag):
72 return tag[index].lower()
82 def _conditions(tag, index):
86 for i, c in islice(enumerate(tag), index, None)]
126 self._tags.sort(key=lambda tag
[all...]
/external/chromium_org/remoting/webapp/
H A Dl10n.js9 * Localize a tag, returning the tag itself and logging an error if no
12 * @param {string} tag The localization tag.
15 * @return {string} The translated tag.
17 l10n.getTranslationOrError = function(tag, opt_substitutions) {
18 var translation = chrome.i18n.getMessage(tag, opt_substitutions);
22 console.error('Missing translation for "' + tag + '"');
23 return tag;
27 * Localize an element by setting its innerText according to the specified tag
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontFeatureSettings.cpp31 FontFeature::FontFeature(const AtomicString& tag, int value) argument
32 : m_tag(tag)
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-tag.h48 hb_ot_tag_to_script (hb_tag_t tag);
54 hb_ot_tag_to_language (hb_tag_t tag);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dtable_subsetter_impl.cc30 bool TableSubsetterImpl::TagHandled(int32_t tag) { argument
31 return tags_.find(tag) != tags_.end();
/external/harfbuzz_ng/src/
H A Dhb-ot-tag.h48 hb_ot_tag_to_script (hb_tag_t tag);
54 hb_ot_tag_to_language (hb_tag_t tag);
/external/qemu/android/utils/
H A Ddebug.h64 #define VERBOSE_ENABLE(tag) \
65 android_verbose |= (1 << VERBOSE_##tag)
67 #define VERBOSE_DISABLE(tag) \
68 android_verbose &= (1 << VERBOSE_##tag)
70 #define VERBOSE_CHECK(tag) \
71 ((android_verbose & (1 << VERBOSE_##tag)) != 0)
76 #define VERBOSE_PRINT(tag,...) \
77 do { if (VERBOSE_CHECK(tag)) dprint(__VA_ARGS__); } while (0)
/external/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dtable_subsetter_impl.cc30 bool TableSubsetterImpl::TagHandled(int32_t tag) { argument
31 return tags_.find(tag) != tags_.end();
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Ddocument_parser.py11 |title_attributes| The attributes of the <h1> tag the title is derived from.
36 |attributes| The attributes of the header tag this entry is derived from.
37 |name| The name of this entry, as pulled from the header tag this entry
42 def __init__(self, tag, attributes):
46 # Callers shouldn't care about the tag, but we need it for sanity checking,
49 self._tag = tag
71 '''Removes the first <h1>..</h1> tag found in |document| and returns a
116 def handle_starttag(self, tag, attrs):
117 if tag == 'section':
121 if tag !
[all...]
/external/chromium_org/tools/metrics/histograms/
H A Dhistogram_ownership.py17 assert root.tag == 'histogram-configuration'
22 if node.tag == 'histograms':
28 if histogram.tag != 'histogram':
35 if node.tag == 'obsolete':
38 if node.tag != 'owner':
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.cpp44 if (pos->tag == DW_TAG_namespace)
46 else if (pos->tag == DW_TAG_class_type)
48 else if (pos->tag == DW_TAG_structure_type)
50 else if (pos->tag == DW_TAG_union_type)
84 if (pos->tag != rhs_pos->tag)
88 if (pos->tag == DW_TAG_structure_type && rhs_pos->tag == DW_TAG_class_type)
90 if (pos->tag == DW_TAG_class_type && rhs_pos->tag
[all...]
/external/fonttools/Lib/fontTools/ttLib/
H A D__init__.py210 for tag in tags:
211 self._writeTable(tag, writer, done)
244 for tag in skipTables:
245 if tag in tables:
246 tables.remove(tag)
269 tag = tables[i]
271 tablePath = fileNameTemplate % tagToIdentifier(tag)
276 writer.simpletag(tagToXML(tag), src=os.path.basename(tablePath))
280 self._tableToXML(tableWriter, tag, progress, quiet)
293 def _tableToXML(self, writer, tag, progres
[all...]
/external/fonttools/Tools/fontTools/ttLib/
H A D__init__.py210 for tag in tags:
211 self._writeTable(tag, writer, done)
244 for tag in skipTables:
245 if tag in tables:
246 tables.remove(tag)
269 tag = tables[i]
271 tablePath = fileNameTemplate % tagToIdentifier(tag)
276 writer.simpletag(tagToXML(tag), src=os.path.basename(tablePath))
280 self._tableToXML(tableWriter, tag, progress, quiet)
293 def _tableToXML(self, writer, tag, progres
[all...]
/external/chromium_org/third_party/markdown/
H A Dserializers.py170 tag = elem.tag
172 if tag is Comment:
174 elif tag is ProcessingInstruction:
177 tag = qnames[tag]
178 if tag is None:
184 write("<" + tag)
207 if format == "xhtml" and tag in HTML_EMPTY:
211 tag
[all...]

Completed in 3875 milliseconds

1234567891011>>