Home
last modified time | relevance | path

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

/external/guava/guava-tests/benchmark/com/google/common/hash/
DMessageDigestCreationBenchmark.java42 int retValue = 0; in getInstance() local
44 retValue ^= MessageDigest.getInstance(algorithm).getDigestLength(); in getInstance()
46 return retValue; in getInstance()
50 int retValue = 0; in clone() local
52 retValue ^= ((MessageDigest) md.clone()).getDigestLength(); in clone()
54 return retValue; in clone()
/external/libxml2/
Dxmlschemastypes.c5667 xmlSchemaGetCanonValue(xmlSchemaValPtr val, const xmlChar **retValue) in xmlSchemaGetCanonValue() argument
5669 if ((retValue == NULL) || (val == NULL)) in xmlSchemaGetCanonValue()
5671 *retValue = NULL; in xmlSchemaGetCanonValue()
5675 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue()
5677 *retValue = in xmlSchemaGetCanonValue()
5682 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue()
5684 *retValue = xmlSchemaWhiteSpaceReplace( in xmlSchemaGetCanonValue()
5686 if ((*retValue) == NULL) in xmlSchemaGetCanonValue()
5687 *retValue = BAD_CAST xmlStrdup( in xmlSchemaGetCanonValue()
5703 *retValue = in xmlSchemaGetCanonValue()
[all …]
Dxmlschemas.c1483 xmlChar **retValue) in xmlSchemaGetCanonValueWhtspExt() argument
1490 if ((retValue == NULL) || (val == NULL)) in xmlSchemaGetCanonValueWhtspExt()
1493 *retValue = NULL; in xmlSchemaGetCanonValueWhtspExt()
1519 if (*retValue == NULL) in xmlSchemaGetCanonValueWhtspExt()
1522 *retValue = xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValueWhtspExt()
1524 *retValue = xmlStrdup(value); in xmlSchemaGetCanonValueWhtspExt()
1527 *retValue = xmlStrcat((xmlChar *) *retValue, BAD_CAST " "); in xmlSchemaGetCanonValueWhtspExt()
1528 *retValue = xmlStrcat((xmlChar *) *retValue, value); in xmlSchemaGetCanonValueWhtspExt()
1536 if (*retValue != NULL) in xmlSchemaGetCanonValueWhtspExt()
1537 xmlFree((xmlChar *) (*retValue)); in xmlSchemaGetCanonValueWhtspExt()
Dtestapi.c35299 xmlChar ** retValue; /* the returned value */ in test_xmlSchemaGetCanonValue() local
35306 retValue = gen_const_xmlChar_ptr_ptr(n_retValue, 1); in test_xmlSchemaGetCanonValue()
35308 ret_val = xmlSchemaGetCanonValue(val, (const xmlChar **)retValue); in test_xmlSchemaGetCanonValue()
35312 des_const_xmlChar_ptr_ptr(n_retValue, (const xmlChar **)retValue, 1); in test_xmlSchemaGetCanonValue()
35340 xmlChar ** retValue; /* the returned value */ in test_xmlSchemaGetCanonValueWhtsp() local
35350 retValue = gen_const_xmlChar_ptr_ptr(n_retValue, 1); in test_xmlSchemaGetCanonValueWhtsp()
35353 ret_val = xmlSchemaGetCanonValueWhtsp(val, (const xmlChar **)retValue, ws); in test_xmlSchemaGetCanonValueWhtsp()
35357 des_const_xmlChar_ptr_ptr(n_retValue, (const xmlChar **)retValue, 1); in test_xmlSchemaGetCanonValueWhtsp()
/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/parameter-framework/bindings/c/
DParameterFramework.cpp381 string retValue; in pfwGetStringParameter() local
382 bool success = handle->parameter.getAsString(retValue, status.msg()); in pfwGetStringParameter()
385 *value = strdup(retValue.c_str()); in pfwGetStringParameter()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateIntervalFormat.java1409 BestMatchInfo retValue = fInfo.getBestSkeleton(skeleton); in genSeparateDateTimePtn() local
1410 String bestSkeleton = retValue.bestMatchSkeleton; in genSeparateDateTimePtn()
1411 int differenceInfo = retValue.bestMatchDistanceInfo; in genSeparateDateTimePtn()
1470 SkeletonAndItsBestMatch retValue = null; in genIntervalPattern() local
1525 retValue = new SkeletonAndItsBestMatch(skeleton, bestSkeleton); in genIntervalPattern()
1543 return retValue; in genIntervalPattern()
/external/clang/lib/Sema/
DSemaLambda.cpp560 if (Expr *retValue = ret->getRetValue()) in findEnumForBlockReturn() local
561 return findEnumForBlockReturn(retValue); in findEnumForBlockReturn()
594 Expr *retValue = ret->getRetValue(); in adjustBlockReturnsToEnum() local
595 if (S.Context.hasSameType(retValue->getType(), returnType)) in adjustBlockReturnsToEnum()
600 assert(retValue->getType()->isIntegralOrUnscopedEnumerationType()); in adjustBlockReturnsToEnum()
602 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(retValue); in adjustBlockReturnsToEnum()
604 Expr *E = (cleanups ? cleanups->getSubExpr() : retValue); in adjustBlockReturnsToEnum()
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
DCharMatcherTest.java622 char[] retValue = new char[chars.size()]; in randomChars() local
625 retValue[i++] = c; in randomChars()
627 Arrays.sort(retValue); in randomChars()
628 return retValue; in randomChars()
/external/libxml2/os400/libxmlrpg/
Dxmlschemastypes.rpgle168 d retValue * value const xmlChar * *
174 d retValue * value const xmlChar * *
/external/guava/guava-tests/test/com/google/common/base/
DCharMatcherTest.java740 char[] retValue = new char[chars.size()]; in randomChars() local
743 retValue[i++] = c; in randomChars()
745 Arrays.sort(retValue); in randomChars()
746 return retValue; in randomChars()
/external/aac/libAACenc/src/
Daacenc_tns.cpp587 FIXP_DBL retValue; in FDKaacEnc_AutoCorrNormFac() local
603 retValue = fMult(tmp,tmp); in FDKaacEnc_AutoCorrNormFac()
608 retValue = /*FL2FXCONST_DBL(MAX_INV_NRGFAC*FDKpow(2,-28))*/ (FIXP_DBL)MAXVAL_DBL; in FDKaacEnc_AutoCorrNormFac()
612 return retValue; in FDKaacEnc_AutoCorrNormFac()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/jarjar/lib/
Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...