HomeSort by relevance Sort by last modified time
    Searched full:entities (Results 1 - 25 of 1465) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjC/
invalid-typename.m 9 entities:(bycopy NSArray /* ISDEntity */ *)entities
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockResolver.java 28 * A helper class for resolving entities.
32 private Map<String, InputSource> entities = new HashMap<String, InputSource>(); field in class:MockResolver
35 entities.put("[" + publicId + ":" + systemId + "]", source);
39 entities.remove("[" + publicId + ":" + systemId + "]");
44 return entities.get("[" + publicId + ":" + systemId + "]");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCEntitiesSetNamedItemNS.java 12 * An attempt to add an element to the named node map returned by entities
53 // NamedNodeMap entities;
62 // entities = docType.getEntities();
63 // assertNotNull("entitiesNotNull", entities);
67 // entities.setNamedItemNS(elem);
HCEntitiesRemoveNamedItemNS.java 70 // NamedNodeMap entities;
78 // entities = docType.getEntities();
79 // assertNotNull("entitiesNotNull", entities);
82 // entities.removeNamedItemNS(
  /external/clang/test/CXX/basic/basic.link/
p9.cpp 7 // different kinds of entities.
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_htmlutils_windows.cc 11 // On Windows we do not have to do anything, browser expands HTML entities
17 // to CLD for language detection and just ignoring entities is good enough
18 // for testing. Later entities will be expanded by browser itself.
  /external/valgrind/main/cachegrind/docs/
cg_annotate-manpage.xml 4 [ <!ENTITY % vg-entities SYSTEM "../../docs/xml/vg-entities.xml"> %vg-entities; ]>
  /external/valgrind/main/docs/xml/
tech-docs.xml 4 [ <!ENTITY % vg-entities SYSTEM "vg-entities.xml"> %vg-entities; ]>
  /external/valgrind/main/massif/docs/
ms_print-manpage.xml 4 [ <!ENTITY % vg-entities SYSTEM "../../docs/xml/vg-entities.xml"> %vg-entities; ]>
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeentitynodename.java 31 * Check the nodeName of the entity returned by DocumentType.entities.getNamedItem("ent1").
60 NamedNodeMap entities; local
66 entities = docType.getEntities();
67 assertNotNull("entitiesNotNull", entities);
68 entityNode = entities.getNamedItem("ent1");
nodeentitynodeattributes.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
nodeentitynodetype.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
nodeentitynodevalue.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
hc_entitiessetnameditem1.java 31 * An attempt to add an element to the named node map returned by entities should
63 NamedNodeMap entities; local
74 entities = docType.getEntities();
75 assertNotNull("entitiesNotNull", entities);
79 retval = entities.setNamedItem(elem);
  /external/apache-http/src/org/apache/http/
HttpEntity.java 40 * Entities can be found in some
44 * In some places, the JavaDoc distinguishes three kinds of entities,
49 * entities being received from a {@link HttpConnection connection}.
50 * {@link #isStreaming Streamed} entities are generally not
55 * Self-contained entities are generally {@link #isRepeatable repeatable}.
61 * entities. For entities that are created by an application and only sent
64 * to consider non-repeatable entities as streamed, and those that are
87 * For entities that are received, it can also indicate whether
90 * The behavior of wrapping entities is implementation dependent
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
EntityResolver.java 12 * Basic interface for resolving entities.
22 * for external entities, it must implement this interface and
28 * external entities (including the external DTD subset and external
29 * parameter entities, if any) before including them.</p>
73 * Allow the application to resolve external entities.
76 * entity except the top-level document entity. Such entities include
77 * the external DTD subset and external parameter entities referenced
79 * parameter entities), and external general entities referenced
81 * entities). The application may request that the parser locat
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapgetnameditemns01.java 35 * from a NamedNodeMap of this DocumentTypes entities and notations.
36 * Both should be null since entities and notations are not namespaced.
74 NamedNodeMap entities; local
84 entities = docType.getEntities();
85 assertNotNull("entitiesNotNull", entities);
88 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
getNamedItemNS03.java 65 NamedNodeMap entities; local
71 entities = docType.getEntities();
72 assertNotNull("entitiesNotNull", entities);
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
hc_entitiessetnameditemns1.java 31 * An attempt to add an element to the named node map returned by entities should
60 NamedNodeMap entities; local
71 entities = docType.getEntities();
72 assertNotNull("entitiesNotNull", entities);
76 retval = entities.setNamedItemNS(elem);
  /external/valgrind/main/callgrind/docs/
callgrind_annotate-manpage.xml 4 [ <!ENTITY % vg-entities SYSTEM "../../docs/xml/vg-entities.xml"> %vg-entities; ]>
callgrind_control-manpage.xml 4 [ <!ENTITY % vg-entities SYSTEM "../../docs/xml/vg-entities.xml"> %vg-entities; ]>
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 98 // Only allow allocation of preprocessed entities using the allocator
118 // Make vanilla 'new' and 'delete' illegal for preprocessed entities.
275 /// preprocessed entities that \p Range encompasses.
296 /// \brief The set of preprocessed entities in this record, in order they
300 /// \brief The set of preprocessed entities in this record that have been
308 /// Negative values are used to indicate preprocessed entities
310 /// indicate preprocessed entities introduced by the current preprocessor.
311 /// Value -1 corresponds to element 0 in the loaded entities vector,
312 /// value -2 corresponds to element 1 in the loaded entities vector, etc.
313 /// Value 0 is an invalid value, the index to local entities is 1-based
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 23 def escape(data, entities={}):
27 the optional entities parameter. The keys and values must all be
35 if entities:
36 data = __dict_replace(data, entities)
39 def unescape(data, entities={}):
43 the optional entities parameter. The keys and values must all be
48 if entities:
49 data = __dict_replace(data, entities)
53 def quoteattr(data, entities={}):
61 the optional entities parameter. The keys and values must all b
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 23 def escape(data, entities={}):
27 the optional entities parameter. The keys and values must all be
35 if entities:
36 data = __dict_replace(data, entities)
39 def unescape(data, entities={}):
43 the optional entities parameter. The keys and values must all be
48 if entities:
49 data = __dict_replace(data, entities)
53 def quoteattr(data, entities={}):
61 the optional entities parameter. The keys and values must all b
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
DocumentType.java 19 * to the list of entities that are defined for the document, and little
34 * A <code>NamedNodeMap</code> containing the general entities, both
35 * external and internal, declared in the DTD. Parameter entities are
45 * <br>The DOM Level 2 does not support editing entities, therefore
46 * <code>entities</code> cannot be altered in any way.

Completed in 409 milliseconds

1 2 3 4 5 6 7 8 91011>>