Home
last modified time | relevance | path

Searched refs:retValue (Results 1 – 20 of 20) sorted by relevance

/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dtypeinfoisderivedfrom64.js96 var retValue;
108 retValue = attrTypeInfo.isDerivedFrom("http://www.w3.org/1999/xhtml","classType",1);
109 assertTrue("derivedFromClassType",retValue);
110 retValue = attrTypeInfo.isDerivedFrom("http://www.w3.org/2001/XMLSchema","string",1);
111 assertTrue("derivedFromString",retValue);
Dtypeinfoisderivedfrom63.js96 var retValue;
111 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/TR/REC-xml",nullName,0);
112 assertFalse("typeinfoisderivedfrom63",retValue);
Dtypeinfoisderivedfrom71.js95 var retValue;
106 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/1999/xhtml","field",0);
107 assertTrue("isDerived",retValue);
Dtypeinfoisderivedfrom66.js100 var retValue;
111 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/1999/xhtml","emp0004_5Type",0);
112 assertTrue("typeinfoisderivedfrom66",retValue);
Dtypeinfoisderivedfrom67.js96 var retValue;
107 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/1999/xhtml","emp0004_5Type",4);
108 assertTrue("isDerived",retValue);
Dtypeinfoisderivedfrom69.js96 var retValue;
107 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/2001/XMLSchema","integer",12);
108 assertFalse("isDerived",retValue);
Dtypeinfoisderivedfrom65.js98 var retValue;
109 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/2001/XMLSchema","string",8);
110 assertTrue("lisrDerivedFromString",retValue);
Dtypeinfoisderivedfrom72.js96 var retValue;
107 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/1999/xhtml","field",12);
108 assertFalse("isDerived",retValue);
Dtypeinfoisderivedfrom70.js96 var retValue;
107 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/2001/XMLSchema","string",0);
108 assertTrue("isDerived",retValue);
Dtypeinfoisderivedfrom68.js96 var retValue;
107 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/1999/xhtml","emp0004_5Type",0);
108 assertTrue("isDerived",retValue);
Dtypeinfoisderivedfrom73.js95 var retValue;
106 retValue = elemTypeInfo.isDerivedFrom("http://www.w3.org/1999/xhtml","emType",0);
107 assertTrue("isDerived",retValue);
/external/libxml2/
Dxmlschemastypes.c5662 xmlSchemaGetCanonValue(xmlSchemaValPtr val, const xmlChar **retValue) in xmlSchemaGetCanonValue() argument
5664 if ((retValue == NULL) || (val == NULL)) in xmlSchemaGetCanonValue()
5666 *retValue = NULL; in xmlSchemaGetCanonValue()
5670 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue()
5672 *retValue = in xmlSchemaGetCanonValue()
5677 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue()
5679 *retValue = xmlSchemaWhiteSpaceReplace( in xmlSchemaGetCanonValue()
5681 if ((*retValue) == NULL) in xmlSchemaGetCanonValue()
5682 *retValue = BAD_CAST xmlStrdup( in xmlSchemaGetCanonValue()
5698 *retValue = in xmlSchemaGetCanonValue()
[all …]
Dxmlschemas.c1478 xmlChar **retValue) in xmlSchemaGetCanonValueWhtspExt() argument
1485 if ((retValue == NULL) || (val == NULL)) in xmlSchemaGetCanonValueWhtspExt()
1488 *retValue = NULL; in xmlSchemaGetCanonValueWhtspExt()
1514 if (*retValue == NULL) in xmlSchemaGetCanonValueWhtspExt()
1517 *retValue = xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValueWhtspExt()
1519 *retValue = xmlStrdup(value); in xmlSchemaGetCanonValueWhtspExt()
1522 *retValue = xmlStrcat((xmlChar *) *retValue, BAD_CAST " "); in xmlSchemaGetCanonValueWhtspExt()
1523 *retValue = xmlStrcat((xmlChar *) *retValue, value); in xmlSchemaGetCanonValueWhtspExt()
1531 if (*retValue != NULL) in xmlSchemaGetCanonValueWhtspExt()
1532 xmlFree((xmlChar *) (*retValue)); in xmlSchemaGetCanonValueWhtspExt()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DTemplateList.java878 ElemTemplate retValue = null; in next() local
889 retValue = curPattern.getTemplate(); in next()
895 retValue = curPattern.getTemplate(); in next()
908 retValue = (ElemTemplate) hashIterator.nextElement(); in next()
913 ct = (ElemTemplate) m_compilerCache.get(new Integer(retValue.getUid())); in next()
916 m_compilerCache.put(new Integer(retValue.getUid()), retValue); in next()
917 return retValue; in next()
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
DOs.java247 boolean retValue = false; in isOs()
318 retValue = isFamily && isName && isArch && isVersion; in isOs()
320 return retValue; in isOs()
/external/libxml2/include/libxml/
Dxmlschemastypes.h113 const xmlChar **retValue);
116 const xmlChar **retValue,
/external/clang/lib/Sema/
DSemaLambda.cpp298 if (Expr *retValue = ret->getRetValue()) in findEnumForBlockReturn() local
299 return findEnumForBlockReturn(retValue); in findEnumForBlockReturn()
332 Expr *retValue = ret->getRetValue(); in adjustBlockReturnsToEnum() local
333 if (S.Context.hasSameType(retValue->getType(), returnType)) in adjustBlockReturnsToEnum()
338 assert(retValue->getType()->isIntegralOrUnscopedEnumerationType()); in adjustBlockReturnsToEnum()
340 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(retValue); in adjustBlockReturnsToEnum()
342 Expr *E = (cleanups ? cleanups->getSubExpr() : retValue); in adjustBlockReturnsToEnum()
/external/webkit/Source/WebCore/plugins/android/
DPluginViewAndroid.cpp409 bool* retValue = static_cast<bool*>(value); in platformGetValueStatic() local
410 *retValue = !networkStateNotifier().onLine(); in platformGetValueStatic()
548 bool* retValue = static_cast<bool*>(value); in platformGetValue() local
549 *retValue = !networkStateNotifier().onLine(); in platformGetValue()
/external/aac/libAACenc/src/
Daacenc_tns.cpp589 FIXP_DBL retValue; in FDKaacEnc_AutoCorrNormFac() local
605 retValue = fMult(tmp,tmp); in FDKaacEnc_AutoCorrNormFac()
610 retValue = /*FL2FXCONST_DBL(MAX_INV_NRGFAC*FDKpow(2,-28))*/ (FIXP_DBL)MAXVAL_DBL; in FDKaacEnc_AutoCorrNormFac()
614 return retValue; in FDKaacEnc_AutoCorrNormFac()
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-111557.js4620 var retValue = false;
4628 retValue = true;
4633 return retValue;