/external/chromium_org/chrome/browser/sync/sessions2/ |
tab_node_pool2.cc | 72 sync_pb::EntitySpecifics entity; local 73 sync_pb::SessionSpecifics* specifics = entity.mutable_session(); 81 entity)));
|
/external/chromium_org/sync/api/ |
sync_data.cc | 50 sync_pb::SyncEntity* entity, 55 immutable_entity_(entity) {} 73 sync_pb::SyncEntity entity; local 74 entity.set_client_defined_unique_tag(sync_tag); 75 entity.set_non_unique_name(non_unique_title); 76 entity.mutable_specifics()->CopyFrom(specifics); 77 return SyncData(kInvalidId, &entity, base::Time()); 85 sync_pb::SyncEntity entity; local 86 entity.mutable_specifics()->CopyFrom(specifics); 87 return SyncData(id, &entity, modification_time) [all...] |
/external/chromium_org/sync/engine/ |
sync_directory_commit_contribution.cc | 38 sync_pb::SyncEntity* entity = entities.Add(); local 40 commit_util::BuildCommitItem(entry, entity);
|
sync_directory_commit_contribution_unittest.cc | 53 const sync_pb::SyncEntity& entity, 56 response->set_non_unique_name(entity.name()); 57 response->set_version(entity.version() + 1); 58 response->set_parent_id_string(entity.parent_id_string()); 60 if (entity.id_string()[0] == '-') // Look for the - in 'c-1234' style IDs. 63 response->set_id_string(entity.id_string()); 149 const sync_pb::SyncEntity& entity = commit_message.entries(i); local 154 entity.id_string())); 201 sync_pb::SyncEntity entity = commit_message.entries(i); local 204 CreateSuccessfulCommitResponse(entity, entry_response) [all...] |
/external/chromium_org/sync/protocol/ |
proto_value_conversions_unittest.cc | 322 sync_pb::SyncEntity* entity = commit_message->add_entries(); local 323 entity->mutable_specifics(); 343 sync_pb::SyncEntity* entity = response->add_entries(); local 344 entity->mutable_specifics();
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
MarkupAccumulator.h | 52 // However, we cannot do this in a XML document because it does not have the entity reference defined (See the bug 19215). 61 UChar entity; member in struct:WebCore::EntityDescription
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
HtmlStripFunction.java | 32 // The maximum length of an entity (preceded by an &) 35 // The state the strip function can be, normal, in an amp escaped entity or 41 // Map of entity names to special characters. 98 // Holds the contents of an & (amp) entity before its decoded. 130 // Semi-colon terminates an entity, try and decode it. 146 // More than 8 chars, so not a valid entity, dump as plain text. 158 * Attempts to decode the entity provided, if it succeeds appends it to the out string. 160 * @param out the string builder to add the decoded entity to. 173 // Numbered entity. 179 // If the entity is not a numeric value, try looking it up by name 180 String entity = entityValues.get(entityName); local [all...] |
/external/jsilver/src/com/google/streamhtmlparser/util/ |
EntityResolver.java | 28 * entity which we will discard. 52 * <li><code>&<html-entity>;</code> where 53 * <code><html-entity></code> is one of <code>lt</code>, 67 * trailing characters before the start of an entity. 70 * characters part of an entity. 72 * an entity. The caller can then invoke <code>getEntity</code> 99 * How many characters to store as we are processing an entity. Once we 100 * reach that size, we know the entity is definitely invalid. The size 118 /** Storage for received until characters until an HTML entity is complete. */ 125 private String entity; field in class:EntityResolver [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
ScanHandler.java | 55 Reports an entity reference or character reference. 58 public void entity(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler 115 Returns the value of the last entity or character reference reported.
|
PYXScanner.java | 104 h.entity(buff, 1, size - 1);
|
Schema.java | 106 Add to or replace a character entity in this schema. 107 @param name Name of the entity 108 @param value Value of the entity 111 public void entity(String name, int value) { method in class:Schema 126 Get an entity value by name. 127 @param name Name of the entity 132 // System.err.println("%% Looking up entity " + name);
|
/hardware/samsung_slsi/exynos5/include/ |
exynos_v4l2.h | 142 struct media_entity *entity; member in struct:media_pad
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
documenttypegetentities.java | 86 Node entity; local 93 entity = (Node) entityList.item(indexN1007B); 94 name = entity.getNodeName();
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
namednodemapgetnameditemns01.java | 34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation "notation1" 76 Entity entity; local 88 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1"); 89 assertNull("entityNull", entity);
|
namednodemapsetnameditemns05.java | 34 * Retreive an entity and notation node and add the first notation to the 35 * notation node map and first entity node to the entity map. Since both these 76 Entity entity; local 87 entity = (Entity) entities.getNamedItem("ent1"); 93 newNode = entities.setNamedItemNS(entity);
|
namednodemapsetnameditemns10.java | 37 * Attempt to add an entity to a NamedNodeMap of attribute nodes, 77 Entity entity; local 86 entity = (Entity) entities.getNamedItem("ent1"); 94 newNode = attributes.setNamedItemNS(entity);
|
/packages/apps/Exchange/src/com/android/exchange/utility/ |
WbxmlResponseLogger.java | 27 import org.apache.http.entity.BufferedHttpEntity; 81 final HttpEntity entity = response.getEntity(); local 82 if (!shouldLogResponse(entity.getContentLength())) { 89 final Header encodingHeader = entity.getContentEncoding();
|
/external/apache-http/src/org/apache/http/protocol/ |
HttpService.java | 50 import org.apache.http.entity.ByteArrayEntity; 192 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local 193 if (entity != null) { 194 entity.consumeContent(); 228 ByteArrayEntity entity = new ByteArrayEntity(msg); local 229 entity.setContentType("text/plain; charset=US-ASCII"); 230 response.setEntity(entity);
|
/packages/apps/Exchange/src/com/android/exchange/service/ |
EasMeetingResponder.java | 6 import android.content.Entity; 132 // What we're doing here is to create an Entity that looks like an Event as it would be 135 final Entity entity = new Entity(entityValues); local 151 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues); 158 entity.addSubValue(Attendees.CONTENT_URI, organizerValues); 160 // Create a message from the Entity we've built. The message will have fields like 177 CalendarUtilities.createMessageForEntity(mContext, entity, flag,
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
SimpleWikiHelper.java | 190 HttpEntity entity = response.getEntity(); local 191 InputStream inputStream = entity.getContent();
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
SimpleWikiHelper.java | 197 HttpEntity entity = response.getEntity(); local 198 InputStream inputStream = entity.getContent();
|
/external/smack/src/com/kenai/jbosh/ |
ApacheHTTPResponse.java | 27 import org.apache.http.entity.ByteArrayEntity; 146 ByteArrayEntity entity = new ByteArrayEntity(data); local 147 entity.setContentType(CONTENT_TYPE); 149 entity.setContentEncoding(encoding); 151 post.setEntity(entity); 228 HttpEntity entity = null; local 231 entity = httpResp.getEntity(); 232 byte[] data = EntityUtils.toByteArray(entity); 233 String encoding = entity.getContentEncoding() != null ? 234 entity.getContentEncoding().getValue() [all...] |
/frameworks/base/include/androidfw/ |
BackupHelpers.h | 77 * entity-structured. If the implementation here is changed, either this 129 entity_header_v1 entity; member in union:android::BackupDataReader::__anon30087
|
/frameworks/volley/src/com/android/volley/toolbox/ |
HttpClientStack.java | 33 import org.apache.http.entity.ByteArrayEntity; 101 HttpEntity entity; local 102 entity = new ByteArrayEntity(postBody); 103 postRequest.setEntity(entity); 134 HttpEntity entity = new ByteArrayEntity(body); local 135 httpRequest.setEntity(entity);
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/ |
NetworkUtilities.java | 26 import org.apache.http.client.entity.UrlEncodedFormEntity; 110 final HttpEntity entity; local 112 entity = new UrlEncodedFormEntity(params); 119 post.addHeader(entity.getContentType()); 120 post.setEntity(entity); 185 HttpEntity entity = new UrlEncodedFormEntity(params); local 190 post.addHeader(entity.getContentType()); 191 post.setEntity(entity);
|