Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/sqlite/src/src/
Dtest_wholenumber.c36 unsigned iValue; /* Current value */ member
91 pCur->iValue++; in wholenumberNext()
104 sqlite3_result_int64(ctx, pCur->iValue); in wholenumberColumn()
113 *pRowid = pCur->iValue; in wholenumberRowid()
123 return pCur->iValue>pCur->mxValue || pCur->iValue==0; in wholenumberEof()
152 pCur->iValue = 1; in wholenumberFilter()
156 if( v>pCur->iValue && v<=pCur->mxValue ) pCur->iValue = v; in wholenumberFilter()
161 if( v>=pCur->iValue && v<pCur->mxValue ) pCur->mxValue = v; in wholenumberFilter()
Dtest_malloc.c1227 int rc, iValue, mxValue; in test_status() local
1261 iValue = 0; in test_status()
1263 rc = sqlite3_status(op, &iValue, &mxValue, resetFlag); in test_status()
1266 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(iValue)); in test_status()
1284 int rc, iValue, mxValue; in test_db_status() local
1320 iValue = 0; in test_db_status()
1322 rc = sqlite3_db_status(db, op, &iValue, &mxValue, resetFlag); in test_db_status()
1325 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(iValue)); in test_db_status()
Dtest_mutex.c332 int iValue; in test_config() member
353 i = aOpt[i].iValue; in test_config()
Dmem5.c443 static int memsys5Log(int iValue){ in memsys5Log() argument
445 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++); in memsys5Log()
Dvdbeapi.c1077 int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){ in sqlite3_bind_int() argument
1078 return sqlite3_bind_int64(p, i, (i64)iValue); in sqlite3_bind_int()
1080 int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){ in sqlite3_bind_int64() argument
1085 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue); in sqlite3_bind_int64()
Dtest_vfs.c1147 int iValue; in testvfs_obj_cmd() member
1188 if( aFlag[idx].iValue<0 && nFlags>1 ){ in testvfs_obj_cmd()
1192 iNew |= aFlag[idx].iValue; in testvfs_obj_cmd()
1200 if( p->iDevchar & aFlag[iFlag].iValue ){ in testvfs_obj_cmd()
Dexpr.c386 int iValue = 0; in sqlite3ExprAlloc() local
390 || sqlite3GetInt32(pToken->z, &iValue)==0 ){ in sqlite3ExprAlloc()
392 assert( iValue>=0 ); in sqlite3ExprAlloc()
402 pNew->u.iValue = iValue; in sqlite3ExprAlloc()
617 assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); in sqlite3ExprDelete()
1211 *pValue = p->u.iValue; in sqlite3ExprIsInteger()
1952 int i = pExpr->u.iValue; in codeInteger()
3451 if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){ in sqlite3ExprCompare()
Dtest_multiplex.c1107 int iValue = 0; in test_multiplex_control() local
1141 if( Tcl_GetIntFromObj(interp, objv[4], &iValue) ){ in test_multiplex_control()
1144 pArg = (void *)&iValue; in test_multiplex_control()
Dtest6.c696 int iValue; in processDevSymArgs() member
763 iDc |= aFlag[iChoice].iValue; in processDevSymArgs()
/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/chromium_org/third_party/angle/src/compiler/preprocessor/
DToken.cpp56 bool Token::iValue(int* value) const in iValue() function in pp::Token
DToken.h83 bool iValue(int* value) const;
DDirectiveParser.cpp730 if (valid && !token->iValue(&version)) in parseVersion()
785 if (valid && !token->iValue(&line)) in parseLine()
799 if (valid && !token->iValue(&file)) in parseLine()
/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/chromium_org/third_party/icu/source/test/intltest/
Dnumfmtst.h248 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
Dnumfmtst.cpp2521 double iValue=base+(increment*(i*0.1)); in checkRounding() local
2523 if (iValue!=0) { in checkRounding()
2524 smallIncrement*=iValue; in checkRounding()
2527 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding()
2528 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding()
2529 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding()
2533 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument
2538 df->format(iValue, formattedDecimal, status); in checkRound()
/external/icu4c/test/intltest/
Dnumfmtst.h260 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
Dnumfmtst.cpp2833 double iValue=base+(increment*(i*0.1)); in checkRounding() local
2835 if (iValue!=0) { in checkRounding()
2836 smallIncrement*=iValue; in checkRounding()
2839 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding()
2840 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding()
2841 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding()
2845 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument
2850 df->format(iValue, formattedDecimal, status); in checkRound()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSParserValues.cpp91 RefPtr<CSSPrimitiveValue> primitiveValue = CSSPrimitiveValue::createParserOperator(iValue); in createCSSValue()
DCSSParserValues.h147 int iValue; member
DCSSParser-in.cpp1527 return value && value->unit == CSSParserValue::Operator && value->iValue == ','; in isComma()
1533 return value->unit == CSSParserValue::Operator && value->iValue == '/'; in isForwardSlashOperator()
1842 if (!value || !(value->unit == CSSParserValue::Operator && value->iValue == ',')) in parseValue()
2894 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseFillShorthand()
3085 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseAnimationShorthand()
3142 if (val->unit == CSSParserValue::Operator && val->iValue == ',') { in parseTransitionShorthand()
4032 if (value->unit == CSSParserValue::Operator && value->iValue == ',') in parseFillSize()
4977 if (i->unit != CSSParserValue::Operator || i->iValue != ',') in parseCounterContent()
4992 if (i->unit != CSSParserValue::Operator || i->iValue != ',') in parseCounterContent()
5043 if (a->unit == CSSParserValue::Operator && a->iValue == ',') { in parseClipShape()
[all …]
DMediaQueryExp.cpp255 … } else if (i == 1 && value->unit == CSSParserValue::Operator && value->iValue == '/') { in create()
DSVGCSSParser.cpp345 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',') in parseSVGStrokeDasharray()
/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()

12