Home
last modified time | relevance | path

Searched refs:rValue (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/core/src/fxcrt/
Dfx_basic_maps.cpp47 void CFX_MapPtrToPtr::GetNextAssoc(FX_POSITION& rNextPosition, void*& rKey, void*& rValue) const in GetNextAssoc()
69 rValue = pAssocRet->value; in GetNextAssoc()
71 FX_BOOL CFX_MapPtrToPtr::Lookup(void* key, void*& rValue) const in Lookup()
78 rValue = pAssoc->value; in Lookup()
217 CFX_ByteString& rKey, void*& rValue) const in GetNextAssoc()
239 rValue = pAssocRet->value; in GetNextAssoc()
327 FX_BOOL CFX_MapByteStringToPtr::Lookup(FX_BSTR key, void*& rValue) const in Lookup()
334 rValue = pAssoc->value; in Lookup()
457 …yteStringToPtr::GetNextAssoc(FX_POSITION& rNextPosition, CFX_ByteString& rKey, void*& rValue) const in GetNextAssoc()
465 rValue = *(void**)(pKey + 1); in GetNextAssoc()
[all …]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
Dconfig.cpp59 bool getValue(const char* name, unsigned long& rValue) const;
60 bool getValue(const char* name, unsigned short & rValue) const;
427 bool CNfcConfig::getValue(const char* name, unsigned long& rValue) const in getValue()
435 rValue = static_cast<unsigned long>(pParam->numValue()); in getValue()
451 bool CNfcConfig::getValue(const char* name, unsigned short& rValue) const in getValue()
459 rValue = static_cast<unsigned short>(pParam->numValue()); in getValue()
/external/libnfc-nci/src/adaptation/
Dconfig.cpp59 bool getValue(const char* name, unsigned long& rValue) const;
60 bool getValue(const char* name, unsigned short & rValue) const;
442 bool CNfcConfig::getValue(const char* name, unsigned long& rValue) const in getValue()
450 rValue = static_cast<unsigned long>(pParam->numValue()); in getValue()
466 bool CNfcConfig::getValue(const char* name, unsigned short& rValue) const in getValue()
474 rValue = static_cast<unsigned short>(pParam->numValue()); in getValue()
/external/libnfc-nci/halimpl/pn54x/utils/
DphNxpConfig.cpp94 bool getValue(const char* name, unsigned long& rValue) const;
95 bool getValue(const char* name, unsigned short & rValue) const;
522 bool CNfcConfig::getValue(const char* name, unsigned long& rValue) const in getValue()
530 rValue = static_cast<unsigned long>(pParam->numValue()); in getValue()
546 bool CNfcConfig::getValue(const char* name, unsigned short& rValue) const in getValue()
554 rValue = static_cast<unsigned short>(pParam->numValue()); in getValue()
/external/pdfium/core/include/fxcrt/
Dfx_basic.h803 FX_BOOL Lookup(void* key, void*& rValue) const;
823 void GetNextAssoc(FX_POSITION& rNextPosition, void*& rKey, void*& rValue) const;
859 FX_BOOL Lookup(KeyType key, ValueType& rValue) const in Lookup() argument
865 rValue = (ValueType)(FX_UINTPTR)pValue; in Lookup()
884 void GetNextAssoc(FX_POSITION& rNextPosition, KeyType& rKey, ValueType& rValue) const in GetNextAssoc() argument
890 rValue = (ValueType)(FX_UINTPTR)pValue; in GetNextAssoc()
937 FX_BOOL Lookup(FX_BSTR key, void*& rValue) const;
955 void GetNextAssoc(FX_POSITION& rNextPosition, CFX_ByteString& rKey, void*& rValue) const;
1001 void GetNextAssoc(FX_POSITION& rNextPosition, CFX_ByteString& rKey, void*& rValue) const;
1005 FX_BOOL Lookup(FX_BSTR key, void*& rValue) const;
/external/pdfium/core/src/fpdfdoc/
Ddoc_form.cpp1349 void *rValue = NULL; in AddControl() local
1350 if (m_ControlMap.Lookup((CPDF_Dictionary*)pWidgetDict, rValue)) { in AddControl()
1351 return (CPDF_FormControl*)rValue; in AddControl()
/external/sqlite/dist/
Dsqlite3.c70234 SQLITE_API int SQLITE_STDCALL sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
70239 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
71004 double rValue;
71008 if( sqlite3AtoF(pRec->z, &rValue, pRec->n, enc)==0 ) return;
71013 pRec->u.r = rValue;
151274 RtreeDValue rValue; /* Constraint value. */
152017 if( p->u.rValue>=val ) return;
152025 if( p->u.rValue<=val ) return;
152053 case RTREE_LE: if( xN <= p->u.rValue ) return; break;
152054 case RTREE_LT: if( xN < p->u.rValue ) return; break;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c70216 SQLITE_API int SQLITE_STDCALL sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
70221 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
70986 double rValue;
70990 if( sqlite3AtoF(pRec->z, &rValue, pRec->n, enc)==0 ) return;
70995 pRec->u.r = rValue;
151244 RtreeDValue rValue; /* Constraint value. */
151987 if( p->u.rValue>=val ) return;
151995 if( p->u.rValue<=val ) return;
152023 case RTREE_LE: if( xN <= p->u.rValue ) return; break;
152024 case RTREE_LT: if( xN < p->u.rValue ) return; break;
[all …]