HomeSort by relevance Sort by last modified time
    Searched refs:ENTITY (Results 1 - 25 of 34) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/encoding/xml/
xml_test.go 172 d.Entity = testEntity
177 <tag>non&entity</tag>
178 <tag>&unknown;entity</tag>
192 CharData("non&entity"),
196 CharData("&unknown;entity"),
334 <!DOCTYPE [<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">]>
335 <!DOCTYPE [<!ENTITY xlt ">">]>
336 <!DOCTYPE [<!ENTITY xlt "<">]>
337 <!DOCTYPE [<!ENTITY xlt '>'>]>
338 <!DOCTYPE [<!ENTITY xlt '<'>]
    [all...]
xml.go 150 // d.Entity = HTMLEntity
164 // Entity can be used to map non-standard entity names to string replacements.
173 Entity map[string]string
652 // Probably a directive: <!DOCTYPE ...>, <!ENTITY ...>, etc.
915 var entity = map[string]int{ var
970 // its own character names with <!ENTITY ...> directives.
1032 if r, ok := entity[s]; ok {
1035 } else if d.Entity != nil {
1036 text, haveText = d.Entity[s
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
xml_test.go 172 d.Entity = testEntity
177 <tag>non&entity</tag>
178 <tag>&unknown;entity</tag>
192 CharData("non&entity"),
196 CharData("&unknown;entity"),
334 <!DOCTYPE [<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">]>
335 <!DOCTYPE [<!ENTITY xlt ">">]>
336 <!DOCTYPE [<!ENTITY xlt "<">]>
337 <!DOCTYPE [<!ENTITY xlt '>'>]>
338 <!DOCTYPE [<!ENTITY xlt '<'>]
    [all...]
xml.go 150 // d.Entity = HTMLEntity
164 // Entity can be used to map non-standard entity names to string replacements.
173 Entity map[string]string
652 // Probably a directive: <!DOCTYPE ...>, <!ENTITY ...>, etc.
915 var entity = map[string]int{ var
970 // its own character names with <!ENTITY ...> directives.
1032 if r, ok := entity[s]; ok {
1035 } else if d.Entity != nil {
1036 text, haveText = d.Entity[s
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
i386.h     [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
_base.py 4 __all__ = ["DOCUMENT", "DOCTYPE", "TEXT", "ELEMENT", "COMMENT", "ENTITY", "UNKNOWN",
14 ENTITY = Node.ENTITY_NODE
119 def entity(self, name): member in class:TreeWalker
122 return {"type": "Entity", "name": text_type(name)}
168 elif type == ENTITY:
169 yield self.entity(details[0])
lxmletree.py 145 elif node.tag == etree.Entity:
146 return _base.ENTITY, ensure_str(node.text)[1:-1] # strip &;
  /external/clang/test/SemaCXX/
typo-correction.cpp 376 ENTITY, // expected-note {{'Result::ENTITY' declared here}}
387 case ENTITY: // expected-error {{use of undeclared identifier 'ENTITY'; did you mean 'Result::ENTITY'?}}
  /external/testng/src/main/java/org/testng/reporters/
JUnitXMLReporter.java 31 private static final Pattern ENTITY= Pattern.compile("&[a-zA-Z]+;.*");
251 String result= replaceAmpersand(attr, ENTITY);
269 // do nothing it is an entity;
  /external/expat/lib/
xmlparse.c 203 } ENTITY;
269 /* false once a parameter entity reference has been skipped */
295 ENTITY *entity; member in struct:open_internal_entity
336 processInternalEntity(XML_Parser parser, ENTITY *entity,
519 ENTITY *m_declEntity;
709 parsers (i.e. external entity parsers) will inherit it
2321 ENTITY *entity; local
3955 ENTITY *entity = (ENTITY *)lookup(parser, local
4000 ENTITY *entity = (ENTITY *)lookup(parser, &dtd->paramEntities, local
4498 ENTITY *entity; local
4870 ENTITY *entity; local
5013 ENTITY *entity; local
5129 ENTITY *entity; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 57 public static final int ENTITY = ((int)DTM.ENTITY_NODE) ;
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 21 // Contributors: Paul Hackenberger (unterminated entity handling in relaxed mode)
99 * entity values and default attribute values. These values are parsed at
100 * inclusion time and may contain both tags and entity references.
103 * define entity values manually}. Such entity values are literal strings
445 * report this as text, even if it was a CDATA block or entity
578 * must be parsed to capture entity values and default attribute values.
661 * Reads a quoted string, performing no entity escaping of the contents.
716 "Parameter entity references are not supported", this, null);
795 * Types are one of the built-in types (CDATA, ID, IDREF, IDREFS, ENTITY,
    [all...]
  /prebuilts/devtools/tools/lib/
kxml2-2.3.0.jar 
  /prebuilts/misc/common/kxml2/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/kxml2-tools/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/net/sf/kxml/kxml2/2.3.0/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/offline-m2/net/sf/kxml/kxml2/2.3.0/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/xml-resolver/xml-resolver/1.2/
xml-resolver-1.2.jar 
  /prebuilts/tools/common/m2/repository/xom/xom/1.0/
xom-1.0.jar 
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 

Completed in 1264 milliseconds

1 2