/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/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/ImageMagick/MagickCore/ |
D | xml-tree.c | 119 **entities, member 519 for (i=NumberPredefinedEntities; root->entities[i] != (char *) NULL; i+=2) in DestroyXMLTreeRoot() 520 root->entities[i+1]=DestroyString(root->entities[i+1]); in DestroyXMLTreeRoot() 521 root->entities=(char **) RelinquishMagickMemory(root->entities); in DestroyXMLTreeRoot() 1370 static char *ParseEntities(char *xml,char **entities,int state) in ParseEntities() argument 1467 while ((entities[i] != (char *) NULL) && in ParseEntities() 1468 (strncmp(xml+1,entities[i],strlen(entities[i])) != 0)) in ParseEntities() 1470 if (entities[i++] == (char *) NULL) in ParseEntities() 1473 if (entities[i] != (char *) NULL) in ParseEntities() 1478 length=strlen(entities[i]); in ParseEntities() [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/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/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/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 | 221 if (dtd->entities == NULL) in xmlAddEntity() 222 dtd->entities = xmlHashCreateDict(0, dict); in xmlAddEntity() 223 table = dtd->entities; in xmlAddEntity() 486 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) { in xmlGetDtdEntity() 487 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDtdEntity() 510 if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) { in xmlGetDocEntity() 511 table = (xmlEntitiesTablePtr) doc->intSubset->entities; in xmlGetDocEntity() 518 (doc->extSubset->entities != NULL)) { in xmlGetDocEntity() 519 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDocEntity()
|
D | runxmlconf.c | 298 xmlChar *entities = NULL; in xmlconfTestItem() local 341 entities = xmlGetProp(cur, BAD_CAST "ENTITIES"); in xmlconfTestItem() 342 if (!xmlStrEqual(entities, BAD_CAST "none")) { in xmlconfTestItem() 421 if (entities != NULL) in xmlconfTestItem() 422 xmlFree(entities); in xmlconfTestItem()
|
D | autogen.sh | 39 test -f entities.c || {
|
D | Makefile.win | 17 SHARED_OBJS = entities.obj parser.obj tree.obj SAX.obj
|
/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/expat/doc/ |
D | xmlwf.sgml | 135 external entities (see the <option>-x</option> option). 237 entities. 241 entities. <option>-p</option> tells it to always parse them. 275 references to parameter entities. 322 Turns on parsing external entities. 326 entities, or even expand entities at all. 327 Expat always expands internal entities (?), 331 External entities are simply entities that obtain their 341 And here are some examples of external entities:
|
/external/tinyxml2/ |
D | tinyxml2.cpp | 71 static const Entity entities[NUM_ENTITIES] = variable 210 if ( strncmp( p+1, entities[i].pattern, entities[i].length ) == 0 in GetStr() 211 && *(p+entities[i].length+1) == ';' ) in GetStr() 214 *q = entities[i].value; in GetStr() 216 p += entities[i].length + 2; in GetStr() 1673 TIXMLASSERT( entities[i].value < ENTITY_RANGE ); in XMLPrinter() 1674 if ( entities[i].value < ENTITY_RANGE ) { in XMLPrinter() 1675 entityFlag[ (int)entities[i].value ] = true; in XMLPrinter() 1748 if ( entities[i].value == *q ) { in PrintString() 1749 Print( "&%s;", entities[i].pattern ); in PrintString()
|
/external/libxml2/result/ |
D | ent3.rde | 4 Test of entities in attributes.
|
D | ent3.rdr | 4 Test of entities in attributes.
|
D | ent3.sax | 10 Test of entities in attribu, 35)
|
D | ent3.sax2 | 10 Test of entities in attribu, 35)
|
/external/syslinux/core/fs/pxe/ |
D | http_readdir.c | 69 static const struct html_entity entities[] = { variable 355 for (ent = entities; ent->ucs; ent++) { in emit()
|
/external/libxml2/os400/libxmlrpg/ |
D | entities.rpgle | 1 * Summary: interface for the XML entities handling 58 * All entities are stored in an hash table. 59 * There is 2 separate hash tables for global and parameter entities.
|
/external/libxml2/doc/ |
D | buildDocBookCatalog | 276 echo could not locate iso-amsb.ent of ISO DocBook entities 290 echo could not locate ISO DocBook entities 294 echo Found ISO DocBook entities in $isodir
|
/external/valgrind/docs/internals/ |
D | module-structure.txt | 15 entities in a scheme where all top-level entities are modules.
|
/external/libxml2/include/libxml/ |
D | Makefile.am | 7 entities.h \
|
/external/libevent/ |
D | event_rpcgen.py | 1514 entities = [] 1523 entities.extend(ProcessStruct(factory, data)) 1525 return entities 1674 entities = Parse(factory, fp) 1683 for entry in entities: 1687 for entry in entities: 1696 for entry in entities:
|