Searched defs:iValue (Results 1 - 25 of 30) sorted by relevance

12

/external/pdfium/fxjs/xfa/
H A Dcjx_boolean.cpp36 int32_t iValue = FXSYS_atoi(newValue.c_str()); local
37 WideString wsNewValue(iValue == 0 ? L"0" : L"1");
H A Dcjx_eventpseudomodel.cpp28 void InterProperty(CFXJSE_Value* pValue, int32_t& iValue, bool bSetting) { argument
30 iValue = pValue->ToInteger();
33 pValue->SetInteger(iValue);
H A Dcjx_hostpseudomodel.cpp522 int32_t iValue = pNotify->GetAppProvider()->MsgBox(message, title, local
524 return CJS_Return(runtime->NewNumber(iValue));
H A Dcjx_node.cpp164 int32_t iValue = params.size() >= 2 ? runtime->ToInt32(params[1]) : 0; local
167 iValue, CXFA_Node::NameToElement(expression));
H A Dcjx_object.cpp91 int32_t iValue = ch - L'0'; local
92 if (iValue >= 0 && iValue <= 9) {
95 r = r * 10 + iValue;
98 g = g * 10 + iValue;
101 b = b * 10 + iValue;
293 Optional<int32_t> iValue = TryInteger(eAttr, bUseDefault); local
294 if (!iValue)
296 return {WideString::Format(L"%d", *iValue)};
354 bool CJX_Object::SetInteger(XFA_Attribute eAttr, int32_t iValue, boo argument
[all...]
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DToken.cpp64 bool Token::iValue(int *value) const function in class:pp::Token
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
H A DSerializableBean.java30 private Integer iValue = null; field in class:SerializableBean
48 return iValue;
51 public void setIValue(Integer iValue) { argument
52 this.iValue = iValue;
/external/parameter-framework/upstream/parameter/
H A DIntegerParameterType.cpp202 int32_t iValue = value; local
205 signExtend(iValue);
207 stream << iValue; local
264 int32_t iValue = uiValue; local
267 signExtend(iValue);
270 iUserValue = iValue;
333 int32_t iValue = uiValue; local
335 signExtend(iValue);
337 iValueToConvert = iValue;
H A DParameter.cpp127 bool CParameter::access(int32_t &iValue, bool bSet, argument
130 return doAccess(iValue, bSet, parameterAccessContext);
H A DSelectionCriterionType.cpp54 bool CSelectionCriterionType::addValuePair(int iValue, const std::string &strValue, argument
58 if (_bInclusive && (!iValue || (iValue & (iValue - 1)))) {
61 error << "Rejecting value pair association: 0x" << std::hex << iValue << " - " << strValue
73 << iValue << " - " << strValue << " for Selection Criterion Type " << getName();
79 if (it->second == iValue) {
82 << " 0x" << std::hex << iValue << " - " << strValue
88 _numToLitMap[strValue] = iValue;
93 bool CSelectionCriterionType::getNumericalValue(const std::string &strValue, int &iValue) cons
132 getLiteralValue(int iValue, std::string &strValue) const argument
[all...]
/external/pdfium/core/fxcrt/css/
H A Dcfx_cssstyleselector.cpp220 int32_t iValue = local
222 if (iValue >= 1 && iValue <= 9) {
223 pComputedStyle->m_InheritedData.m_wFontWeight = iValue * 100;
/external/pdfium/fxjs/
H A Dcjs_util.cpp43 int iValue; member in struct:__anon17991::TbConvertAdditional
231 WideString::Format(L"%d", cTableAd[i].iValue).c_str());
/external/deqp/external/openglcts/modules/common/
H A DglcTextureFilterAnisotropicTests.cpp226 GLint iValue; local
227 gl.getTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, &iValue);
231 if (iValue != 1)
234 << "GetTexParameteriv failed. Expected value: 1, Queried value: " << iValue
247 << "GetTexParameterfv failed. Expected value: 1.0, Queried value: " << iValue
253 iValue = 2;
254 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, iValue);
257 gl.getTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, &iValue);
260 if (iValue != 2)
263 << "texParameteri failed. Expected value: 2, Queried value: " << iValue
341 GLint iValue; local
[all...]
/external/deqp/external/openglcts/modules/gles31/
H A Des31cExplicitUniformLocationTest.cpp516 UniformValueGenerator() : fValue(0.0f), iValue(0)
529 return (iValue += 1);
535 GLint iValue; member in class:glcts::__anon4182::UniformValueGenerator
/external/pdfium/core/fxcrt/
H A Dfx_bidi.cpp285 int32_t iValue) {
292 (*chars)[i].m_iBidiClass = static_cast<int16_t>(iValue);
294 (*chars)[i].m_iBidiLevel = static_cast<int16_t>(iValue);
281 SetDeferredRun(std::vector<CFX_Char>* chars, bool bClass, size_t iStart, size_t iCount, int32_t iValue) argument
/external/pdfium/xfa/fgas/font/
H A Dcfgas_fontmgr.cpp89 int32_t iValue = 0; local
92 iValue += 64;
96 iValue += 32;
99 iValue += 16;
101 iValue += 8;
102 return iValue;
/external/pdfium/third_party/libtiff/
H A Dtif_jpeg.c1326 int iValue; local
1328 for( iValue = 0; iValue < value_count; iValue++ )
1330 ((unsigned char *) buf)[iValue] =
1331 line_work_buf[iValue] & 0xff;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DNumberFormatTest.java2468 BigDecimal iValue = base.add(increment.multiply(new BigDecimal(i)).movePointLeft(1));
2470 if (iValue.signum() != 0) {
2471 smallIncrement.multiply(iValue); // scale unless zero
2474 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed);
2475 lastParsed = checkRound(nf, iValue, lastParsed);
2476 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed);
2480 private BigDecimal checkRound(DecimalFormat nf, BigDecimal iValue, BigDecimal lastParsed) { argument
2481 String formatedBigDecimal = nf.format(iValue);
2482 String formattedDouble = nf.format(iValue.doubleValue());
2485 errln("Failure at: " + iValue
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java2465 BigDecimal iValue = base.add(increment.multiply(new BigDecimal(i)).movePointLeft(1));
2467 if (iValue.signum() != 0) {
2468 smallIncrement.multiply(iValue); // scale unless zero
2471 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed);
2472 lastParsed = checkRound(nf, iValue, lastParsed);
2473 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed);
2477 private BigDecimal checkRound(DecimalFormat nf, BigDecimal iValue, BigDecimal lastParsed) { argument
2478 String formatedBigDecimal = nf.format(iValue);
2479 String formattedDouble = nf.format(iValue.doubleValue());
2482 errln("Failure at: " + iValue
[all...]
/external/python/cpython3/Tools/msi/bundle/bootstrap/
H A DPythonBootstrapperApplication.cpp1375 int iValue; local
1425 } else if (tryConvert && ::StrToIntExW(bstrValue, STIF_DEFAULT, &iValue)) {
1426 _engine->SetVariableNumeric(scz, iValue);
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.cpp3464 double iValue=base+(increment*(i*0.1)); local
3466 if (iValue!=0) {
3467 smallIncrement*=iValue;
3470 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed);
3471 lastParsed=checkRound(df, iValue, lastParsed);
3472 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed);
3476 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { argument
3481 df->format(iValue, formattedDecimal, status);
/external/caliper/lib/
H A Djoda-time-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/joda/ org/joda/time/ org/joda/time/base/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...

Completed in 2944 milliseconds

12