Searched defs:entity (Results 51 - 74 of 74) sorted by relevance

123

/external/tinyxml/
H A Dtinyxmlparser.cpp34 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.
H A Dtinyxml.h275 // If an entity has been found, transform it into a character.
371 static Entity entity[ NUM_ENTITY ]; member in class:TiXmlBase
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserQt.cpp430 QString entity = m_stream.name().toString(); local
431 UChar c = decodeNamedEntity(entity.toUtf8().constData());
436 // qDebug()<<" ------- adding entity "<<str;
H A DXMLDocumentParserLibxml2.cpp405 // external entity and the resulting document could simply read the
1102 // Otherwise libxml seems to call all the SAX callbacks twice for any replaced entity.
1190 // Using a static entity and marking it XML_INTERNAL_PREDEFINED_ENTITY is
1197 static xmlEntity entity; local
1198 if (!entity.type) {
1199 entity.type = XML_ENTITY_DECL;
1200 entity.orig = sharedXHTMLEntityResult;
1201 entity.content = sharedXHTMLEntityResult;
1202 entity.etype = XML_INTERNAL_PREDEFINED_ENTITY;
1204 return &entity;
1215 xmlEntityPtr entity = sharedXHTMLEntity(); local
[all...]
/external/quake/quake/src/WinQuake/
H A Dclient.h89 int entity; member in struct:__anon12184
H A Dpr_cmds.cpp117 setorigin (entity, origin)
212 setsize (entity, minvector, maxvector)
231 setmodel(entity, model)
547 Each entity can have eight independant sound sources, like voice,
551 allready running on that entity/channel pair.
562 edict_t *entity; local
566 entity = G_EDICT(OFS_PARM0);
581 SV_StartSound (entity, channel, sample, volume, attenuation);
672 Returns true if the given entity can move to the given position from it's
675 scalar checkpos (entity, vecto
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java155 "http://xml.org/sax/features/use-entity-resolver2";
251 entity inclusions, and the start and end of the DTD (and
552 // Expand entity references in attribute values selectively.
576 // valid entity char
605 public void entity(char[] buff, int offset, int length) throws SAXException { method in class:Parser
615 // System.err.println("%% Got entity [" + new String(buff, offset, length) + "]");
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dtls_gnutls.c71 gnutls_connection_end_t entity; member in struct:__anon15806
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_gnutls.c49 gnutls_connection_end_t entity; member in struct:__anon16029
/external/wpa_supplicant_8/src/crypto/
H A Dtls_gnutls.c49 gnutls_connection_end_t entity; member in struct:__anon16253
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_gnutls.c49 gnutls_connection_end_t entity; member in struct:__anon16479
/external/quake/quake/src/QW/server/
H A Dpr_cmds.c116 setorigin (entity, origin)
137 setsize (entity, minvector, maxvector)
159 setmodel(entity, model)
464 Each entity can have eight independant sound sources, like voice,
468 allready running on that entity/channel pair.
479 edict_t *entity; local
483 entity = G_EDICT(OFS_PARM0);
489 SV_StartSound (entity, channel, sample, volume, attenuation);
549 Returns true if the given entity can move to the given position from it's
552 scalar checkpos (entity, vecto
[all...]
/external/libxml2/include/libxml/
H A Dparser.h39 * Each entity parsed is associated an xmlParserInput (except the
73 const xmlChar *encoding; /* the encoding string for entity */
74 const xmlChar *version; /* the version string for entity */
75 int standalone; /* Was that entity marked standalone */
76 int id; /* an unique identifier for the entity */
124 XML_PARSER_ENTITY_DECL, /* within an entity declaration */
125 XML_PARSER_ENTITY_VALUE, /* within an entity value in a decl */
217 int external; /* are we parsing an external entity */
249 int depth; /* to prevent entity substitution loops */
250 xmlParserInputPtr entity; /* use member in struct:_xmlParserCtxt
[all...]
/external/openssl/ssl/
H A Dkssl.c1591 /* Given an array of (krb5_data *) entity (and optional realm),
1597 krb5_data *realm, krb5_data *entity, int nentities)
1603 if (kssl_ctx == NULL || entity == NULL) return KSSL_CTX_ERR;
1613 /* Add up all the entity->lengths */
1617 length += entity[i].length;
1630 strncat(*princ, entity[i].data, entity[i].length);
1596 kssl_ctx_setprinc(KSSL_CTX *kssl_ctx, int which, krb5_data *realm, krb5_data *entity, int nentities) argument
/external/libxml2/
H A Dparser.c103 * XML_PARSER_NON_LINEAR is the threshold where the ratio of parsed entity
105 * and eponential behaviour. A value of 10 correspond to at least 3 entity
113 * Function to check non-linear entity expansion behaviour
114 * This is here to detect and stop exponential linear entity expansion
131 * Do the check based on the replacement size of the entity
165 * knowing an entity reference will take at least 3 bytes
232 xmlLoadEntityContent(xmlParserCtxtPtr ctxt, xmlEntityPtr entity);
321 errmsg = "Detected an entity reference loop\n";
2127 * @input: an XML parser input fragment (entity, XML fragment ...).
2347 * @entity
2358 xmlNewBlanksWrapperInputStream(xmlParserCtxtPtr ctxt, xmlEntityPtr entity) argument
2430 xmlEntityPtr entity = NULL; local
7629 xmlEntityPtr entity = NULL; local
7741 xmlLoadEntityContent(xmlParserCtxtPtr ctxt, xmlEntityPtr entity) argument
7849 xmlEntityPtr entity = NULL; local
[all...]
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp120 // implicitly or explicitly capture any entity.
2674 // Construct the entity that we will be initializing. For an array, this
2877 // C++11 [class.base.init]p8: if the entity is a non-static data member that
2878 // has a brace-or-equal-initializer, the entity is initialized as specified
5814 // If the scope has an associated entity and the using directive is at
5904 /// the same entity or are both typedefs of the same type.
7265 /// \brief Builds a statement that copies/moves the given entity from \p From to
9706 InitializedEntity entity = local
9713 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9714 ExprResult result = sequence.Perform(*this, entity, initKin
[all...]
/external/expat/lib/
H A Dxmlparse.c269 /* false once a parameter entity reference has been skipped */
295 ENTITY *entity; member in struct:open_internal_entity
336 processInternalEntity(XML_Parser parser, ENTITY *entity,
709 parsers (i.e. external entity parsers) will inherit it
1172 /* external parameter entity parsers share the DTD structure
1941 XML_L("illegal parameter entity reference"),
1942 XML_L("undefined entity"),
1943 XML_L("recursive entity reference"),
1944 XML_L("asynchronous entity"),
1946 XML_L("reference to binary entity"),
2310 ENTITY *entity; local
3942 ENTITY *entity = (ENTITY *)lookup(parser, local
3987 ENTITY *entity = (ENTITY *)lookup(parser, &dtd->paramEntities, local
4485 ENTITY *entity; local
4795 processInternalEntity(XML_Parser parser, ENTITY *entity, XML_Bool betweenDecl) argument
4857 ENTITY *entity; local
5000 ENTITY *entity; local
5116 ENTITY *entity; local
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jar ... lang.String decode (java.lang.String) String entity int start int radix Character c String s public static ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 584 milliseconds

123