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

<<11121314151617181920>>

  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
_base.py 4 __all__ = ["DOCUMENT", "DOCTYPE", "TEXT", "ELEMENT", "COMMENT", "ENTITY", "UNKNOWN",
14 ENTITY = Node.ENTITY_NODE
119 def entity(self, name): member in class:TreeWalker
122 return {"type": "Entity", "name": text_type(name)}
168 elif type == ENTITY:
169 yield self.entity(details[0])
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactLoader.java 12 import android.content.Entity;
43 public ArrayList<Entity> entities;
120 ArrayList<Entity> entities = Lists.newArrayList();
124 Entity entity = iterator.next(); local
125 entities.add(entity);
EntitySet.java 24 import android.content.Entity;
73 final Entity before = iterator.next();
74 final EntityDelta entity = EntityDelta.fromBefore(before); local
75 state.add(entity);
91 // For each entity in the remote set, try matching over existing
110 * the "before" {@link Entity} states into the modified state which all
EntityDelta.java 25 import android.content.Entity;
27 import android.content.Entity.NamedContentValues;
44 * Contains an {@link Entity} and records any modifications separately so the
45 * original {@link Entity} can be swapped out with a newer version and the
49 * empty {@link Entity}, which then becomes an insert {@link RawContacts} case.
51 * When applying modifications over an {@link Entity}, we try finding the
53 * rows are missing from the new {@link Entity}, we know the original data must
63 * Direct values from {@link Entity#getEntityValues()}.
68 * Internal map of children values from {@link Entity#getSubValues()}, which
81 * Build an {@link EntityDelta} using the given {@link Entity} as
85 final EntityDelta entity = new EntityDelta(); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
CallTips.py 105 entity = self.get_entity(expression)
106 return get_arg_text(entity)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
CallTips.py 105 entity = self.get_entity(expression)
106 return get_arg_text(entity)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 105 entity = self.get_entity(expression)
106 return get_arg_text(entity)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 105 entity = self.get_entity(expression)
106 return get_arg_text(entity)
  /prebuilts/tools/common/m2/repository/com/google/apis/google-api-services-storage/v1-rev82-1.22.0/
google-api-services-storage-v1-rev82-1.22.0.jar 
  /toolchain/binutils/binutils-2.25/binutils/
mcparse.y 71 | entities entity
73 entity: global_section label
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 40 import org.w3c.dom.Entity;
898 * Entity References.)
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/
http-builder-0.7.2.jar 
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
53 "ENTITY": minidom.TypeInfo(None, "entity"),
319 # internal entity
592 <!ENTITY fragment-builder-internal
676 entity = doctype.entities.item(i)
679 s = "%s<!ENTITY %s" % (s, entity.nodeName)
680 if entity.publicId:
682 % (s, entity.publicId, entity.systemId
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
53 "ENTITY": minidom.TypeInfo(None, "entity"),
319 # internal entity
592 <!ENTITY fragment-builder-internal
676 entity = doctype.entities.item(i)
679 s = "%s<!ENTITY %s" % (s, entity.nodeName)
680 if entity.publicId:
682 % (s, entity.publicId, entity.systemId
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
53 "ENTITY": minidom.TypeInfo(None, "entity"),
319 # internal entity
592 <!ENTITY fragment-builder-internal
676 entity = doctype.entities.item(i)
679 s = "%s<!ENTITY %s" % (s, entity.nodeName)
680 if entity.publicId:
682 % (s, entity.publicId, entity.systemId
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
53 "ENTITY": minidom.TypeInfo(None, "entity"),
319 # internal entity
592 <!ENTITY fragment-builder-internal
676 entity = doctype.entities.item(i)
679 s = "%s<!ENTITY %s" % (s, entity.nodeName)
680 if entity.publicId:
682 % (s, entity.publicId, entity.systemId
    [all...]
  /prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar 
  /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/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...]
  /frameworks/base/core/java/android/provider/
CalendarContract.java 31 import android.content.Entity;
484 * Class that represents a Calendar Entity. There is one entry per calendar.
502 * Creates an entity iterator for the given cursor. It assumes the
519 public Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException {
573 // Create the Entity from the ContentValue
574 Entity entity = new Entity(cv); local
579 // Return the created Entity
580 return entity;
1431 Entity entity = new Entity(cv); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.1.201405082137/
org.jacoco.report-0.7.1.201405082137.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/
org.jacoco.report-0.7.3.201501221555.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/
org.jacoco.report-0.7.4.201502262128.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.5.201505241946/
org.jacoco.report-0.7.5.201505241946.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.6.201602180812/
org.jacoco.report-0.7.6.201602180812.jar 

Completed in 1840 milliseconds

<<11121314151617181920>>