Home
last modified time | relevance | path

Searched refs:entities (Results 1 – 25 of 529) sorted by relevance

12345678910>>...22

/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
DLimit.java41 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/
Dtest_django_storage.py61 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/
Dparse_html5_entities.py15 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/
Dsaxutils.py18 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': '&#10;', '\r': '&#13;', '\t':'&#9;'})
61 data = escape(data, entities)
/external/python/cpython2/Lib/xml/sax/
Dsaxutils.py23 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': '&#10;', '\r': '&#13;', '\t':'&#9;'})
66 data = escape(data, entities)
/external/libxml2/result/HTML/
Dentities.html.err1 ./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/
Dhtml.entities.rst1 :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`
Dxml.sax.utils.rst19 .. 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={})
Dxml.rst73 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.
Dxml.sax.handler.rst34 (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/
Dxml-tree.c120 **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/
Dxml.sax.utils.rst18 .. 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])
Dxml.rst54 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.
Dxml.sax.handler.rst33 (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/
Dlibxml2.vcp259 "..\..\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/
Dstorage.py57 entities = self.model_class.objects.filter(**query)
58 if len(entities) > 0:
59 credential = getattr(entities[0], self.property_name)
/external/syzkaller/dashboard/app/
Daccess_test.go52 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/
DExample2_24Test.java164 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/
DTODO29 - 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 …]
Dentities.c226 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/
DSanitizerSpecialCaseList.rst12 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/
Dinvalid-typename.m9 entities:(bycopy NSArray /* ISDEntity */ *)entities
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DCharInfo.java179 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/
Dtest_minidom.py31 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/
Dtest_minidom.py34 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 …]

12345678910>>...22