Home
last modified time | relevance | path

Searched refs:iValue (Results 1 – 16 of 16) sorted by relevance

/external/srec/srec/EventLog/src/
DEventLogImpl.c103 int iValue; in propertyChanged() local
134 CHKLOG(rc, list->get(list, i, &iValue)); in propertyChanged()
137 CHKLOG(rc, SR_EventLogTokenInt(eventLog, lValue, iValue)); in propertyChanged()
739 int iValue; in SR_EventLogEventSessionImpl() local
758 CHKLOG(rc, ESR_SessionGetInt(key, &iValue)); in SR_EventLogEventSessionImpl()
759 CHKLOG(rc, SR_EventLogTokenInt(self, key, iValue)); in SR_EventLogEventSessionImpl()
789 CHKLOG(rc, list->get(list, j, &iValue)); in SR_EventLogEventSessionImpl()
792 CHKLOG(rc, SR_EventLogTokenInt(self, lValue, iValue)); in SR_EventLogEventSessionImpl()
/external/webkit/WebCore/css/
DCSSParser.cpp895 …strict && !value) || (value && !(value->unit == CSSParserValue::Operator && value->iValue == ','))) in parseValue()
1826 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseFillShorthand()
1964 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseAnimationShorthand()
2022 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseTransitionShorthand()
2329 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',') in parseFillPosition()
2385 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',') in parseFillRepeat()
2424 else if (value->unit == CSSParserValue::Operator && value->iValue == ',') in parseFillSize()
2475 if (val->unit != CSSParserValue::Operator || val->iValue != ',') in parseFillProperty()
2704 if (v->unit != CSSParserValue::Operator && v->iValue != ',') in parseTimingFunctionValue()
2752 if (val->unit != CSSParserValue::Operator || val->iValue != ',') in parseAnimationProperty()
[all …]
DCSSParserValues.h47 int iValue; member
DMediaQueryExp.cpp63 if (value->unit == CSSParserValue::Operator && value->iValue == '/') in MediaQueryExp()
DCSSParserValues.cpp67 RefPtr<CSSPrimitiveValue> primitiveValue = CSSPrimitiveValue::createIdentifier(iValue); in createCSSValue()
DSVGCSSParser.cpp322 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',') in parseSVGStrokeDasharray()
DCSSPrimitiveValue.cpp936 value.iValue = m_value.ident; in parserValue()
DCSSGrammar.y1325 v.iValue = $2;
/external/chromium/third_party/icu/source/test/intltest/
Dnumfmtst.h235 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
Dnumfmtst.cpp2503 double iValue=base+(increment*(i*0.1)); in checkRounding() local
2505 if (iValue!=0) { in checkRounding()
2506 smallIncrement*=iValue; in checkRounding()
2509 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding()
2510 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding()
2511 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding()
2515 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument
2520 df->format(iValue, formattedDecimal, status); in checkRound()
/external/icu4c/test/intltest/
Dnumfmtst.h245 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
Dnumfmtst.cpp2509 double iValue=base+(increment*(i*0.1)); in checkRounding() local
2511 if (iValue!=0) { in checkRounding()
2512 smallIncrement*=iValue; in checkRounding()
2515 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding()
2516 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding()
2517 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding()
2521 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument
2526 df->format(iValue, formattedDecimal, status); in checkRound()
/external/srec/shared/src/
DSessionTypeImpl.c1074 int iValue; in addParMapping() local
1093 CHKLOG(rc, lstrtoi(value, &iValue, 10)); in addParMapping()
1097 CHKLOG(rc, self->setInt(self, key, iValue)); in addParMapping()
/external/srec/srec/Recognizer/src/
DRecognizerImpl.c371 int iValue; in SR_RecognizerGetFrontendLegacyParametersImpl() local
485 CHKLOG(rc, IntArrayListGet(intList, i, &iValue)); in SR_RecognizerGetFrontendLegacyParametersImpl()
486 params->spectrum_filter_freq[i] = iValue; in SR_RecognizerGetFrontendLegacyParametersImpl()
498 CHKLOG(rc, IntArrayListGet(intList, i, &iValue)); in SR_RecognizerGetFrontendLegacyParametersImpl()
499 params->spectrum_filter_spread[i] = iValue; in SR_RecognizerGetFrontendLegacyParametersImpl()
/external/sqlite/dist/
Dsqlite3.c9124 int iValue; /* Integer value if EP_IntValue */ member
14253 static int memsys5Log(int iValue){ in memsys5Log() argument
14255 for(iLog=0; (1<<iLog)<iValue; iLog++); in memsys5Log()
47335 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue);
51550 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
51551 return sqlite3_bind_int64(p, i, (i64)iValue);
51553 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
51558 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
60103 pE->u.iValue = iCol;
60896 int iValue = 0;
[all …]
Dsqlite3.c.orig9119 int iValue; /* Integer value if EP_IntValue */
9169 #define EP_IntValue 0x0400 /* Integer value contained in u.iValue */
14239 ** Return the ceiling of the logarithm base 2 of iValue.
14248 static int memsys5Log(int iValue){
14250 for(iLog=0; (1<<iLog)<iValue; iLog++);
47324 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue);
51539 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
51540 return sqlite3_bind_int64(p, i, (i64)iValue);
51542 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
51547 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
[all …]