Home
last modified time | relevance | path

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

1234567891011

/external/chromium_org/sync/engine/
Dsync_directory_commit_contribution.cc35 google::protobuf::RepeatedPtrField<sync_pb::SyncEntity> entities; in Build() local
38 sync_pb::SyncEntity* entity = entities.Add(); in Build()
44 return new SyncDirectoryCommitContribution(metahandles, entities, dir); in Build()
145 const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity>& entities, in SyncDirectoryCommitContribution() argument
149 entities_(entities), in SyncDirectoryCommitContribution()
Dsync_directory_commit_contribution.h81 const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity>& entities,
/external/clang/test/SemaObjC/
Dinvalid-typename.m9 entities:(bycopy NSArray /* ISDEntity */ *)entities
/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 he wants to
55 expression, specifying the names of the entities, optionally followed by
/external/chromium_org/third_party/libxml/src/
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.c219 if (dtd->entities == NULL) in xmlAddEntity()
220 dtd->entities = xmlHashCreateDict(0, dict); in xmlAddEntity()
221 table = dtd->entities; in xmlAddEntity()
484 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) { in xmlGetDtdEntity()
485 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDtdEntity()
508 if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) { in xmlGetDocEntity()
509 table = (xmlEntitiesTablePtr) doc->intSubset->entities; in xmlGetDocEntity()
516 (doc->extSubset->entities != NULL)) { in xmlGetDocEntity()
517 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDocEntity()
DNEWS130 Fix a regression in streaming entities support (Daniel Veillard),
133 reader bug fix with entities (Daniel Veillard),
134 use options from current parser ctxt for external entities (Rob Richards),
141 reuse options from current parser for entities (Rob Richards),
247 functions on memory errors, BOM handling in external parsed entities
372 (Kasimier), warning on entities processing, XHTML script and style
378 when parsing entities (with Michael Day), fix entities behaviour when
387 HTML entities in attributes parsing, HTML minimized attribute values,
403 xmlIO.c(Kjartan Maraas), entities in XSD validation (Kasimier Buchcik),
526 xmlGetLineNo fixes, bug on entities handling, entity name extraction in
[all …]
/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/libvpx/libvpx/examples/
Dgen_example_doxy.php121 $entities = array ('|&amp;|'
129 $input = preg_replace($entities, $characters, $input);
/external/libxml2/
Dentities.c219 if (dtd->entities == NULL) in xmlAddEntity()
220 dtd->entities = xmlHashCreateDict(0, dict); in xmlAddEntity()
221 table = dtd->entities; in xmlAddEntity()
484 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) { in xmlGetDtdEntity()
485 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDtdEntity()
508 if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) { in xmlGetDocEntity()
509 table = (xmlEntitiesTablePtr) doc->intSubset->entities; in xmlGetDocEntity()
516 (doc->extSubset->entities != NULL)) { in xmlGetDocEntity()
517 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDocEntity()
DAndroid.mk8 entities.c \
/external/expat/doc/
Dxmlwf.sgml135 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.
323 Turns on parsing external entities.
327 entities, or even expand entities at all.
328 Expat always expands internal entities (?),
332 External entities are simply entities that obtain their
342 And here are some examples of external entities:
/external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
DPHP SmartyPants Readme.txt21 characters into "smart" typographic punctuation HTML entities.
26 * Straight quotes (`"` and `'`) into "curly" quote HTML entities
28 entities
29 * Dashes (`--` and `---`) into en- and em-dash entities
181 turning the HTML entities produced by SmartyPants into their ASCII
229 educates normal quotes, not entities (because ordinarily, entities
235 `&quot;` entities into regular quotes so SmartyPants can educate
264 side effect of publishing curly quote HTML entities is that it makes
270 which is why they need to be encoded as HTML entities.
/external/tinyxml2/
Dtinyxml2.cpp71 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/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentType.h42 NamedNodeMap* entities() const { return 0; } in entities() function
DDocumentType.idl25 [MeasureAs=DocumentTypeEntities] readonly attribute NamedNodeMap entities; // Removed from DOM4.
/external/chromium/third_party/libevent/
Devent_rpcgen.py1277 entities = []
1286 entities.extend(ProcessStruct(data))
1288 return entities
1393 entities = Parse(fp)
1405 for entry in entities:
1409 for entry in entities:
1418 for entry in entities:
/external/chromium_org/third_party/libevent/
Devent_rpcgen.py1277 entities = []
1286 entities.extend(ProcessStruct(data))
1288 return entities
1393 entities = Parse(fp)
1405 for entry in entities:
1409 for entry in entities:
1418 for entry in entities:
/external/valgrind/main/docs/internals/
Dmodule-structure.txt15 entities in a scheme where all top-level entities are modules.
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMHelper.java1136 NamedNodeMap entities = doctype.getEntities(); in getUnparsedEntityURI() local
1137 if(null == entities) in getUnparsedEntityURI()
1139 Entity entity = (Entity) entities.getNamedItem(name); in getUnparsedEntityURI()
/external/bzip2/
DREADME.XML.STUFF20 The file "entities.xml" must be edited to reflect current
DMakefile197 $(DISTNAME)/entities.xml \
206 entities.xml manual.xml
/external/chromium_org/third_party/libxml/src/win32/
DMakefile108 $(XML_INTDIR)\entities.obj\
153 $(XML_INTDIR_A)\entities.obj\
198 $(XML_INTDIR_A_DLL)\entities.obj\
DMakefile.msvc108 $(XML_INTDIR)\entities.obj\
153 $(XML_INTDIR_A)\entities.obj\
198 $(XML_INTDIR_A_DLL)\entities.obj\
/external/chromium_org/tools/gn/secondary/third_party/libxml/
DBUILD.gn44 "src/include/libxml/entities.h",
94 "src/entities.c",

1234567891011