HomeSort by relevance Sort by last modified time
    Searched defs:entity (Results 126 - 150 of 651) sorted by null

1 2 3 4 56 7 8 91011>>

  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 232 final HttpEntity entity = response.getEntity(); local
233 if (entity != null) {
234 inputStream = entity.getContent();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_xml_etree.py 997 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1000 <document>&entity;</document>
1003 def entity(): function
1005 Test entity handling.
1015 >>> ET.XML("<document>&entity;</document>")
1017 ParseError: undefined entity: line 1, column 10
1021 ParseError: undefined entity &entity;: line 5, column 10
1023 3) custom entity
1026 >>> parser.entity["entity"] = "text"
    [all...]
  /external/apache-http/android/src/android/net/http/
AndroidHttpClient.java 37 import org.apache.http.entity.AbstractHttpEntity;
38 import org.apache.http.entity.ByteArrayEntity;
210 * Gets the input stream from a response entity. If the entity is gzipped
213 * @param entity the entity whose content should be read
217 public static InputStream getUngzippedContent(HttpEntity entity)
219 InputStream responseStream = entity.getContent();
221 Header header = entity.getContentEncoding();
294 * Creates a Http Entity holding the gzipped data
301 AbstractHttpEntity entity; local
441 HttpEntity entity = entityRequest.getEntity(); local
    [all...]
  /external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/
TestNanoFileUpLoad.java 58 import org.apache.http.entity.ContentType;
59 import org.apache.http.entity.mime.HttpMultipartMode;
60 import org.apache.http.entity.mime.MultipartEntityBuilder;
61 import org.apache.http.entity.mime.content.FileBody;
62 import org.apache.http.entity.mime.content.StringBody;
217 HttpEntity entity = builder.build(); local
219 post.setEntity(entity);
  /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/python/cpython2/Lib/test/
test_xml_etree.py 1011 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1014 <document>&entity;</document>
1017 def entity(): function
1019 Test entity handling.
1029 >>> ET.XML("<document>&entity;</document>")
1031 ParseError: undefined entity: line 1, column 10
1035 ParseError: undefined entity &entity;: line 5, column 10
1037 3) custom entity
1040 >>> parser.entity["entity"] = "text
    [all...]
  /external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
ShadowDefaultRequestDirector.java 22 import org.apache.http.entity.BasicHttpEntity;
23 import org.apache.http.entity.HttpEntityWrapper;
240 HttpEntity entity = response.getEntity(); local
241 if (entity instanceof HttpEntityWrapper) {
242 HttpEntityWrapper entityWrapper = (HttpEntityWrapper) entity;
246 entity = (HttpEntity) wrappedEntity.get(entityWrapper);
251 if (entity instanceof BasicHttpEntity) {
252 BasicHttpEntity basicEntity = (BasicHttpEntity) entity;
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 43 TiXmlBase::Entity TiXmlBase::entity[ TiXmlBase::NUM_ENTITY ] = member in class:TiXmlBase
440 // Presume an entity, and pull it out.
517 if ( strncmp( entity[i].str, p, entity[i].strLength ) == 0 )
519 assert( strlen( entity[i].str ) == entity[i].strLength );
520 *value = entity[i].chr;
522 return ( p + entity[i].strLength );
526 // So it wasn't an entity, its unrecognized, or something like that
    [all...]
  /external/tagsoup/templates/org/ccil/cowan/tagsoup/
HTMLScanner.java 291 // The whole entity reference has been collected
293 h.entity(theOutputBuffer, 1, theSize - 1);
  /external/tinyxml/
tinyxmlparser.cpp 34 TiXmlBase::Entity TiXmlBase::entity[ NUM_ENTITY ] = member in class:TiXmlBase
421 // Presume an entity, and pull it out.
498 if ( strncmp( entity[i].str, p, entity[i].strLength ) == 0 )
500 assert( strlen( entity[i].str ) == entity[i].strLength );
501 *value = entity[i].chr;
503 return ( p + entity[i].strLength );
507 // So it wasn't an entity, its unrecognized, or something like that
    [all...]
  /external/tpm2/
SessionProcess.c 31 TPM_HANDLE handle // IN: entity handle
71 // This function is called after an authorization failure that involves use of an authValue. If the entity
90 // is DA protected or the session is bound to a DA protected entity.
161 // This function indicates if the entity associated with the handle is the entity, to which this session is bound.
164 // combination of the Name and the authValue of the entity.
168 // TRUE handle points to the session start entity
169 // FALSE handle does not point to the session start entity
177 TPM2B_NAME entity; // The bind value for the entity local
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardComposer.java 21 import android.content.Entity;
22 import android.content.Entity.NamedContentValues;
505 // The resolver may return the entity iterator with no data. It is possible.
550 Entity entity = entityIterator.next(); local
551 for (NamedContentValues namedContentValues : entity.getSubValues()) {
663 * @return true when there's no entity to be built. The return value is undefined
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DocumentBuilderTest.java 531 InputStream entity = new ByteArrayInputStream("bar".getBytes()); local
534 resolver.addEntity("foo", "foo", new InputSource(entity));
607 InputStream entity = new ByteArrayInputStream("bar".getBytes()); local
610 resolver.addEntity("foo", "foo", new InputSource(entity));
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardData.java 82 return mItems.get(position).entity;
96 return item.entity;
125 * @param entity the object that need to be found in list
128 public int getPositionByEntity(Object entity) {
129 if (entity == null) return POSITION_NOT_FOUND;
133 final Object item = mItems.get(i).entity;
134 if (entity.equals(item)) {
154 final Object entity = mItems.get(i).entity; local
155 if (entity == tile)
363 public final Object entity; field in class:DashboardData.Item
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml.go 172 // d.Entity = HTMLEntity
186 // Entity can be used to map non-standard entity names to string replacements.
195 Entity map[string]string
708 // Probably a directive: <!DOCTYPE ...>, <!ENTITY ...>, etc.
970 var entity = map[string]int{ var
1025 // its own character names with <!ENTITY ...> directives.
1086 if r, ok := entity[s]; ok {
1089 } else if d.Entity != nil {
1090 text, haveText = d.Entity[s
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
xml.go 172 // d.Entity = HTMLEntity
186 // Entity can be used to map non-standard entity names to string replacements.
195 Entity map[string]string
708 // Probably a directive: <!DOCTYPE ...>, <!ENTITY ...>, etc.
970 var entity = map[string]int{ var
1025 // its own character names with <!ENTITY ...> directives.
1086 if r, ok := entity[s]; ok {
1089 } else if d.Entity != nil {
1090 text, haveText = d.Entity[s
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 998 <!ENTITY % user-entities SYSTEM 'user-entities.xml'>
1001 <document>&entity;</document>
1004 def entity(): function
1006 Test entity handling.
1016 >>> ET.XML("<document>&entity;</document>")
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1024 3) custom entity
1027 >>> parser.entity["entity"] = "text
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
ProfilingPointSummaryEntity.java 17 package com.android.vts.entity;
21 import com.google.appengine.api.datastore.Entity;
31 /** Entity describing a profiling point summary. */
147 * @param profilingRun The profiling point run entity object containing profiling data.
170 public Entity toEntity() {
171 Entity profilingSummary;
172 profilingSummary = new Entity(this.key);
209 * Convert an Entity object to a ProfilingPointSummaryEntity.
211 * @param e The entity to process.
216 public static ProfilingPointSummaryEntity fromEntity(Entity e)
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.1/
httpcore-4.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/
httpcore-4.2.5.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 

Completed in 512 milliseconds

1 2 3 4 56 7 8 91011>>