Home
last modified time | relevance | path

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

/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DBookmarkUtils.java60 Bitmap favicon, int rValue, int gValue, int bValue) { in createAddToHomeIntent() argument
64 i.putExtra(Intent.EXTRA_SHORTCUT_ICON, createIcon(context, favicon, rValue, in createAddToHomeIntent()
81 Bitmap favicon, int rValue, int gValue, int bValue) { in createAddToHomeIntent() argument
84 context, shortcutIntent, title, favicon, rValue, gValue, bValue); in createAddToHomeIntent()
122 private static Bitmap createIcon(Context context, Bitmap favicon, int rValue, in createIcon() argument
133 rValue = gValue = bValue = DEFAULT_RGB_VALUE; in createIcon()
140 Color.rgb(rValue, gValue, bValue)); in createIcon()
/external/pdfium/core/src/fxcrt/
Dfx_basic_maps.cpp48 void CFX_MapPtrToPtr::GetNextAssoc(FX_POSITION& rNextPosition, void*& rKey, void*& rValue) const in GetNextAssoc()
70 rValue = pAssocRet->value; in GetNextAssoc()
72 FX_BOOL CFX_MapPtrToPtr::Lookup(void* key, void*& rValue) const in Lookup()
79 rValue = pAssoc->value; in Lookup()
222 CFX_ByteString& rKey, void*& rValue) const in GetNextAssoc()
244 rValue = pAssocRet->value; in GetNextAssoc()
332 FX_BOOL CFX_MapByteStringToPtr::Lookup(FX_BSTR key, void*& rValue) const in Lookup()
339 rValue = pAssoc->value; in Lookup()
468 …yteStringToPtr::GetNextAssoc(FX_POSITION& rNextPosition, CFX_ByteString& rKey, void*& rValue) const in GetNextAssoc()
476 rValue = *(void**)(pKey + 1); in GetNextAssoc()
[all …]
/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/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/pdfium/core/include/fxcrt/
Dfx_basic.h864 FX_BOOL Lookup(void* key, void*& rValue) const;
884 void GetNextAssoc(FX_POSITION& rNextPosition, void*& rKey, void*& rValue) const;
923 FX_BOOL Lookup(KeyType key, ValueType& rValue) const in Lookup() argument
929 rValue = (ValueType)(FX_UINTPTR)pValue; in Lookup()
948 void GetNextAssoc(FX_POSITION& rNextPosition, KeyType& rKey, ValueType& rValue) const in GetNextAssoc() argument
954 rValue = (ValueType)(FX_UINTPTR)pValue; in GetNextAssoc()
1004 FX_BOOL Lookup(FX_BSTR key, void*& rValue) const;
1022 void GetNextAssoc(FX_POSITION& rNextPosition, CFX_ByteString& rKey, void*& rValue) const;
1071 void GetNextAssoc(FX_POSITION& rNextPosition, CFX_ByteString& rKey, void*& rValue) const;
1075 FX_BOOL Lookup(FX_BSTR key, void*& rValue) const;
/external/chromium_org/third_party/sqlite/src/ext/rtree/
Drtree.c241 double rValue; /* Constraint value. */ member
910 bRes = p->rValue<cell_min; in testRtreeCell()
914 bRes = p->rValue>cell_max; in testRtreeCell()
918 bRes = (p->rValue>cell_max || p->rValue<cell_min); in testRtreeCell()
960 case RTREE_LE: res = (coord<=p->rValue); break; in testRtreeEntry()
961 case RTREE_LT: res = (coord<p->rValue); break; in testRtreeEntry()
962 case RTREE_GE: res = (coord>=p->rValue); break; in testRtreeEntry()
963 case RTREE_GT: res = (coord>p->rValue); break; in testRtreeEntry()
964 case RTREE_EQ: res = (coord==p->rValue); break; in testRtreeEntry()
1286 p->rValue = sqlite3_value_double(argv[ii]); in rtreeFilter()
/external/chromium_org/third_party/sqlite/src/src/
Dvdbeapi.c1067 int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){ in sqlite3_bind_double() argument
1072 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue); in sqlite3_bind_double()
Dvdbe.c252 double rValue; in applyNumericAffinity() local
256 if( sqlite3AtoF(pRec->z, &rValue, pRec->n, enc)==0 ) return; in applyNumericAffinity()
261 pRec->r = rValue; in applyNumericAffinity()
/external/pdfium/core/src/fpdfdoc/
Ddoc_form.cpp1370 void *rValue = NULL; in AddControl() local
1371 if (m_ControlMap.Lookup((CPDF_Dictionary*)pWidgetDict, rValue)) { in AddControl()
1372 return (CPDF_FormControl*)rValue; in AddControl()
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c61401 SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
61406 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
62068 double rValue;
62072 if( sqlite3AtoF(pRec->z, &rValue, pRec->n, enc)==0 ) return;
62077 pRec->r = rValue;
124509 double rValue; /* Constraint value. */
125178 bRes = p->rValue<cell_min;
125182 bRes = p->rValue>cell_max;
125186 bRes = (p->rValue>cell_max || p->rValue<cell_min);
125228 case RTREE_LE: res = (coord<=p->rValue); break;
[all …]
/external/sqlite/dist/
Dsqlite3.c67399 SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
67404 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
68173 double rValue;
68177 if( sqlite3AtoF(pRec->z, &rValue, pRec->n, enc)==0 ) return;
68182 pRec->r = rValue;
145008 RtreeDValue rValue; /* Constraint value. */
145753 if( p->u.rValue>=val ) return;
145761 if( p->u.rValue<=val ) return;
145789 case RTREE_LE: if( xN <= p->u.rValue ) return; break;
145790 case RTREE_LT: if( xN < p->u.rValue ) return; break;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c67379 SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
67384 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
68153 double rValue;
68157 if( sqlite3AtoF(pRec->z, &rValue, pRec->n, enc)==0 ) return;
68162 pRec->r = rValue;
144976 RtreeDValue rValue; /* Constraint value. */
145721 if( p->u.rValue>=val ) return;
145729 if( p->u.rValue<=val ) return;
145757 case RTREE_LE: if( xN <= p->u.rValue ) return; break;
145758 case RTREE_LT: if( xN < p->u.rValue ) return; break;
[all …]