HomeSort by relevance Sort by last modified time
    Searched refs:entity (Results 26 - 50 of 671) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/
TestNanolets.java 112 HttpEntity entity = response.getEntity(); local
113 String string = new String(readContents(entity), "UTF-8");
120 entity = response.getEntity();
121 string = new String(readContents(entity), "UTF-8");
128 entity = response.getEntity();
129 string = new String(readContents(entity), "UTF-8");
136 entity = response.getEntity();
137 string = new String(readContents(entity), "UTF-8");
149 HttpEntity entity = response.getEntity(); local
150 String string = new String(readContents(entity), "UTF-8")
161 HttpEntity entity = response.getEntity(); local
173 HttpEntity entity = response.getEntity(); local
185 HttpEntity entity = response.getEntity(); local
197 HttpEntity entity = response.getEntity(); local
242 HttpEntity entity = response.getEntity(); local
254 HttpEntity entity = response.getEntity(); local
266 HttpEntity entity = response.getEntity(); local
285 HttpEntity entity = response.getEntity(); local
327 HttpEntity entity = response.getEntity(); local
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/tools/
named_entity_trie_generator.js 7 var trie = Object.keys(entitiesData).reduce(function (trie, entity) {
8 var resultCodepoints = entitiesData[entity].codepoints;
10 entity = entity.replace(/^&/, '');
12 var last = entity.length - 1,
15 entity
41 '//NOTE: this file contains auto generated trie structure that is used for named entity references consumption\n' +
  /external/chromium-trace/catapult/dashboard/dashboard/
mr.py 50 def SaveAllMapper(entity):
51 """This mapper just puts an entity.
53 When an entity is put, the pre-put hook is called, which may update some
54 property of the entity.
60 entity: The entity to put. Can be any kind.
62 entity.put()
80 def DeprecateTestsMapper(entity):
81 """Marks a TestMetadata entity as deprecated if the last row is too old.
91 entity: The TestMetadata entity to check
    [all...]
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
ManagedLocalTransactionsTest.java 72 assertEquals("queried entity did not match--did automatic txn fail?",
77 JpaTestEntity entity = injector.getInstance(TransactionalObject.class) local
92 assertEquals("queried entity did not match--did automatic txn fail?",
148 JpaTestEntity entity = new JpaTestEntity(); local
149 entity.setText(UNIQUE_TEXT);
150 em.persist(entity);
155 JpaTestEntity entity = new JpaTestEntity(); local
156 entity.setText(UNIQUE_TEXT_MERGE);
157 return em.merge(entity);
162 JpaTestEntity entity = new JpaTestEntity() local
171 JpaTestEntity entity = new JpaTestEntity(); local
    [all...]
ManagedLocalTransactionsAcrossRequestTest.java 75 assertEquals("queried entity did not match--did automatic txn fail?",
83 JpaTestEntity entity = injector.getInstance(TransactionalObject.class) local
86 assertNotNull("Entity was not given an id (was not persisted correctly?)", entity.getId());
94 assertTrue("Merge did not store state or did not return persistent copy", em.contains(entity));
102 assertEquals("queried entity did not match--did automatic txn fail?",
110 JpaTestEntity entity = injector.getInstance(TransactionalObject.class) local
119 assertTrue("Merge did not store state or did not return persistent copy", em.contains(entity));
127 assertEquals("queried entity did not match--did automatic txn fail?",
189 JpaTestEntity entity = new JpaTestEntity() local
196 JpaTestEntity entity = new JpaTestEntity(); local
203 JpaTestEntity entity = new JpaTestEntity(); local
210 JpaTestEntity entity = new JpaTestEntity(); local
219 JpaTestEntity entity = new JpaTestEntity(); local
    [all...]
ClassLevelManagedLocalTransactionsTest.java 78 assertEquals("queried entity did not match--did automatic txn fail?",
155 JpaTestEntity entity = new JpaTestEntity(); local
156 entity.setText(UNIQUE_TEXT);
157 session.persist(entity);
169 JpaTestEntity entity = new JpaTestEntity(); local
170 entity.setText(TRANSIENT_UNIQUE_TEXT);
171 session.persist(entity);
183 JpaTestEntity entity = new JpaTestEntity(); local
184 entity.setText(UNIQUE_TEXT_2);
185 session.persist(entity);
197 JpaTestEntity entity = new JpaTestEntity(); local
    [all...]
ManualLocalTransactionsConfidenceTest.java 81 JpaParentTestEntity entity = new JpaParentTestEntity(); local
87 entity.getChildren().add(child);
88 em.persist(entity);
90 entity = new JpaParentTestEntity();
91 entity.getChildren().add(child);
92 em.persist(entity);
JoiningLocalTransactionsTest.java 76 assertEquals("queried entity did not match--did automatic txn fail?", UNIQUE_TEXT,
139 JpaTestEntity entity = new JpaTestEntity(); local
140 entity.setText(UNIQUE_TEXT);
141 em.persist(entity);
151 JpaTestEntity entity = new JpaTestEntity(); local
152 entity.setText(TRANSIENT_UNIQUE_TEXT);
153 em.persist(entity);
165 JpaTestEntity entity = new JpaTestEntity(); local
166 entity.setText(TRANSIENT_UNIQUE_TEXT);
167 em.persist(entity);
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
BarColumn.java 38 private final CounterEntity entity; field in class:BarColumn
48 * entity.
50 * @param entity
51 * counter entity for visualization
55 public BarColumn(final CounterEntity entity, final Locale locale) {
56 this.entity = entity;
59 .reverse().on(entity)
60 .second(CounterComparator.TOTALITEMS.reverse().on(entity)));
67 final int count = item.getNode().getCounter(entity).getTotalCount()
    [all...]
PercentageColumn.java 36 private final CounterEntity entity; field in class:PercentageColumn
44 * entity.
46 * @param entity
47 * counter entity for this column
51 public PercentageColumn(final CounterEntity entity, final Locale locale) {
52 this.entity = entity;
55 CounterComparator.MISSEDRATIO.on(entity));
77 final ICounter counter = node.getCounter(entity);
  /external/apache-http/src/org/apache/http/impl/entity/
EntitySerializer.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/entity/EntitySerializer.java $
32 package org.apache.http.impl.entity;
40 import org.apache.http.entity.ContentLengthStrategy;
47 * Default implementation of an entity serializer.
49 * This entity serializer currently supports only "chunked" and "identitiy" transfer-coding</a>
91 final HttpEntity entity) throws HttpException, IOException {
98 if (entity == null) {
99 throw new IllegalArgumentException("HTTP entity may not be null");
102 entity.writeTo(outstream);
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
acls.py 146 "entity": "group-00b4903a9740e42c29800f53bd5a9a62a2f96eb3f64a4313a115df3f3a776bf7",
151 "entity": "group-00b4903a977fd817e9da167bc81306489181a110456bb635f466d71cf90a0d51",
156 "entity": "00b4903a974898cc8fc309f2f2835308ba3d3df1b889d3fc7e33e187d52d8e71",
162 The ACL consists collection of elements, each of which specifies an Entity
182 "entity": "group-travel-companion-owners@googlegroups.com"
188 "entity": "domain-example.com"
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
ClassRowWriter.java 55 for (final CounterEntity entity : COUNTERS) {
56 writer.write(entity.name() + "_MISSED");
57 writer.write(entity.name() + "_COVERED");
83 for (final CounterEntity entity : COUNTERS) {
84 final ICounter counter = node.getCounter(entity);
  /external/apache-http/src/org/apache/http/impl/client/
BasicResponseHandler.java 80 HttpEntity entity = response.getEntity(); local
81 return entity == null ? null : EntityUtils.toString(entity);
  /external/chromium-trace/catapult/dashboard/dashboard/models/
internal_only_model.py 18 entity = future.get_result()
19 if entity is None:
22 if (getattr(entity, 'internal_only', False) and
35 # entity has been created, so that the CreateCallback is only called once.
39 """Invokes a callback upon creating a new entity."""
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documenttypegetentitiestype.java 32 * method implements the Entity interface.
67 Node entity; local
75 entity = (Node) entityList.item(indexN10049);
76 entityType = (int) entity.getNodeType();
  /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);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
XMLTokener.java 36 /** The table of entity values. It initially contains Character values for
39 public static final java.util.HashMap entity; field in class:XMLTokener
42 entity = new java.util.HashMap(8);
43 entity.put("amp", XML.AMP);
44 entity.put("apos", XML.APOS);
45 entity.put("gt", XML.GT);
46 entity.put("lt", XML.LT);
47 entity.put("quot", XML.QUOT);
121 * Return the next entity. These entities are translated to Characters:
124 * @return A Character or an entity String if the entity is not recognized
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/util/
EntityResolver.java 28 * entity which we will discard.
52 * <li><code>&&lt;html-entity&gt;;</code> where
53 * <code>&lt;html-entity&gt;</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/nanohttpd/webserver/src/test/java/fi/iki/elonen/
AbstractTestHttpServer.java 46 protected byte[] readContents(HttpEntity entity) throws IOException {
47 InputStream instream = entity.getContent();
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /packages/apps/Contacts/src/com/android/contacts/editor/
ViewIdGenerator.java 65 * @param entity {@link RawContactDelta} associated with the view
71 public int getId(RawContactDelta entity, DataKind kind, ValuesDelta values,
73 final String k = getMapKey(entity, kind, values, viewIndex);
84 private static String getMapKey(RawContactDelta entity, DataKind kind, ValuesDelta values,
87 if (entity != null) {
88 sWorkStringBuilder.append(entity.getValues().getId());

Completed in 1989 milliseconds

12 3 4 5 6 7 8 91011>>