/external/chromium_org/third_party/sqlite/src/src/ |
D | test_wholenumber.c | 36 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()
|
D | test_malloc.c | 1227 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()
|
D | test_mutex.c | 332 int iValue; in test_config() member 353 i = aOpt[i].iValue; in test_config()
|
D | mem5.c | 443 static int memsys5Log(int iValue){ in memsys5Log() argument 445 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++); in memsys5Log()
|
D | vdbeapi.c | 1077 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()
|
D | test_vfs.c | 1147 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()
|
D | expr.c | 386 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()
|
D | test_multiplex.c | 1107 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()
|
D | test6.c | 696 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/ |
D | SerializableBean.java | 30 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/pdfium/fpdfsdk/src/javascript/ |
D | JS_Value.cpp | 21 CJS_Value::CJS_Value(v8::Isolate* isolate, const int &iValue):m_isolate(isolate) in CJS_Value() argument 23 operator =(iValue); in CJS_Value() 155 void CJS_Value::operator =(int iValue) in operator =() argument 157 m_pValue = JS_NewNumber(m_isolate, iValue); in operator =() 319 void CJS_PropValue::operator <<(int iValue) in operator <<() argument 322 CJS_Value::operator =(iValue); in operator <<() 325 void CJS_PropValue::operator >>(int & iValue) const in operator >>() 328 iValue = CJS_Value::operator int(); in operator >>()
|
D | util.cpp | 321 int iValue; in printd() member 339 sValue.Format((FX_LPCWSTR)L"%d",cTableAd[iIndex].iValue); in printd() 417 int iValue; in printd() member 435 sValue.Format((FX_LPCWSTR)L"%d",cTableAd[iIndex].iValue); in printd()
|
/external/srec/srec/EventLog/src/ |
D | EventLogImpl.c | 103 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() 751 int iValue; in SR_EventLogEventSessionImpl() local 770 CHKLOG(rc, ESR_SessionGetInt(key, &iValue)); in SR_EventLogEventSessionImpl() 771 CHKLOG(rc, SR_EventLogTokenInt(self, key, iValue)); in SR_EventLogEventSessionImpl() 801 CHKLOG(rc, list->get(list, j, &iValue)); in SR_EventLogEventSessionImpl() 804 CHKLOG(rc, SR_EventLogTokenInt(self, lValue, iValue)); in SR_EventLogEventSessionImpl()
|
/external/pdfium/fpdfsdk/include/javascript/ |
D | JS_Value.h | 18 CJS_Value(v8::Isolate* isolate, const int &iValue); 49 void operator = (int iValue);
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
D | Token.cpp | 56 bool Token::iValue(int *value) const in iValue() function in pp::Token
|
D | Token.h | 96 bool iValue(int *value) const;
|
D | DirectiveParser.cpp | 736 if (valid && !token->iValue(&version)) in parseVersion() 806 if (valid && !token->iValue(&line)) in parseLine() 820 if (valid && !token->iValue(&file)) in parseLine()
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | numfmtst.h | 277 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
|
D | numfmtst.cpp | 2913 double iValue=base+(increment*(i*0.1)); in checkRounding() local 2915 if (iValue!=0) { in checkRounding() 2916 smallIncrement*=iValue; in checkRounding() 2919 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding() 2920 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding() 2921 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding() 2925 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument 2930 df->format(iValue, formattedDecimal, status); in checkRound()
|
/external/icu/icu4c/source/test/intltest/ |
D | numfmtst.h | 293 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
|
D | numfmtst.cpp | 2938 double iValue=base+(increment*(i*0.1)); in checkRounding() local 2940 if (iValue!=0) { in checkRounding() 2941 smallIncrement*=iValue; in checkRounding() 2944 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding() 2945 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding() 2946 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding() 2950 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument 2955 df->format(iValue, formattedDecimal, status); in checkRound()
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSParserValues.h | 145 int iValue; member
|
D | MediaQueryParser.cpp | 246 value.iValue = token.delimiter(); in addParserValue()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | MediaQueryExp.cpp | 278 … } else if (i == 1 && value->unit == CSSParserValue::Operator && value->iValue == '/') { in createIfValid()
|
/external/srec/shared/src/ |
D | SessionTypeImpl.c | 1074 int iValue; in addParMapping() local 1093 CHKLOG(rc, lstrtoi(value, &iValue, 10)); in addParMapping() 1097 CHKLOG(rc, self->setInt(self, key, iValue)); in addParMapping()
|