/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
create-html-entity-table | 35 ENTITY = 0 38 def convert_entity_to_cpp_name(entity): 40 if entity[-1] == ";": 41 return "%sSemicolon%s" % (entity[:-1], postfix) 42 return "%s%s" % (entity, postfix) 45 def convert_entity_to_uchar_array(entity): 46 return "{'%s'}" % "', '".join(entity) 74 entries.sort(key = lambda entry: entry[ENTITY]) 104 // THIS FILE IS GENERATED BY WebCore/html/parser/create-html-entity-table 117 convert_entity_to_cpp_name(entry[ENTITY]), [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_sync_data_unittest.cc | 27 sync_pb::EntitySpecifics entity; local 28 sync_pb::ExtensionSpecifics* extension_specifics = entity.mutable_extension(); 36 syncer::SyncData::CreateLocalData("sync_tag", "non_unique_title", entity); 52 sync_pb::EntitySpecifics entity; local 53 sync_pb::ExtensionSpecifics* input_extension = entity.mutable_extension(); 61 syncer::SyncData::CreateLocalData("sync_tag", "non_unique_title", entity);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getNamedItemNS03.java | 34 * Entity nodes are not namespaced and should not be retrievable using 66 Entity entity; local 73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1"); 74 assertNull("entityNull", entity);
|
importNode09.java | 36 * The importedNode is of type Entity. 38 * Retrieve entity "ent6" from staffNS.xml document. 40 * Method should return a node of type Entity whose publicId, systemId and 74 Entity entity2; 75 Entity entity1; 87 entity2 = (Entity) entityList.getNamedItem("ent6"); 88 entity1 = (Entity) doc.importNode(entity2, false);
|
importNode12.java | 36 * The importedNode is of type Entity. 38 * Retrieve entity "ent4" from staffNS.xml document. 40 * Method should return a node of type Entity whose descendant is copied. 73 Entity entity2; 74 Entity entity1; 86 entity2 = (Entity) entityList.getNamedItem("ent4"); 87 entity1 = (Entity) doc.importNode(entity2, true);
|
/libcore/dom/src/test/resources/ |
hc_staff.xhtml | 5 <!ENTITY alpha "α"> 6 <!ENTITY beta "β"> 7 <!ENTITY gamma "γ"> 8 <!ENTITY delta "δ"> 9 <!ENTITY epsilon "ε"> 10 <!ENTITY alpha "ζ">
|
hc_staff.xml | 5 <!ENTITY alpha "α"> 6 <!ENTITY beta "β"> 7 <!ENTITY gamma "γ"> 8 <!ENTITY delta "δ"> 9 <!ENTITY epsilon "ε"> 10 <!ENTITY alpha "ζ">
|
/external/clang/include/clang/Sema/ |
Initialization.h | 40 /// \brief Describes an entity that is being initialized. 43 /// \brief Specifies the kind of entity being initialized. 45 /// \brief The entity being initialized is a variable. 47 /// \brief The entity being initialized is a function parameter. 49 /// \brief The entity being initialized is the result of a function call. 51 /// \brief The entity being initialized is an exception object that 54 /// \brief The entity being initialized is a non-static data member 57 /// \brief The entity being initialized is an element of an array. 59 /// \brief The entity being initialized is an object (or array of 62 /// \brief The entity being initialized is a temporary object [all...] |
/external/apache-http/src/org/apache/http/entity/ |
BufferedHttpEntity.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/BufferedHttpEntity.java $ 32 package org.apache.http.entity; 43 * A wrapping entity that buffers it content if necessary. 44 * The buffered entity is always repeatable. 45 * If the wrapped entity is repeatable itself, calls are passed through. 46 * If the wrapped entity is not repeatable, the content is read into a 59 public BufferedHttpEntity(final HttpEntity entity) throws IOException { 60 super(entity); 61 if (!entity.isRepeatable() || entity.getContentLength() < 0) [all...] |
HttpEntityWrapper.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/HttpEntityWrapper.java $ 32 package org.apache.http.entity; 46 * should not be delegated to the wrapped entity. 54 /** The wrapped entity. */ 58 * Creates a new entity wrapper. 60 * @param wrapped the entity to wrap 67 ("wrapped entity must not be null");
|
/external/wpa_supplicant_8/src/ap/ |
ap_mlme.c | 40 * relationship with a specific peer MAC entity 45 * authentication relationship with a specific peer MAC entity that 47 * that specific peer MAC entity. 66 * authentication relationship with a specific peer MAC entity 72 * authentication relationship with a specific peer MAC entity. 89 * a specific peer MAC entity 94 * association with a specific peer MAC entity that resulted from an 95 * association procedure that was initiated by that specific peer MAC entity. 112 * with a specific peer MAC entity 117 * reassociation with a specific peer MAC entity that resulted from [all...] |
/libcore/luni/src/main/java/org/xml/sax/ext/ |
DeclHandler.java | 76 * "ID", "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", 83 * appropriately normalized and with entity and character 105 * Report an internal entity declaration. 107 * <p>Only the effective (first) declaration for each entity 111 * @param name The name of the entity. If it is a parameter 112 * entity, the name will begin with '%'. 113 * @param value The replacement text of the entity. 123 * Report a parsed external entity declaration. 125 * <p>Only the effective (first) declaration for each entity 131 * @param name The name of the entity. If it is a paramete [all...] |
Locator2.java | 12 * SAX2 extension to augment the entity information provided 36 * Returns the version of XML used for the entity. This will 37 * normally be the identifier from the current entity's 42 * the entity's text, or null if that information is not yet 48 * Returns the name of the character encoding for the entity. 57 * to provide an entity's character stream, this method returns the 70 * * the entity's text, or null if this was not provided for a *
|
/external/apache-http/src/org/apache/http/client/methods/ |
HttpEntityEnclosingRequestBase.java | 52 private HttpEntity entity; field in class:HttpEntityEnclosingRequestBase 59 return this.entity; 62 public void setEntity(final HttpEntity entity) { 63 this.entity = entity; 75 if (this.entity != null) { 76 clone.entity = (HttpEntity) CloneUtils.clone(this.entity);
|
/external/apache-http/src/org/apache/http/impl/client/ |
EntityEnclosingRequestWrapper.java | 57 private HttpEntity entity; field in class:EntityEnclosingRequestWrapper 62 this.entity = request.getEntity(); 66 return this.entity; 69 public void setEntity(final HttpEntity entity) { 70 this.entity = entity; 80 return this.entity == null || this.entity.isRepeatable();
|
/external/bluetooth/bluedroid/stack/include/ |
port_ext.h | 21 * This file contains external definitions of Port Emulation entity unit 30 /* Port emulation entity Entry Points */
|
/libcore/luni/src/main/java/javax/xml/transform/ |
SourceLocator.java | 32 * entity or of the external parsed entity in which the markup that 45 * entity or of the external parsed entity in which the markup that 66 * in the document entity or external parsed entity where the 83 * in the document entity or external parsed entity where the
|
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/ |
cld_htmlutils.h | 9 // Writes entity value to dst. Returns take(src), put(dst) byte counts
|
cld_htmlutils_windows.cc | 8 // Writes entity value to dst. Returns take(src), put(dst) byte counts 20 // Skip entity in the source. 26 // Report a bogus entity (space).
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
Body.java | 26 * Encapsulates the body of an entity (see RFC 2045).
38 Entity getParent();
45 void setParent(Entity parent);
|
/external/clang/lib/Sema/ |
SemaAccess.cpp | 150 AccessTarget(const AccessedEntity &Entity) 151 : AccessedEntity(Entity) { [all...] |
/frameworks/base/core/java/android/content/ |
Entity.java | 33 public final class Entity { 37 public Entity(ContentValues values) { 51 mSubValues.add(new Entity.NamedContentValues(uri, values)); 66 sb.append("Entity: ").append(getEntityValues()); 67 for (Entity.NamedContentValues namedValue : getSubValues()) {
|
/external/apache-http/src/org/apache/http/conn/ |
BasicManagedEntity.java | 38 import org.apache.http.entity.HttpEntityWrapper; 42 * An entity that releases a {@link ManagedClientConnection connection}. 44 * typically <i>not</i> return a managed entity, but you can replace 45 * the unmanaged entity in the response with a managed one. 66 * Creates a new managed entity that can release a connection. 68 * @param entity the entity of which to wrap the content. 69 * Note that the argument entity can no longer be used 71 * managed entity. 75 public BasicManagedEntity(HttpEntity entity, [all...] |
/frameworks/base/core/java/android/app/backup/ |
BackupDataInputStream.java | 24 * entity's data during a restore operation. Used by {@link BackupHelper} classes within the {@link 28 * is called, the current entity's header has already been read from the underlying 29 * {@link BackupDataInput}. The entity's key string and total data size are available 52 * Read one byte of entity data from the stream, returning it as 75 * data exists within the entity to fulfill this request, only as much data 77 * @return The number of bytes of data read, or zero if all of the entity's 85 * Read enough entity data into a byte array to fill the array. 90 * @return The number of bytes of data read, or zero if all of the entity's 98 * Report the key string associated with this entity within the backup data set. 100 * @return The key string for this entity, equivalent to callin [all...] |
/external/chromium_org/tools/deep_memory_profiler/visualizer/ |
services.py | 16 """Profiler entity to store json data. Use run_id as its key. 28 """Create Profiler entity in database of uploaded file. Return run_id.""" 44 """Get Profiler entity from database of given run_id.""" 45 # Get entity key. 78 """Create Template entity for user to share.""" 90 """Get Template entity of given tmpl_id generated by ndb.Key.""" 91 # Get entity key.
|