Home
last modified time | relevance | path

Searched refs:entity (Results 1 – 25 of 731) sorted by relevance

12345678910>>...30

/external/tagsoup/src/org/ccil/cowan/tagsoup/
DHTMLSchema.java779 entity("Aacgr", 0x0386); in HTMLSchema()
780 entity("aacgr", 0x03AC); in HTMLSchema()
781 entity("Aacute", 0x00C1); in HTMLSchema()
782 entity("aacute", 0x00E1); in HTMLSchema()
783 entity("Abreve", 0x0102); in HTMLSchema()
784 entity("abreve", 0x0103); in HTMLSchema()
785 entity("ac", 0x223E); in HTMLSchema()
786 entity("acd", 0x223F); in HTMLSchema()
787 entity("Acirc", 0x00C2); in HTMLSchema()
788 entity("acirc", 0x00E2); in HTMLSchema()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/data/languages/
DchildToParent.tsv2 http://www.wikidata.org/entity/Q1400216 http://www.wikidata.org/entity/Q150
3 http://www.wikidata.org/entity/Q1473289 http://www.wikidata.org/entity/Q150
4 http://www.wikidata.org/entity/Q2075394 http://www.wikidata.org/entity/Q150
5 http://www.wikidata.org/entity/Q2423700 http://www.wikidata.org/entity/Q150
6 http://www.wikidata.org/entity/Q2922261 http://www.wikidata.org/entity/Q150
7 http://www.wikidata.org/entity/Q3083193 http://www.wikidata.org/entity/Q150
8 http://www.wikidata.org/entity/Q3083199 http://www.wikidata.org/entity/Q150
9 http://www.wikidata.org/entity/Q3083202 http://www.wikidata.org/entity/Q150
10 http://www.wikidata.org/entity/Q3083218 http://www.wikidata.org/entity/Q150
11 http://www.wikidata.org/entity/Q3100376 http://www.wikidata.org/entity/Q150
[all …]
DentityToCode.tsv2 http://www.wikidata.org/entity/Q143 eo
3 http://www.wikidata.org/entity/Q150 fr
4 http://www.wikidata.org/entity/Q188 de
5 http://www.wikidata.org/entity/Q102172 li
6 http://www.wikidata.org/entity/Q1025090 cdd
7 http://www.wikidata.org/entity/Q10322099 cds
8 http://www.wikidata.org/entity/Q10322106 ukl
9 http://www.wikidata.org/entity/Q1039346 sii
10 http://www.wikidata.org/entity/Q1048980 cmn-sg
11 http://www.wikidata.org/entity/Q1055287 ysn
[all …]
DentityToLabel.tsv2 http://www.wikidata.org/entity/Q150 French
3 http://www.wikidata.org/entity/Q188 German
4 http://www.wikidata.org/entity/Q1002956 Buhid
5 http://www.wikidata.org/entity/Q10048570 Q10048570
6 http://www.wikidata.org/entity/Q1012917 Wutun language
7 http://www.wikidata.org/entity/Q1017152 Buru language
8 http://www.wikidata.org/entity/Q102172 Limburgish
9 http://www.wikidata.org/entity/Q1022087 Kra languages
10 http://www.wikidata.org/entity/Q1023641 Kam–Sui languages
11 http://www.wikidata.org/entity/Q1023648 Hlai languages
[all …]
/external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/
DTestNanolets.java112 HttpEntity entity = response.getEntity(); in doSomeBasicMethodTest() local
113 String string = new String(readContents(entity), "UTF-8"); in doSomeBasicMethodTest()
120 entity = response.getEntity(); in doSomeBasicMethodTest()
121 string = new String(readContents(entity), "UTF-8"); in doSomeBasicMethodTest()
128 entity = response.getEntity(); in doSomeBasicMethodTest()
129 string = new String(readContents(entity), "UTF-8"); in doSomeBasicMethodTest()
136 entity = response.getEntity(); in doSomeBasicMethodTest()
137 string = new String(readContents(entity), "UTF-8"); in doSomeBasicMethodTest()
149 HttpEntity entity = response.getEntity(); in doNonRouterRequest() local
150 String string = new String(readContents(entity), "UTF-8"); in doNonRouterRequest()
[all …]
/external/apache-http/src/org/apache/http/impl/entity/
DEntityDeserializer.java32 package org.apache.http.impl.entity;
40 import org.apache.http.entity.BasicHttpEntity;
41 import org.apache.http.entity.ContentLengthStrategy;
80 BasicHttpEntity entity = new BasicHttpEntity(); in doDeserialize() local
84 entity.setChunked(true); in doDeserialize()
85 entity.setContentLength(-1); in doDeserialize()
86 entity.setContent(new ChunkedInputStream(inbuffer)); in doDeserialize()
88 entity.setChunked(false); in doDeserialize()
89 entity.setContentLength(-1); in doDeserialize()
90 entity.setContent(new IdentityInputStream(inbuffer)); in doDeserialize()
[all …]
/external/apache-http/src/org/apache/http/util/
DEntityUtils.java65 public static byte[] toByteArray(final HttpEntity entity) throws IOException { in toByteArray() argument
66 if (entity == null) { in toByteArray()
69 InputStream instream = entity.getContent(); in toByteArray()
73 if (entity.getContentLength() > Integer.MAX_VALUE) { in toByteArray()
76 int i = (int)entity.getContentLength(); in toByteArray()
93 public static String getContentCharSet(final HttpEntity entity) in getContentCharSet() argument
96 if (entity == null) { in getContentCharSet()
100 if (entity.getContentType() != null) { in getContentCharSet()
101 HeaderElement values[] = entity.getContentType().getElements(); in getContentCharSet()
113 … final HttpEntity entity, final String defaultCharset) throws IOException, ParseException { in toString() argument
[all …]
/external/syzkaller/vendor/cloud.google.com/go/storage/
Dacl.go67 func (a *ACLHandle) Delete(ctx context.Context, entity ACLEntity) error {
69 return a.objectDelete(ctx, entity)
72 return a.bucketDefaultDelete(ctx, entity)
74 return a.bucketDelete(ctx, entity)
78 func (a *ACLHandle) Set(ctx context.Context, entity ACLEntity, role ACLRole) error {
80 return a.objectSet(ctx, entity, role, false)
83 return a.objectSet(ctx, entity, role, true)
85 return a.bucketSet(ctx, entity, role)
114 func (a *ACLHandle) bucketDefaultDelete(ctx context.Context, entity ACLEntity) error {
116 req := a.c.raw.DefaultObjectAccessControls.Delete(a.bucket, string(entity))
[all …]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
DCounterColumn.java45 public static CounterColumn newTotal(final CounterEntity entity, in newTotal() argument
47 return new CounterColumn(entity, locale, CounterComparator.TOTALITEMS in newTotal()
48 .reverse().on(entity)) { in newTotal()
65 public static CounterColumn newMissed(final CounterEntity entity,
67 return new CounterColumn(entity, locale, CounterComparator.MISSEDITEMS
68 .reverse().on(entity)) {
85 public static CounterColumn newCovered(final CounterEntity entity,
87 return new CounterColumn(entity, locale, CounterComparator.COVEREDITEMS
88 .reverse().on(entity)) {
96 private final CounterEntity entity;
[all …]
DBarColumn.java38 private final CounterEntity entity; field in BarColumn
55 public BarColumn(final CounterEntity entity, final Locale locale) { in BarColumn() argument
56 this.entity = entity; in BarColumn()
59 .reverse().on(entity) in BarColumn()
60 .second(CounterComparator.TOTALITEMS.reverse().on(entity))); in BarColumn()
67 final int count = item.getNode().getCounter(entity).getTotalCount(); in init()
78 final ICounter counter = total.getCounter(entity); in footer()
87 final ICounter counter = item.getNode().getCounter(entity); in item()
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
DManagedLocalTransactionsAcrossRequestTest.java81 JpaTestEntity entity = in testSimpleTransactionWithMerge() local
84 assertNotNull("Entity was not given an id (was not persisted correctly?)", entity.getId()); in testSimpleTransactionWithMerge()
92 assertTrue("Merge did not store state or did not return persistent copy", em.contains(entity)); in testSimpleTransactionWithMerge()
111 JpaTestEntity entity = in disabled_testSimpleTransactionWithMergeAndDF() local
120 assertTrue("Merge did not store state or did not return persistent copy", em.contains(entity)); in disabled_testSimpleTransactionWithMergeAndDF()
199 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxn() local
200 entity.setText(UNIQUE_TEXT); in runOperationInTxn()
201 em.persist(entity); in runOperationInTxn()
206 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnWithMerge() local
207 entity.setText(UNIQUE_TEXT_MERGE); in runOperationInTxnWithMerge()
[all …]
DManualLocalTransactionsWithCustomMatcherTest.java62 JpaTestEntity entity = in testSimpleCrossTxnWork() local
73 injector.getInstance(EntityManager.class).contains(entity)); in testSimpleCrossTxnWork()
74 assertTrue("EntityManager appears to have been closed across txns!", em.contains(entity)); in testSimpleCrossTxnWork()
97 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxn() local
98 entity.setText(UNIQUE_TEXT); in runOperationInTxn()
99 em.persist(entity); in runOperationInTxn()
101 return entity; in runOperationInTxn()
106 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxn2() local
107 entity.setText(UNIQUE_TEXT_2); in runOperationInTxn2()
108 em.persist(entity); in runOperationInTxn2()
DManagedLocalTransactionsTest.java76 JpaTestEntity entity = in testSimpleTransactionWithMerge() local
159 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxn() local
160 entity.setText(UNIQUE_TEXT); in runOperationInTxn()
161 em.persist(entity); in runOperationInTxn()
166 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnWithMerge() local
167 entity.setText(UNIQUE_TEXT_MERGE); in runOperationInTxnWithMerge()
168 return em.merge(entity); in runOperationInTxnWithMerge()
173 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnThrowingChecked() local
174 entity.setText(TRANSIENT_UNIQUE_TEXT); in runOperationInTxnThrowingChecked()
175 em.persist(entity); in runOperationInTxnThrowingChecked()
[all …]
DManualLocalTransactionsTest.java61 JpaTestEntity entity = injector.getInstance(TransactionalObject.class).runOperationInTxn(); in testSimpleCrossTxnWork() local
67 injector.getInstance(EntityManager.class).contains(entity)); in testSimpleCrossTxnWork()
68 assertTrue("EntityManager appears to have been closed across txns!", em.contains(entity)); in testSimpleCrossTxnWork()
94 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxn() local
95 entity.setText(UNIQUE_TEXT); in runOperationInTxn()
96 em.persist(entity); in runOperationInTxn()
98 return entity; in runOperationInTxn()
103 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxn2() local
104 entity.setText(UNIQUE_TEXT_2); in runOperationInTxn2()
105 em.persist(entity); in runOperationInTxn2()
DClassLevelManagedLocalTransactionsTest.java170 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxn() local
171 entity.setText(UNIQUE_TEXT); in runOperationInTxn()
172 session.persist(entity); in runOperationInTxn()
183 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnThrowingUnchecked() local
184 entity.setText(TRANSIENT_UNIQUE_TEXT); in runOperationInTxnThrowingUnchecked()
185 session.persist(entity); in runOperationInTxnThrowingUnchecked()
197 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnThrowingCheckedExcepting() local
198 entity.setText(UNIQUE_TEXT_2); in runOperationInTxnThrowingCheckedExcepting()
199 session.persist(entity); in runOperationInTxnThrowingCheckedExcepting()
211 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnThrowingChecked() local
[all …]
DJoiningLocalTransactionsTest.java148 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnInternal() local
149 entity.setText(UNIQUE_TEXT); in runOperationInTxnInternal()
150 em.persist(entity); in runOperationInTxnInternal()
160 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnThrowingCheckedInternal() local
161 entity.setText(TRANSIENT_UNIQUE_TEXT); in runOperationInTxnThrowingCheckedInternal()
162 em.persist(entity); in runOperationInTxnThrowingCheckedInternal()
174 JpaTestEntity entity = new JpaTestEntity(); in runOperationInTxnThrowingUncheckedInternal() local
175 entity.setText(TRANSIENT_UNIQUE_TEXT); in runOperationInTxnThrowingUncheckedInternal()
176 em.persist(entity); in runOperationInTxnThrowingUncheckedInternal()
/external/libxml2/
Dentities.c101 xmlFreeEntity(xmlEntityPtr entity) in xmlFreeEntity() argument
105 if (entity == NULL) in xmlFreeEntity()
108 if (entity->doc != NULL) in xmlFreeEntity()
109 dict = entity->doc->dict; in xmlFreeEntity()
112 if ((entity->children) && (entity->owner == 1) && in xmlFreeEntity()
113 (entity == (xmlEntityPtr) entity->children->parent)) in xmlFreeEntity()
114 xmlFreeNodeList(entity->children); in xmlFreeEntity()
116 if ((entity->name != NULL) && (!xmlDictOwns(dict, entity->name))) in xmlFreeEntity()
117 xmlFree((char *) entity->name); in xmlFreeEntity()
118 if ((entity->ExternalID != NULL) && in xmlFreeEntity()
[all …]
/external/apache-http/src/org/apache/http/impl/client/
DEntityEnclosingRequestWrapper.java62 private HttpEntity entity; field in EntityEnclosingRequestWrapper
67 this.entity = request.getEntity(); in EntityEnclosingRequestWrapper()
71 return this.entity; in getEntity()
74 public void setEntity(final HttpEntity entity) { in setEntity() argument
75 this.entity = entity; in setEntity()
85 return this.entity == null || this.entity.isRepeatable(); in isRepeatable()
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
DHttpEntityBody.java13 private final HttpEntity entity; field in HttpEntityBody
16 HttpEntityBody(HttpEntity entity, String contentTypeHeader) { in HttpEntityBody() argument
17 this.entity = entity; in HttpEntityBody()
21 } else if (entity.getContentType() != null) { in HttpEntityBody()
22 mediaType = MediaType.parse(entity.getContentType().getValue()); in HttpEntityBody()
31 return entity.getContentLength(); in contentLength()
39 entity.writeTo(sink.outputStream()); in writeTo()
/external/apache-http/src/org/apache/http/client/methods/
DHttpEntityEnclosingRequestBase.java57 private HttpEntity entity; field in HttpEntityEnclosingRequestBase
64 return this.entity; in getEntity()
67 public void setEntity(final HttpEntity entity) { in setEntity() argument
68 this.entity = entity; in setEntity()
80 if (this.entity != null) { in clone()
81 clone.entity = (HttpEntity) CloneUtils.clone(this.entity); in clone()
/external/apache-http/src/org/apache/http/protocol/
DRequestContent.java78 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); in process() local
79 if (entity == null) { in process()
84 if (entity.isChunked() || entity.getContentLength() < 0) { in process()
91 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength())); in process()
94 if (entity.getContentType() != null && !request.containsHeader( in process()
96 request.addHeader(entity.getContentType()); in process()
99 if (entity.getContentEncoding() != null && !request.containsHeader( in process()
101 request.addHeader(entity.getContentEncoding()); in process()
DResponseContent.java78 HttpEntity entity = response.getEntity(); in process() local
79 if (entity != null) { in process()
80 long len = entity.getContentLength(); in process()
81 if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) { in process()
84 response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength())); in process()
87 if (entity.getContentType() != null && !response.containsHeader( in process()
89 response.addHeader(entity.getContentType()); in process()
92 if (entity.getContentEncoding() != null && !response.containsHeader( in process()
94 response.addHeader(entity.getContentEncoding()); in process()
/external/python/oauth2client/oauth2client/contrib/
Dsqlalchemy.py144 entity = query.first()
146 if entity:
147 credential = getattr(entity, self.property_name)
162 entity = query.first()
164 if not entity:
165 entity = self.model_class(**filters)
167 setattr(entity, self.property_name, credentials)
168 self.session.add(entity)
/external/apache-http/android/src/android/net/http/
DAndroidHttpClientConnection.java30 import org.apache.http.entity.BasicHttpEntity;
31 import org.apache.http.entity.ContentLengthStrategy;
33 import org.apache.http.impl.entity.EntitySerializer;
34 import org.apache.http.impl.entity.StrictContentLengthStrategy;
381 BasicHttpEntity entity = new BasicHttpEntity(); in receiveResponseEntity() local
385 entity.setChunked(true); in receiveResponseEntity()
386 entity.setContentLength(-1); in receiveResponseEntity()
387 entity.setContent(new ChunkedInputStream(inbuffer)); in receiveResponseEntity()
389 entity.setChunked(false); in receiveResponseEntity()
390 entity.setContentLength(-1); in receiveResponseEntity()
[all …]
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
DOkApacheClientTest.java20 import org.apache.http.entity.ByteArrayEntity;
21 import org.apache.http.entity.InputStreamEntity;
22 import org.apache.http.entity.StringEntity;
196 HttpEntity entity = response.getEntity(); in contentEncoding() local
201 assertNotNull(entity.getContentEncoding()); in contentEncoding()
202 assertEquals("gzip", entity.getContentEncoding().getValue()); in contentEncoding()
204 assertEquals(text, gunzip(entity)); in contentEncoding()
217 HttpEntity entity = response.getEntity(); in jsonGzipResponse() local
222 assertNotNull(entity.getContentEncoding()); in jsonGzipResponse()
223 assertEquals("gzip", entity.getContentEncoding().getValue()); in jsonGzipResponse()
[all …]

12345678910>>...30