Searched defs:tag (Results 276 - 300 of 981) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/brotli/src/woff2/
H A Dfont.cc28 Font::Table* Font::FindTable(uint32_t tag) { argument
29 std::map<uint32_t, Font::Table>::iterator it = tables.find(tag);
33 const Font::Table* Font::FindTable(uint32_t tag) const {
34 std::map<uint32_t, Font::Table>::const_iterator it = tables.find(tag);
52 if (!file.ReadU32(&table.tag) ||
65 if (font->tables.find(table.tag) != font->tables.end()) {
68 font->tables[table.tag] = table;
108 StoreU32(table.tag, &offset, dst);
H A Dwoff2_enc.cc78 if (!file->ReadU32(&table->tag) ||
89 int KnownTableIndex(uint32_t tag) { argument
91 if (tag == kKnownTags[i]) return i;
97 uint8_t flag_byte = KnownTableIndex(table.tag);
100 StoreU32(table.tag, offset, dst);
109 size_t size = KnownTableIndex(table.tag) < 31 ? 1 : 5;
141 if (table.tag & 0x80808080 || !font.FindTable(table.tag ^ 0x80808080)) {
198 if (i.second.tag & 0x80808080) continue;
199 const Font::Table* table = font.FindTable(i.second.tag
[all...]
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dsfdriver.c71 FT_Sfnt_Tag tag )
76 switch ( tag )
117 FT_ULong *tag,
124 if ( !tag )
131 *tag = face->dir_tables[idx].Tag;
115 sfnt_table_info( TT_Face face, FT_UInt idx, FT_ULong *tag, FT_ULong *offset, FT_ULong *length ) argument
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-map.cc97 void hb_ot_map_builder_t::add_feature (hb_tag_t tag, unsigned int value, argument
102 if (unlikely (!tag)) return;
103 info->tag = tag;
138 * feature has a tag that is known to the shaper, we apply required feature
139 * in the stage for that tag.
164 if (feature_infos[i].tag != feature_infos[j].tag)
206 if (required_feature_tag[table_index] == info->tag)
216 info->tag,
[all...]
H A Dhb-ot-tag.cc64 hb_ot_old_tag_to_script (hb_tag_t tag) argument
66 if (unlikely (tag == HB_OT_TAG_DEFAULT_SCRIPT))
71 /* Any spaces at the end of the tag are replaced by repeating the last
73 if (unlikely ((tag & 0x0000FF00u) == 0x00002000u))
74 tag |= (tag >> 8) & 0x0000FF00u; /* Copy second letter to third */
75 if (unlikely ((tag & 0x000000FFu) == 0x00000020u))
76 tag |= (tag >> 8) & 0x000000FFu; /* Copy third letter to fourth */
79 return (hb_script_t) (tag
102 hb_ot_new_tag_to_script(hb_tag_t tag) argument
147 hb_ot_tag_to_script(hb_tag_t tag) argument
160 hb_tag_t tag; member in struct:__anon11869
768 hb_tag_t tag; member in struct:__anon11870
817 char tag[4]; local
868 hb_ot_tag_to_language(hb_tag_t tag) argument
[all...]
/external/chromium_org/third_party/hwcplus/include/hardware/
H A Dhardware.h29 * Value for the hw_module_t.tag field
87 /** tag must be initialized to HARDWARE_MODULE_TAG */
88 uint32_t tag; member in struct:hw_module_t
164 /** tag must be initialized to HARDWARE_DEVICE_TAG */
165 uint32_t tag; member in struct:hw_device_t
231 typedef int (*hwcplus_log_fn_t)(int prio, const char* tag, const char* msg);
/external/chromium_org/third_party/icu/source/extra/uconv/
H A Duwmsg.c121 U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... ) argument
140 msg = ures_getStringByKey(gBundle, tag, &msgLen, &err);
158 va_start(ap, tag);
169 tag,
185 tag,
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dstdnmtst.c42 const char *tag; local
45 tag = ucnv_getStandardName(name, standard, &error);
46 if (!tag && expected) {
49 } else if (expected && (name == tag || uprv_strcmp(expected, tag))) {
50 log_err("FAIL: expected %s for %s standard name for %s, got %s\n", expected, standard, name, tag);
118 const char *tag; local
121 tag = ucnv_getCanonicalName(name, standard, &error);
122 if (tag && !expected) {
123 log_err("FAIL: Unexpectedly found %s canonical name for %s, got %s\n", standard, name, tag);
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dversion_edit.cc113 uint32_t tag; local
122 while (msg == NULL && GetVarint32(&input, &tag)) {
123 switch (tag) {
196 msg = "unknown tag";
202 msg = "invalid tag";
H A Dwrite_batch.cc53 char tag = input[0]; local
55 switch (tag) {
72 return Status::Corruption("unknown WriteBatch tag");
/external/chromium_org/third_party/libsrtp/srtp/crypto/ae_xfm/
H A Dxfm.c144 unsigned char *tag = auth_tag; local
202 /* compare the computed tag with the one provided as input */
204 if (tmp_tag[i] != tag[i])
293 * authentication tag to the location immediately following the
316 /* bump up the opaque_len to reflect the authentication tag */
381 * subtracting out the length of the authentication tag
388 /* verify the authentication tag */
391 * compute the authentication tag for the clear and opaque data,
417 * compare the computed tag with the one provided as input (which
431 /* bump down the opaque_len to reflect the authentication tag */
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
H A Dfont_info.cc26 #include "sfntly/tag.h"
79 FontDataTable* FontInfo::GetTable(FontId font_id, int32_t tag) { argument
85 return it->second->GetTable(tag);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
H A Dheader.h27 explicit Header(int32_t tag);
30 Header(int32_t tag, int32_t length);
33 Header(int32_t tag, int64_t checksum, int32_t offset, int32_t length);
36 // Get the table tag.
37 int32_t tag() { return tag_; } function in class:sfntly::Header
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontConfigParser_android.h23 SkLanguage(const SkString& tag) : fTag(tag) { } argument
24 SkLanguage(const char* tag) : fTag(tag) { } argument
25 SkLanguage(const char* tag, size_t len) : fTag(tag, len) { } argument
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlstring.c99 int tag, unsigned int h, GCObject **list) {
103 ts = &luaC_newobj(L, tag, totalsize, list, 0)->ts;
98 createstrobj(lua_State *L, const char *str, size_t l, int tag, unsigned int h, GCObject **list) argument
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DWebRTCDemo.java36 private final String tag; field in class:WebRTCDemo.TabListener
40 public TabListener(Activity activity, String tag, Class<T> clz) { argument
41 this(activity, tag, clz, null);
44 public TabListener(Activity activity, String tag, Class<T> clz, argument
47 this.tag = tag;
57 ft.add(android.R.id.content, fragment, tag);
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.cc64 thread_map_[ThreadWrapper::GetThreadId()].global_state.tag = ToString(name);
69 thread_map_[ThreadWrapper::GetThreadId()].global_state.tag = name;
74 thread_map_[ThreadWrapper::GetThreadId()].global_state.tag = name;
88 printf("%s\t", state.tag.c_str());
103 printf("PLOT\t%s\t%f\t%f\n", state.tag.c_str(), state.timestamp_ms * 0.001,
113 Logging::State::State() : tag(""), timestamp_ms(0), enabled(true) {}
115 Logging::State::State(const std::string& tag, int64_t timestamp_ms, argument
117 : tag(tag),
123 if (tag
[all...]
H A Dbwe_test_logging.h199 std::string tag; member in struct:webrtc::testing::bwe::Logging::State
/external/chromium_org/tools/perf/benchmarks/
H A Dblink_perf.py101 tag = 'animation' variable in class:BlinkPerfAnimation
110 tag = 'bindings' variable in class:BlinkPerfBindings
119 tag = 'css' variable in class:BlinkPerfCSS
128 tag = 'canvas' variable in class:BlinkPerfCanvas
137 tag = 'dom' variable in class:BlinkPerfDOM
146 tag = 'events' variable in class:BlinkPerfEvents
155 tag = 'interactive' variable in class:BlinkPerfInteractive
164 tag = 'layout' variable in class:BlinkPerfLayout
173 tag = 'mutation' variable in class:BlinkPerfMutation
182 tag variable in class:BlinkPerfParser
191 tag = 'svg' variable in class:BlinkPerfSVG
200 tag = 'shadow_dom' variable in class:BlinkPerfShadowDOM
209 tag = 'xml_http_request' variable in class:BlinkPerfXMLHttpRequest
[all...]
H A Ddromaeo.py102 # tag.
103 if not hasattr(self, 'query_param') or not hasattr(self, 'tag'):
104 raise NotImplementedError('query_param or tag not in Dromaeo benchmark.')
105 archive_data_file = '../page_sets/data/dromaeo.%s.json' % self.tag
117 tag = 'domcoreattr' variable in class:DromaeoDomCoreAttr
123 tag = 'domcoremodify' variable in class:DromaeoDomCoreModify
129 tag = 'domcorequery' variable in class:DromaeoDomCoreQuery
135 tag = 'domcoretraverse' variable in class:DromaeoDomCoreTraverse
141 tag = 'jslibattrjquery' variable in class:DromaeoJslibAttrJquery
147 tag variable in class:DromaeoJslibAttrPrototype
153 tag = 'jslibeventjquery' variable in class:DromaeoJslibEventJquery
159 tag = 'jslibeventprototype' variable in class:DromaeoJslibEventPrototype
166 tag = 'jslibmodifyjquery' variable in class:DromaeoJslibModifyJquery
172 tag = 'jslibmodifyprototype' variable in class:DromaeoJslibModifyPrototype
178 tag = 'jslibstylejquery' variable in class:DromaeoJslibStyleJquery
184 tag = 'jslibstyleprototype' variable in class:DromaeoJslibStylePrototype
190 tag = 'jslibtraversejquery' variable in class:DromaeoJslibTraverseJquery
196 tag = 'jslibtraverseprototype' variable in class:DromaeoJslibTraversePrototype
202 tag = 'cssqueryjquery' variable in class:DromaeoCSSQueryJquery
[all...]
/external/chromium_org/ui/base/l10n/
H A Dl10n_util_unittest.cc97 void SetDefaultLocaleForTest(const std::string& tag, base::Environment* env) { argument
99 env->SetVar("LANGUAGE", tag);
101 base::i18n::SetICUDefaultLocale(tag);
/external/chromium_org/ui/display/util/
H A Dedid_parser.cc129 // - byte 0: tag. should be 02h.
155 unsigned char tag = edid[extension_offset]; local
157 if (tag != kCEAExtensionTag || revision != kExpectedExtensionRevision)
166 // - byte 1 high 3 bits: tag. '07' for extended tags.
168 // - byte 2: the extended tag. '0' for video capability.
170 unsigned char tag = edid[data_offset] >> 5; local
175 if (tag != kExtendedTag || payload_length < 2 ||
/external/chromium_org/ui/views/touchui/
H A Dtouch_editing_menu.cc106 if (sender->tag() != kEllipsesButtonTag)
107 controller_->ExecuteCommand(sender->tag(), event.flags());
143 int tag) {
159 button->set_tag(tag);
142 CreateButton(const base::string16& title, int tag) argument
/external/chromium_org/v8/src/compiler/
H A Djs-builtin-reducer.cc127 Node* tag = graph()->NewNode(simplified()->NumberLessThan(), value, p); local
129 Node* branch = graph()->NewNode(common()->Branch(), tag, control);
/external/chromium_org/v8/src/
H A Dtypes-inl.h78 bool ZoneTypeConfig::is_struct(Type* type, int tag) { argument
79 return !is_bitset(type) && struct_tag(as_struct(type)) == tag;
138 int tag, int length, Zone* zone) {
141 structure[0] = reinterpret_cast<void*>(tag);
227 bool HeapTypeConfig::is_struct(Type* type, int tag) { argument
228 return type->IsFixedArray() && struct_tag(as_struct(type)) == tag;
281 int tag, int length, Isolate* isolate) {
283 structure->set(0, i::Smi::FromInt(tag));
137 struct_create( int tag, int length, Zone* zone) argument
280 struct_create( int tag, int length, Isolate* isolate) argument

Completed in 2956 milliseconds

<<11121314151617181920>>