Searched defs:uses (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/
H A Dvariables.cc74 void UseCount::RecordUses(UseCount* uses) { argument
75 if (uses->nreads() > 0) RecordRead(uses->nreads());
76 if (uses->nwrites() > 0) RecordWrite(uses->nwrites());
H A Ddata-flow.cc308 ZoneList<Expression*>* uses = live_vars_.Lookup(var); local
309 uses->Add(expr);
326 // Compute the last use of the definition. The variable uses are
328 // in the list of live uses is the last use.
329 ZoneList<Expression*>* uses = live_vars_.Lookup(var); local
330 while (uses->length() > 0) {
331 Expression* use_site = uses->RemoveLast();
333 if (uses->length() == 0) {
H A Dusage-analyzer.cc62 void RecordUses(UseCount* uses);
296 // the access via the variable or proxy's object uses.
359 void UsageComputer::RecordUses(UseCount* uses) { argument
361 uses->RecordWrite(weight_);
363 uses->RecordRead(weight_);
/external/libxml2/
H A Dxmlschemas.c167 * Macros for attribute uses.
4332 * @uses: attribute uses list
4338 xmlSchemaAttrUsesDump(xmlSchemaItemListPtr uses, FILE * output) argument
4347 if ((uses == NULL) || (uses->nbItems == 0))
4351 for (i = 0; i < uses->nbItems; i++) {
4352 use = uses->items[i];
5011 * ATTENTION TODO: This uses pointer comp. for strings.
6216 xmlSchemaItemListPtr uses,
7081 xmlSchemaParseLocalAttribute(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaItemListPtr uses, int parentType) argument
14012 xmlSchemaCheckDerivationOKRestriction2to4(xmlSchemaParserCtxtPtr pctxt, int action, xmlSchemaBasicItemPtr item, xmlSchemaBasicItemPtr baseItem, xmlSchemaItemListPtr uses, xmlSchemaItemListPtr baseUses, xmlSchemaWildcardPtr wild, xmlSchemaWildcardPtr baseWild) argument
14320 xmlSchemaItemListPtr uses, baseUses, prohibs = NULL; local
15824 xmlSchemaItemListPtr uses = (xmlSchemaItemListPtr) type->attrUses; local
19268 xmlSchemaItemListPtr uses = WXS_LIST_CAST attrGr->attrUses; local
[all...]

Completed in 88 milliseconds