/third_party/python/Tools/scripts/ |
H A D | parse_html5_entities.py | 5 http://dev.w3.org/html5/spec/entities.json 15 from html.entities import html5 17 entities_url = 'http://dev.w3.org/html5/spec/entities.json' 25 def create_dict(entities): 28 for name, value in entities.items(): 53 def write_items(entities, file=sys.stdout): 63 keys = sorted(entities.keys()) 67 print(' {!r}: {!a},'.format(name, entities[name]), file=file) 72 # without args print a diff between html.entities.html5 and new_html5 74 # with --patch patch the Lib/html/entities [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | keyofAndIndexedAccess2.js | 82 entities: { [key: string]: E, [key: number]: E }; 87 const { ids, entities } = state; 88 return ids.map(id => entities[id]); 92 const { ids, entities } = state; 98 return entities[id]; 230 const { ids, entities } = state;
231 return ids.map(id => entities[id]);
234 const { ids, entities } = state;
238 return entities[id];
|
/third_party/python/Lib/xml/sax/ |
H A D | saxutils.py | 18 def escape(data, entities={}): 22 the optional entities parameter. The keys and values must all be 30 if entities: 31 data = __dict_replace(data, entities) 34 def unescape(data, entities={}): 38 the optional entities parameter. The keys and values must all be 43 if entities: 44 data = __dict_replace(data, entities) 48 def quoteattr(data, entities={}): 56 the optional entities paramete [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
H A D | UnitsConverter.java | 396 String[] entities = poweredEntity.split(Pattern.quote("^")); in addPoweredEntity() 397 assert (entities.length == 1 || entities.length == 2); in addPoweredEntity() 399 int power = entities.length == 2 ? Integer.parseInt(entities[1]) : 1; in addPoweredEntity() 400 this.addEntity(entities[0], power); in addPoweredEntity()
|
/third_party/python/Lib/test/ |
H A D | test_minidom.py | 34 doctype.entities._seq = [] 40 "http://xml.python.org/entities/my", 45 doctype.entities._seq.append(entity) 51 doctype.entities.item(0).ownerDocument = doc 747 and len(clone.entities) == len(doctype.entities) 748 and clone.entities.item(len(clone.entities)) is None 752 for i in range(len(doctype.entities)): 753 se = doctype.entities [all...] |
H A D | test_sundry.py | 44 import html.entities namespace
|
H A D | test_sax.py | 961 self.entities = [] 964 self.entities.append((publicId, systemId)) 1000 resolver.entities, [(None, 'unsupported://non-existing')] 1013 self.assertEqual(resolver.entities, [])
|
H A D | multibytecodec_support.py | 87 from html.entities import codepoint2name
|
H A D | test_codeccallbacks.py | 2 import html.entities namespace 83 # replace unencodable characters which numeric character entities. 106 l.append("&%s;" % html.entities.codepoint2name[ord(c)])
|
/third_party/rust/crates/cxx/book/ |
H A D | build.js | 6 const Entities = require('html-entities').AllHtmlEntities; 7 const entities = new Entities(); 67 const target = entities.decode(node.text());
|
/third_party/python/Lib/xml/dom/ |
H A D | expatbuilder.py | 52 "ENTITIES": minidom.TypeInfo(None, "entities"), 181 if self._options.entities: 255 doctype.entities._seq = [] 308 # we don't care about parameter entities for the DOM 310 if not self._options.entities: 319 self.document.doctype.entities._seq.append(node) 321 del self.document.doctype.entities._seq[-1] 579 "http://xml.python.org/entities/fragment-builder/internal" 668 for i in range(doctype.entities.length): 669 entity = doctype.entities [all...] |
H A D | xmlbuilder.py | 32 entities = True variable in Options 122 ("entities", 0): [ 124 ("entities", 0)], 125 ("entities", 1): [ 126 ("entities", 1)], 148 ("entities", 0), 176 or options.entities
|
H A D | minidom.py | 1317 self.entities = ReadOnlySequentialNamedNodeMap() 1335 clone.entities._seq = [] 1341 for e in self.entities._seq: 1347 clone.entities._seq.append(entity) 1939 clone.entities._seq = [] 1947 for e in node.entities._seq: 1954 clone.entities._seq.append(entity)
|
/third_party/python/Doc/tools/extensions/ |
H A D | escape4chm.py | 10 from html.entities import codepoint2name
|
/third_party/python/Lib/html/ |
H A D | __init__.py | 6 from html.entities import html5 as _html5 128 HTML 5 named character references defined in html.entities.html5.
|
/third_party/libunwind/libunwind/doc/ |
H A D | libunwind-dynamic.tex | 56 are logically separate entities, optimizing code-generators will 57 generally interleave instructions from all three entities. For this
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
H A D | xmlparse.c | 97 # error XML_GE (for general entities) must be defined, non-empty, either 1 or 0 (0 to disable, 1 to enable; 1 is a common default) 2489 "limit on input amplification factor (from DTD and entities) breached"); in XML_ErrorString() 4098 * error in internal entities. in doIgnoreSection() 4728 /* Must not close doctype from within expanded parameter entities */ in doProlog() 5348 * parameter entities or we wouldn't have passed the outer in doProlog() 5356 * possible to create entities taking this code path that in doProlog() 5357 * are not internal entities, so fail the test above. in doProlog() 5367 /* cannot report skipped entities in declarations */ in doProlog()
|
/third_party/python/Modules/expat/ |
H A D | xmlparse.c | 2458 "limit on input amplification factor (from DTD and entities) breached"); in XML_ErrorString() 4181 * error in internal entities. in doIgnoreSection() 4809 /* Must not close doctype from within expanded parameter entities */ in doProlog() 5397 * parameter entities or we wouldn't have passed the outer in doProlog() 5405 * possible to create entities taking this code path that in doProlog() 5406 * are not internal entities, so fail the test above. in doProlog() 5416 /* cannot report skipped entities in declarations */ in doProlog() 5825 // If there are more open entities we want to stop right here and have the in internalEntityProcessor()
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | [all...] |
H A D | tsc.js | [all...] |
H A D | tsserverlibrary.js | [all...] |
H A D | typescript.js | [all...] |
H A D | typescriptServices.js | [all...] |
H A D | tsserver.js | [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |