/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tree_construction/ |
D | tests1.dat | 14 Line: 1 Col: 3 Unexpected start tag (p). Expected DOCTYPE. 43 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE. 52 Line: 1 Col: 6 Unexpected start tag (head). Expected DOCTYPE. 61 Line: 1 Col: 6 Unexpected start tag (body). Expected DOCTYPE. 70 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE. 79 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE. 88 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE. 97 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE. 106 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE. 115 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE. [all …]
|
D | tests6.dat | 4 Line: 1 Col: 29 Unexpected start tag head. Ignored. 15 33: End tag "form" seen but there were unclosed elements. 75 Line: 1 Col: 6 Unexpected start tag (body). 76 Line: 2 Col: 5 Expected closing tag. Unexpected end of file. 88 Line: 1 Col: 10 Unexpected start tag (frameset). Expected DOCTYPE. 101 Line: 1 Col: 10 Unexpected start tag (frameset). Expected DOCTYPE. 102 Line: 2 Col: 10 Expected closing tag. Unexpected end of file. 115 Line: 1 Col: 10 Unexpected start tag (frameset). Expected DOCTYPE. 116 Line: 2 Col: 5 Unexpected start tag (div) in the after frameset phase. Ignored. 128 Line: 1 Col: 10 Unexpected start tag (frameset). Expected DOCTYPE. [all …]
|
D | tests16.dat | 4 Line: 1 Col: 23 Unexpected end of file. Expected end tag (script). 15 Line: 1 Col: 24 Unexpected end of file. Expected end tag (script). 27 Line: 1 Col: 24 Unexpected end of file. Expected end tag (script). 39 Line: 1 Col: 25 Unexpected end of file. Expected end tag (script). 51 Line: 1 Col: 26 Unexpected end of file. Expected end tag (script). 63 Line: 1 Col: 27 Unexpected end of file. Expected end tag (script). 75 Line: 1 Col: 28 Unexpected end of file. Expected end tag (script). 87 Line: 1 Col: 29 Unexpected end of file. Expected end tag (script). 99 Line: 1 Col: 30 Unexpected end of file. Expected end tag (script). 111 Line: 1 Col: 31 Unexpected end of file. Expected end tag (script). [all …]
|
D | tests8.dat | 6 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE. 7 Line: 3 Col: 7 Unexpected end tag (span). Ignored. 8 Line: 3 Col: 8 Expected closing tag. Unexpected end of file. 24 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE. 25 Line: 2 Col: 7 Unexpected end tag (span). Ignored. 26 Line: 2 Col: 8 Expected closing tag. Unexpected end of file. 40 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE. 41 Line: 1 Col: 25 Unexpected end tag (span). Ignored. 42 Line: 1 Col: 26 Expected closing tag. Unexpected end of file. 55 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE. [all …]
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | __init__.py | 210 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, progress, quiet): argument [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowLog.java | 17 public static void e(String tag, String msg) { in e() argument 18 e(tag, msg, null); in e() 22 public static void e(String tag, String msg, Throwable throwable) { in e() argument 23 addLog(Log.ERROR, tag, msg, throwable); in e() 27 public static void d(String tag, String msg) { in d() argument 28 d(tag, msg, null); in d() 32 public static void d(String tag, String msg, Throwable throwable) { in d() argument 33 addLog(Log.DEBUG, tag, msg, throwable); in d() 37 public static void i(String tag, String msg) { in i() argument 38 i(tag, msg, null); in i() [all …]
|
/external/elfutils/src/libebl/ |
D | ebldynamictagname.c | 40 ebl_dynamic_tag_name (ebl, tag, buf, len) in ebl_dynamic_tag_name() argument 42 int64_t tag; 46 const char *res = ebl != NULL ? ebl->dynamic_tag_name (tag, buf, len) : NULL; 50 if (tag >= 0 && tag < DT_NUM) 63 res = stdtags[tag]; 65 else if (tag == DT_VERSYM) 67 else if (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT) 76 res = valrntags[tag - DT_GNU_PRELINKED]; 78 else if (tag >= DT_GNU_HASH && tag <= DT_SYMINFO) 87 res = addrrntags[tag - DT_GNU_HASH]; [all …]
|
D | ebldynamictagcheck.c | 39 ebl_dynamic_tag_check (ebl, tag) in ebl_dynamic_tag_check() argument 41 int64_t tag; 43 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false; 46 && ((tag >= 0 && tag < DT_NUM) 47 || (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT) 48 || (tag >= DT_GNU_HASH && tag <= DT_SYMINFO) 49 || tag == DT_VERSYM 50 || (tag >= DT_RELACOUNT && tag <= DT_VERNEEDNUM) 51 || tag == DT_AUXILIARY 52 || tag == DT_FILTER))
|
/external/xmlwriter/src/org/jheer/ |
D | XMLWriter.java | 159 protected void tag(String tag, String[] names, String[] values, in tag() argument 164 m_out.write(tag); in tag() 178 m_tagStack.add(tag); in tag() 190 public void tag(String tag, String[] names, String[] values, int nattr) throws IOException in tag() argument 192 tag(tag, names, values, nattr, true); in tag() 203 public void start(String tag, String[] names, String[] values, int nattr) throws IOException in start() argument 205 tag(tag, names, values, nattr, false); in start() 231 protected void tag(String tag, String name, String value, boolean close) throws IOException { in tag() method in XMLWriter 234 m_out.write(tag); in tag() 246 m_tagStack.add(tag); in tag() [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | DebugLog.java | 32 public static int v(String tag, String msg) { in v() argument 35 result = Log.v(tag, msg); in v() 40 public static int v(String tag, String msg, Throwable tr) { in v() argument 43 result = Log.v(tag, msg, tr); in v() 48 public static int d(String tag, String msg) { in d() argument 51 result = Log.d(tag, msg); in d() 56 public static int d(String tag, String msg, Throwable tr) { in d() argument 59 result = Log.d(tag, msg, tr); in d() 64 public static int i(String tag, String msg) { in i() argument 67 result = Log.i(tag, msg); in i() [all …]
|
/external/llvm/test/CodeGen/PowerPC/ |
D | pr17168.ll | 65 !8 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed) 66 !9 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !10) 67 !10 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !11) 68 !11 = !MDBasicType(tag: DW_TAG_base_type, name: "char", size: 8, align: 8, encoding: DW_ATE_unsigne… 70 !13 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "argc", line: 74, arg: 1, scope: !4, file: !… 71 !14 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "argv", line: 74, arg: 2, scope: !4, file: !… 72 !15 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "niter", line: 76, scope: !4, file: !5, typ… 73 !16 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "step", line: 76, scope: !4, file: !5, type… 74 !17 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "n3", line: 76, scope: !4, file: !5, type: … 75 !18 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "nthreads", line: 77, scope: !4, file: !5, … [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | debug-info-blocks.ll | 99 !1 = !MDCompositeType(tag: DW_TAG_enumeration_type, line: 248, size: 32, align: 32, file: !160, sco… 103 !5 = !MDCompositeType(tag: DW_TAG_enumeration_type, name: "Mode", line: 79, size: 32, align: 32, fi… 107 !9 = !MDCompositeType(tag: DW_TAG_enumeration_type, line: 15, size: 32, align: 32, file: !149, scop… 112 !14 = !MDCompositeType(tag: DW_TAG_enumeration_type, line: 20, size: 32, align: 32, file: !150, sco… 117 !19 = !MDCompositeType(tag: DW_TAG_enumeration_type, line: 14, size: 32, align: 32, file: !151, sco… 125 !27 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: ".block_descriptor", line: 609, arg: 1, flag… 126 !28 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 32, scope: !0, baseType: !29) 127 !29 = !MDCompositeType(tag: DW_TAG_structure_type, name: "__block_literal_14", line: 609, size: 256… 129 !31 = !MDDerivedType(tag: DW_TAG_member, name: "__isa", line: 609, size: 32, align: 32, file: !152,… 130 !32 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, scope: !0, baseType: null) [all …]
|
/external/markdown/markdown/ |
D | html4.py | 129 tag = elem.tag 131 if tag is Comment: 133 elif tag is ProcessingInstruction: 136 tag = qnames[tag] 137 if tag is None: 143 write("<" + tag) 167 tag = tag.lower() 169 if tag == "script" or tag == "style": 175 if tag not in HTML_EMPTY: 176 write("</" + tag + ">") [all …]
|
/external/elfutils/src/backends/ |
D | aarch64_retval.c | 43 skip_until (Dwarf_Die *child, int tag) in skip_until() argument 46 while (DWARF_TAG_OR_RETURN (child) != tag) in skip_until() 77 static int hfa_type (Dwarf_Die *ftypedie, int tag, 87 int tag = dwarf_peeled_die_type (membdie, &typedie); in member_is_fp() local 88 switch (tag) in member_is_fp() 120 return hfa_type (&typedie, tag, sizep, countp); in member_is_fp() 127 hfa_type (Dwarf_Die *ftypedie, int tag, Dwarf_Word *sizep, Dwarf_Word *countp) in hfa_type() argument 129 assert (tag == DW_TAG_structure_type || tag == DW_TAG_class_type in hfa_type() 130 || tag == DW_TAG_union_type || tag == DW_TAG_array_type); in hfa_type() 133 if (tag == DW_TAG_array_type) in hfa_type() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | GeneralName.java | 60 private int tag; field in GeneralName 70 this.tag = 4; in GeneralName() 77 this.tag = 4; in GeneralName() 108 int tag, in GeneralName() argument 112 this.tag = tag; in GeneralName() 139 int tag, in GeneralName() argument 142 this.tag = tag; in GeneralName() 144 if (tag == rfc822Name || tag == dNSName || tag == uniformResourceIdentifier) in GeneralName() 148 else if (tag == registeredID) in GeneralName() 152 else if (tag == directoryName) in GeneralName() [all …]
|
/external/boringssl/src/crypto/asn1/ |
D | asn1_par.c | 64 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed, 68 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, in asn1_print_info() argument 84 BIO_snprintf(str,sizeof str,"priv [ %d ] ",tag); in asn1_print_info() 86 BIO_snprintf(str,sizeof str,"cont [ %d ]",tag); in asn1_print_info() 88 BIO_snprintf(str,sizeof str,"appl [ %d ]",tag); in asn1_print_info() 89 else if (tag > 30) in asn1_print_info() 90 BIO_snprintf(str,sizeof str,"<ASN1 %d>",tag); in asn1_print_info() 92 p = ASN1_tag2str(tag); in asn1_print_info() 116 int tag,xclass,ret=0; in asn1_parse2() local 134 j=ASN1_get_object(&p,&len,&tag,&xclass,length); in asn1_parse2() [all …]
|
/external/libexif/po/ |
D | libexif-12.pot | 44 #: libexif/olympus/mnote-olympus-tag.c:108 1020 #: libexif/canon/mnote-canon-entry.c:325 libexif/pentax/mnote-pentax-tag.c:44 1048 #: libexif/exif-entry.c:737 libexif/exif-entry.c:779 libexif/exif-tag.c:577 1279 #: libexif/canon/mnote-canon-tag.c:35 1283 #: libexif/canon/mnote-canon-tag.c:36 libexif/canon/mnote-canon-tag.c:92 1284 #: libexif/exif-tag.c:581 libexif/pentax/mnote-pentax-tag.c:88 1288 #: libexif/canon/mnote-canon-tag.c:37 1292 #: libexif/canon/mnote-canon-tag.c:38 1298 #: libexif/canon/mnote-canon-tag.c:39 1302 #: libexif/canon/mnote-canon-tag.c:40 libexif/olympus/mnote-olympus-tag.c:37 [all …]
|
D | en_CA.po | 44 #: libexif/olympus/mnote-olympus-tag.c:108 1020 #: libexif/canon/mnote-canon-entry.c:325 libexif/pentax/mnote-pentax-tag.c:44 1048 #: libexif/exif-entry.c:737 libexif/exif-entry.c:779 libexif/exif-tag.c:577 1279 #: libexif/canon/mnote-canon-tag.c:35 1283 #: libexif/canon/mnote-canon-tag.c:36 libexif/canon/mnote-canon-tag.c:92 1284 #: libexif/exif-tag.c:581 libexif/pentax/mnote-pentax-tag.c:88 1288 #: libexif/canon/mnote-canon-tag.c:37 1292 #: libexif/canon/mnote-canon-tag.c:38 1298 #: libexif/canon/mnote-canon-tag.c:39 1302 #: libexif/canon/mnote-canon-tag.c:40 libexif/olympus/mnote-olympus-tag.c:37 [all …]
|
D | uk.po | 46 #: libexif/olympus/mnote-olympus-tag.c:108 1022 #: libexif/canon/mnote-canon-entry.c:325 libexif/pentax/mnote-pentax-tag.c:44 1050 #: libexif/exif-entry.c:737 libexif/exif-entry.c:779 libexif/exif-tag.c:577 1281 #: libexif/canon/mnote-canon-tag.c:35 1285 #: libexif/canon/mnote-canon-tag.c:36 libexif/canon/mnote-canon-tag.c:92 1286 #: libexif/exif-tag.c:581 libexif/pentax/mnote-pentax-tag.c:88 1290 #: libexif/canon/mnote-canon-tag.c:37 1294 #: libexif/canon/mnote-canon-tag.c:38 1300 #: libexif/canon/mnote-canon-tag.c:39 1304 #: libexif/canon/mnote-canon-tag.c:40 libexif/olympus/mnote-olympus-tag.c:37 [all …]
|
D | sq.po | 45 #: libexif/olympus/mnote-olympus-tag.c:108 1024 #: libexif/canon/mnote-canon-entry.c:325 libexif/pentax/mnote-pentax-tag.c:44 1052 #: libexif/exif-entry.c:737 libexif/exif-entry.c:779 libexif/exif-tag.c:577 1283 #: libexif/canon/mnote-canon-tag.c:35 1287 #: libexif/canon/mnote-canon-tag.c:36 libexif/canon/mnote-canon-tag.c:92 1288 #: libexif/exif-tag.c:581 libexif/pentax/mnote-pentax-tag.c:88 1292 #: libexif/canon/mnote-canon-tag.c:37 1296 #: libexif/canon/mnote-canon-tag.c:38 1302 #: libexif/canon/mnote-canon-tag.c:39 1306 #: libexif/canon/mnote-canon-tag.c:40 libexif/olympus/mnote-olympus-tag.c:37 [all …]
|
D | pt.po | 45 #: libexif/olympus/mnote-olympus-tag.c:108 1024 #: libexif/canon/mnote-canon-entry.c:325 libexif/pentax/mnote-pentax-tag.c:44 1052 #: libexif/exif-entry.c:737 libexif/exif-entry.c:779 libexif/exif-tag.c:577 1283 #: libexif/canon/mnote-canon-tag.c:35 1287 #: libexif/canon/mnote-canon-tag.c:36 libexif/canon/mnote-canon-tag.c:92 1288 #: libexif/exif-tag.c:581 libexif/pentax/mnote-pentax-tag.c:88 1292 #: libexif/canon/mnote-canon-tag.c:37 1296 #: libexif/canon/mnote-canon-tag.c:38 1302 #: libexif/canon/mnote-canon-tag.c:39 1306 #: libexif/canon/mnote-canon-tag.c:40 libexif/olympus/mnote-olympus-tag.c:37 [all …]
|
D | be.po | 45 #: libexif/olympus/mnote-olympus-tag.c:108 1024 #: libexif/canon/mnote-canon-entry.c:325 libexif/pentax/mnote-pentax-tag.c:44 1052 #: libexif/exif-entry.c:737 libexif/exif-entry.c:779 libexif/exif-tag.c:577 1283 #: libexif/canon/mnote-canon-tag.c:35 1287 #: libexif/canon/mnote-canon-tag.c:36 libexif/canon/mnote-canon-tag.c:92 1288 #: libexif/exif-tag.c:581 libexif/pentax/mnote-pentax-tag.c:88 1292 #: libexif/canon/mnote-canon-tag.c:37 1296 #: libexif/canon/mnote-canon-tag.c:38 1302 #: libexif/canon/mnote-canon-tag.c:39 1306 #: libexif/canon/mnote-canon-tag.c:40 libexif/olympus/mnote-olympus-tag.c:37 [all …]
|
/external/llvm/test/Assembler/ |
D | generic-debug-node.ll | 10 ; CHECK-NEXT: !1 = !GenericDebugNode(tag: DW_TAG_entry_point, header: "some\00header", operands: {!… 11 !1 = !GenericDebugNode(tag: 3, header: "some\00header", operands: {!0, !3, !4}) 12 !2 = !GenericDebugNode(tag: 3, header: "some\00header", operands: {!{}, !3, !4}) 14 ; CHECK-NEXT: !2 = !GenericDebugNode(tag: DW_TAG_entry_point) 15 !3 = !GenericDebugNode(tag: 3) 16 !4 = !GenericDebugNode(tag: 3, header: "") 17 !5 = !GenericDebugNode(tag: 3, operands: {}) 18 !6 = !GenericDebugNode(tag: 3, header: "", operands: {}) 20 ; CHECK-NEXT: !3 = distinct !GenericDebugNode(tag: DW_TAG_entry_point) 21 !7 = distinct !GenericDebugNode(tag: 3) [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | Frame.java | 215 private byte tag; field in Frame.Variable 229 tag = JDWPConstants.Tag.NO_TAG; in Variable() 287 tag = JDWPConstants.Tag.ARRAY_TAG; in setSignature() 290 tag = JDWPConstants.Tag.BYTE_TAG; in setSignature() 293 tag = JDWPConstants.Tag.CHAR_TAG; in setSignature() 296 tag = JDWPConstants.Tag.OBJECT_TAG; in setSignature() 299 tag = JDWPConstants.Tag.FLOAT_TAG; in setSignature() 302 tag = JDWPConstants.Tag.DOUBLE_TAG; in setSignature() 305 tag = JDWPConstants.Tag.INT_TAG; in setSignature() 308 tag = JDWPConstants.Tag.LONG_TAG; in setSignature() [all …]
|
/external/sfntly/cpp/src/sfntly/table/ |
D | table.cc | 71 derived_table->header_ = new Header(header()->tag(), in NotifyPostTableBuild() 79 int32_t tag = header->tag(); in GetBuilder() local 84 if (tag == Tag::head) { in GetBuilder() 88 } else if (tag == Tag::cmap) { in GetBuilder() 92 } else if (tag == Tag::hhea) { in GetBuilder() 95 } else if (tag == Tag::hmtx) { in GetBuilder() 98 } else if (tag == Tag::maxp) { in GetBuilder() 101 } else if (tag == Tag::name) { in GetBuilder() 104 } else if (tag == Tag::OS_2) { in GetBuilder() 113 }*/ else if (tag == Tag::glyf) { in GetBuilder() [all …]
|