/external/icu4c/data/xml/brkitr/ |
root.xml | 7 <!ENTITY % icu SYSTEM "http://www.unicode.org/repos/cldr/trunk/common/dtd/ldmlICU.dtd">
|
/external/icu4c/data/xml/main/ |
bg.xml | 7 <!ENTITY % icu SYSTEM "http://www.unicode.org/repos/cldr/trunk/common/dtd/ldmlICU.dtd">
|
de.xml | 7 <!ENTITY % icu SYSTEM "http://www.unicode.org/repos/cldr/trunk/common/dtd/ldmlICU.dtd">
|
root.xml | 7 <!ENTITY % icu SYSTEM "http://www.unicode.org/repos/cldr/trunk/common/dtd/ldmlICU.dtd">
|
zh_Hant.xml | 7 <!ENTITY % icu SYSTEM "http://www.unicode.org/repos/cldr/trunk/common/dtd/ldmlICU.dtd">
|
/external/kernel-headers/original/asm-mips/ |
timex.h | 27 * Only the low 32 bits are available as a continuously counting entity.
|
/external/libvpx/ |
PATENTS | 17 entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
/external/libyuv/files/ |
PATENTS | 17 institution of patent litigation against any entity (including a
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
ContentLanguage.java | 42 * The Content-Language entity-header field describes the natural 43 * language(s) of the intended audience for the enclosed entity. Note 45 * the entity-body. 69 * However, just because multiple languages are present within an entity
|
/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; ]>
|
/external/webkit/LayoutTests/fast/dom/EntityReference/script-tests/ |
readonly-exceptions.js | 10 // nodeValue is defined to be null for Entity Reference nodes, and thus should silently fail to modify
|
/external/webkit/Source/WebCore/dom/ |
Entity.idl | 22 interface Entity : Node {
|
/external/webp/ |
PATENTS | 17 entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
/external/webrtc/src/ |
PATENTS | 17 institution of patent litigation against any entity (including a
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
TextImpl.java | 73 // TODO: support entity references. This code should expand through 74 // the child elements of entity references. 85 // TODO: support entity references. This code should expand and replace 86 // the child elements of entity references.
|
/packages/apps/Email/src/org/apache/james/mime4j/message/ |
TextBody.java | 27 * Encapsulates the contents of a <code>text/*</code> entity body.
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/ |
SettingsRedirector.java | 30 * a separate entity in the framework for things such as data usage. Links from those places to
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
XSLTElementProcessor.java | 80 * Resolve an external entity. 117 * Receive notification of an unparsed entity declaration. 121 * @param name The entity name. 122 * @param publicId The entity public identifier, or null if not 124 * @param systemId The entity system identifier. 241 * Receive notification of a skipped entity. 245 * @param name The name of the skipped entity.
|
/external/clang/include/clang/Sema/ |
Scope.h | 137 /// Entity - The entity with which this scope is associated. For 138 /// example, the entity of a class scope is the class itself, the 139 /// entity of a function scope is a function, etc. This field is 141 void *Entity; 230 void* getEntity() const { return Entity; } 231 void setEntity(void *E) { Entity = E; }
|
/external/quake/quake/src/QW/client/ |
cl_tent.c | 28 int entity; member in struct:__anon11513 131 // override any beam with the same entity 133 if (b->entity == ent) 135 b->entity = ent; 148 b->entity = ent; 367 if (b->entity == cl.playernum+1) // entity 0 is the world
|
protocol.h | 66 #define svc_setview 5 // [short] entity number 113 #define svc_muzzleflash 39 // [short] entity 183 // of entity number and 7 bits of flags 189 #define U_REMOVE (1<<14) // REMOVE this entity, don't add it 199 #define U_SOLID (1<<6) // the entity should be solid for prediction 204 // the sound field has bits 0-2: channel, 3-12: entity 218 // temp entity events
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
UrlOpener.java | 243 HttpEntity entity = response.getEntity(); local 245 if (entity != null) { 247 // in case another pass to the Http Client will be performed, close the entity. 248 entity.getContent().close(); 251 // entity's content. 256 InputStream is = new FilterInputStream(entity.getContent()) { 277 // It's ok to not have an entity (e.g. nothing to download) for a 304
|
/frameworks/base/core/java/android/net/http/ |
Request.java | 27 import org.apache.http.entity.InputStreamEntity; 127 // it is ok to have null entity for BasicHttpEntityEnclosingRequest. 265 HttpEntity entity = null; local 269 entity = httpClientConnection.receiveResponseEntity(header); 276 if (entity != null) { 277 InputStream is = entity.getContent(); 280 Header contentEncoding = entity.getContentEncoding(); 352 mConnection.setCanPersist(entity, statusLine.getProtocolVersion(), 463 * Decide whether a response comes with an entity. 466 * indicate responses with an entity [all...] |