Home
last modified time | relevance | path

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

/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
DSerializableBean.java30 private Integer iValue = null; field in SerializableBean
48 return iValue; in getIValue()
51 public void setIValue(Integer iValue) { in setIValue() argument
52 this.iValue = iValue; in setIValue()
/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/Source/WebCore/css/
DCSSParser.cpp1070 …strict && !value) || (value && !(value->unit == CSSParserValue::Operator && value->iValue == ','))) in parseValue()
2115 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseFillShorthand()
2262 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseAnimationShorthand()
2320 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseTransitionShorthand()
2797 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',') in parseFillPosition()
2852 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',') in parseFillRepeat()
2891 else if (value->unit == CSSParserValue::Operator && value->iValue == ',') in parseFillSize()
2942 if (val->unit != CSSParserValue::Operator || val->iValue != ',') in parseFillProperty()
3182 if (v->unit != CSSParserValue::Operator && v->iValue != ',') in parseCubicBezierTimingFunctionValue()
3220 if (v->unit != CSSParserValue::Operator && v->iValue != ',') in parseAnimationTimingFunction()
[all …]
DMediaQueryExp.cpp66 if (value->unit == CSSParserValue::Operator && value->iValue == '/') in MediaQueryExp()
DCSSParserValues.h49 int iValue; member
DCSSParserValues.cpp74 RefPtr<CSSPrimitiveValue> primitiveValue = CSSPrimitiveValue::createIdentifier(iValue); in createCSSValue()
DCSSGrammar.y1373 v.iValue = $2;
1518 v.iValue = '(';
1520 v.iValue = ')';
1539 v.iValue = $2;
1552 v.iValue = $2;
1574 v.iValue = ',';
DSVGCSSParser.cpp330 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',') in parseSVGStrokeDasharray()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DFastMath.java664 public static int sign(int iValue) { in sign() argument
665 if (iValue > 0) { in sign()
668 if (iValue < 0) { in sign()
/external/icu4c/test/intltest/
Dnumfmtst.h251 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
Dnumfmtst.cpp2781 double iValue=base+(increment*(i*0.1)); in checkRounding() local
2783 if (iValue!=0) { in checkRounding()
2784 smallIncrement*=iValue; in checkRounding()
2787 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding()
2788 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding()
2789 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding()
2793 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument
2798 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.c10552 int iValue; /* Non-negative integer value if EP_IntValue */ member
17119 static int memsys5Log(int iValue){ in memsys5Log() argument
17121 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++); in memsys5Log()
59421 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
63843 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
63844 return sqlite3_bind_int64(p, i, (i64)iValue);
63846 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
63851 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
64599 i64 iValue;
64603 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c10552 int iValue; /* Non-negative integer value if EP_IntValue */ member
17119 static int memsys5Log(int iValue){ in memsys5Log() argument
17121 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++); in memsys5Log()
59410 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
63832 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
63833 return sqlite3_bind_int64(p, i, (i64)iValue);
63835 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
63840 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
64588 i64 iValue;
64592 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
[all …]