/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/ |
D | Limit.java | 41 final Map<CounterEntity, String> entities = new HashMap<CounterEntity, String>(); 42 entities.put(CounterEntity.INSTRUCTION, "instructions"); in entities.put() 43 entities.put(CounterEntity.BRANCH, "branches"); in entities.put() 44 entities.put(CounterEntity.COMPLEXITY, "complexity"); in entities.put() 45 entities.put(CounterEntity.LINE, "lines"); in entities.put() 46 entities.put(CounterEntity.METHOD, "methods"); in entities.put() 47 entities.put(CounterEntity.CLASS, "classes"); in entities.put() 48 ENTITY_NAMES = Collections.unmodifiableMap(entities);
|
/external/python/oauth2client/tests/contrib/django_util/ |
D | test_django_storage.py | 61 entities = [ 64 filter_mock = mock.Mock(return_value=entities) 77 entities = [] 78 filter_mock = mock.Mock(return_value=entities) 91 entities = [ 94 filter_mock = mock.Mock(return_value=entities) 125 entities = fake_entities 127 filter_mock = mock.Mock(return_value=entities)
|
/external/python/cpython3/Tools/scripts/ |
D | parse_html5_entities.py | 15 from html.entities import html5 25 def create_dict(entities): argument 28 for name, value in entities.items(): 53 def write_items(entities, file=sys.stdout): argument 63 keys = sorted(entities.keys()) 67 print(' {!r}: {!a},'.format(name, entities[name]), file=file)
|
/external/python/cpython3/Lib/xml/sax/ |
D | saxutils.py | 18 def escape(data, entities={}): argument 30 if entities: 31 data = __dict_replace(data, entities) 34 def unescape(data, entities={}): argument 43 if entities: 44 data = __dict_replace(data, entities) 48 def quoteattr(data, entities={}): argument 59 entities = entities.copy() 60 entities.update({'\n': ' ', '\r': ' ', '\t':'	'}) 61 data = escape(data, entities)
|
/external/python/cpython2/Lib/xml/sax/ |
D | saxutils.py | 23 def escape(data, entities={}): argument 35 if entities: 36 data = __dict_replace(data, entities) 39 def unescape(data, entities={}): argument 48 if entities: 49 data = __dict_replace(data, entities) 53 def quoteattr(data, entities={}): argument 64 entities = entities.copy() 65 entities.update({'\n': ' ', '\r': ' ', '\t':'	'}) 66 data = escape(data, entities)
|
/external/libxml2/result/HTML/ |
D | entities.html.err | 1 ./test/HTML/entities.html:1: HTML parser error : htmlParseEntityRef: expecting ';' 4 ./test/HTML/entities.html:1: HTML parser error : htmlParseEntityRef: no name 7 ./test/HTML/entities.html:3: HTML parser error : htmlParseEntityRef: expecting ';' 10 ./test/HTML/entities.html:4: HTML parser error : htmlParseEntityRef: no name
|
/external/python/cpython3/Doc/library/ |
D | html.entities.rst | 1 :mod:`html.entities` --- Definitions of HTML general entities 4 .. module:: html.entities 5 :synopsis: Definitions of HTML general entities. 9 **Source code:** :source:`Lib/html/entities.py`
|
D | xml.sax.utils.rst | 19 .. function:: escape(data, entities={}) 24 *entities* parameter. The keys and values must all be strings; each key will be 26 ``'>'`` are always escaped, even if *entities* is provided. 29 .. function:: unescape(data, entities={}) 34 *entities* parameter. The keys and values must all be strings; each key will be 36 are always unescaped, even if *entities* is provided. 39 .. function:: quoteattr(data, entities={})
|
D | xml.rst | 73 1. :mod:`xml.etree.ElementTree` doesn't expand external entities and raises a 75 2. :mod:`xml.dom.minidom` doesn't expand external entities and simply returns 77 3. :mod:`xmlrpclib` doesn't expand external entities and omits them. 78 4. Since Python 3.7.1, external general entities are no longer processed by 84 uses multiple levels of nested entities. Each entity refers to another entity 91 entity expansion, too. Instead of nested entities it repeats one large entity 94 that forbid deeply-nested entities.
|
D | xml.sax.handler.rst | 34 (unparsed entities and attributes). 39 Basic interface for resolving entities. If you create an object implementing 41 the method in your object to resolve all external entities. 85 | true: Report all validation errors (implies external-general-entities and 86 external-parameter-entities). 93 | value: ``"http://xml.org/sax/features/external-general-entities"`` 94 | true: Include all external general (text) entities. 95 | false: Do not include external general entities. 101 | value: ``"http://xml.org/sax/features/external-parameter-entities"`` 102 | true: Include all external parameter entities, including the external DTD [all …]
|
/external/ImageMagick/MagickCore/ |
D | xml-tree.c | 120 **entities, member 520 for (i=NumberPredefinedEntities; root->entities[i] != (char *) NULL; i+=2) in DestroyXMLTreeRoot() 521 root->entities[i+1]=DestroyString(root->entities[i+1]); in DestroyXMLTreeRoot() 522 root->entities=(char **) RelinquishMagickMemory(root->entities); in DestroyXMLTreeRoot() 1371 static char *ParseEntities(char *xml,char **entities,int state) in ParseEntities() argument 1468 while ((entities[i] != (char *) NULL) && in ParseEntities() 1469 (strncmp(xml+1,entities[i],strlen(entities[i])) != 0)) in ParseEntities() 1471 if (entities[i++] == (char *) NULL) in ParseEntities() 1474 if (entities[i] != (char *) NULL) in ParseEntities() 1479 length=strlen(entities[i]); in ParseEntities() [all …]
|
/external/python/cpython2/Doc/library/ |
D | xml.sax.utils.rst | 18 .. function:: escape(data[, entities]) 23 *entities* parameter. The keys and values must all be strings; each key will be 25 ``'>'`` are always escaped, even if *entities* is provided. 28 .. function:: unescape(data[, entities]) 33 *entities* parameter. The keys and values must all be strings; each key will be 35 are always unescaped, even if *entities* is provided. 40 .. function:: quoteattr(data[, entities])
|
D | xml.rst | 54 like inline `DTD`_ (document type definition) with entities. 69 1. :mod:`xml.etree.ElementTree` doesn't expand external entities and raises a 71 2. :mod:`xml.dom.minidom` doesn't expand external entities and simply returns 73 3. :mod:`xmlrpclib` doesn't expand external entities and omits them. 78 uses multiple levels of nested entities. Each entity refers to another entity 85 entity expansion, too. Instead of nested entities it repeats one large entity 88 parsers against heavily nested entities.
|
D | xml.sax.handler.rst | 33 (unparsed entities and attributes). 38 Basic interface for resolving entities. If you create an object implementing 40 the method in your object to resolve all external entities. 84 | true: Report all validation errors (implies external-general-entities and 85 external-parameter-entities). 92 | value: ``"http://xml.org/sax/features/external-general-entities"`` 93 | true: Include all external general (text) entities. 94 | false: Do not include external general entities. 100 | value: ``"http://xml.org/sax/features/external-parameter-entities"`` 101 | true: Include all external parameter entities, including the external DTD [all …]
|
/external/libxml2/win32/wince/ |
D | libxml2.vcp | 259 "..\..\include\libxml\entities.h"\ 294 "..\..\include\libxml\entities.h"\ 327 "..\..\include\libxml\entities.h"\ 373 "..\..\include\libxml\entities.h"\ 406 "..\..\include\libxml\entities.h"\ 446 "..\..\include\libxml\entities.h"\ 481 "..\..\include\libxml\entities.h"\ 514 "..\..\include\libxml\entities.h"\ 560 "..\..\include\libxml\entities.h"\ 594 "..\..\include\libxml\entities.h"\ [all …]
|
/external/python/oauth2client/oauth2client/contrib/django_util/ |
D | storage.py | 57 entities = self.model_class.objects.filter(**query) 58 if len(entities) > 0: 59 credential = getattr(entities[0], self.property_name)
|
/external/syzkaller/dashboard/app/ |
D | access_test.go | 52 entities := []entity{ 81 entities = append(entities, []entity{ 150 entities = append(entities, entity{ 272 for _, ent := range entities { 297 for _, ent := range entities {
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
D | Example2_24Test.java | 164 private List<Entity> entities; field in Example2_24Test.Shape 167 return entities; in getEntities() 170 public Shape(List<Entity> entities) { in Shape() argument 171 this.entities = entities; in Shape()
|
/external/libxml2/ |
D | TODO | 29 - Better checking of external parsed entities TAG 1234 49 because of these string functions: entities.o, global.o, hash.o, tree.o, 98 - Add a DTD cache prefilled with xhtml DTDs and entities and a program to 143 Attributes are no problems since entities are accepted. 172 - extend validity checks to go through entities content instead of 180 - correct checking of '&' '%' on entities content. 181 - checking of PE/Nesting on entities declaration 190 - Allow parsed entities defined in the internal subset to override 213 - External entities loading: 215 - make sure it is alled for all external entities referenced [all …]
|
D | entities.c | 226 if (dtd->entities == NULL) in xmlAddEntity() 227 dtd->entities = xmlHashCreateDict(0, dict); in xmlAddEntity() 228 table = dtd->entities; in xmlAddEntity() 491 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) { in xmlGetDtdEntity() 492 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDtdEntity() 515 if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) { in xmlGetDocEntity() 516 table = (xmlEntitiesTablePtr) doc->intSubset->entities; in xmlGetDocEntity() 523 (doc->extSubset->entities != NULL)) { in xmlGetDocEntity() 524 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDocEntity()
|
/external/clang/docs/ |
D | SanitizerSpecialCaseList.rst | 12 sanitizer tools for certain source-level entities by providing a special 20 certain source-level entities to: 27 To achieve this, user may create a file listing the entities they want to 55 expression, specifying the names of the entities, optionally followed by
|
/external/clang/test/SemaObjC/ |
D | invalid-typename.m | 9 entities:(bycopy NSArray /* ISDEntity */ *)entities
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | CharInfo.java | 179 ResourceBundle entities = null; in CharInfo() local 194 entities = PropertyResourceBundle.getBundle(entitiesResource); in CharInfo() 198 if (entities != null) { in CharInfo() 199 Enumeration keys = entities.getKeys(); in CharInfo() 202 String value = entities.getString(name); in CharInfo()
|
/external/python/cpython3/Lib/test/ |
D | test_minidom.py | 31 doctype.entities._seq = [] 42 doctype.entities._seq.append(entity) 48 doctype.entities.item(0).ownerDocument = doc 730 and len(clone.entities) == len(doctype.entities) 731 and clone.entities.item(len(clone.entities)) is None 735 for i in range(len(doctype.entities)): 736 se = doctype.entities.item(i) 737 ce = clone.entities.item(i) 769 and len(clone.entities) == 0 770 and clone.entities.item(0) is None [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_minidom.py | 34 doctype.entities._seq = [] 45 doctype.entities._seq.append(entity) 51 doctype.entities.item(0).ownerDocument = doc 605 and len(clone.entities) == len(doctype.entities) 606 and clone.entities.item(len(clone.entities)) is None 610 for i in range(len(doctype.entities)): 611 se = doctype.entities.item(i) 612 ce = clone.entities.item(i) 644 and len(clone.entities) == 0 645 and clone.entities.item(0) is None [all …]
|