Home
last modified time | relevance | path

Searched refs:upperValue (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DASCIICType.h140 template<typename CharType> inline int toASCIIHexValue(CharType upperValue, CharType lowerValue) in toASCIIHexValue() argument
142 ASSERT(isASCIIHexDigit(upperValue) && isASCIIHexDigit(lowerValue)); in toASCIIHexValue()
143 return ((toASCIIHexValue(upperValue) << 4) & 0xF0) | toASCIIHexValue(lowerValue); in toASCIIHexValue()
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBKeyRange.cpp71 ScriptValue IDBKeyRange::upperValue(ExecutionContext* context) const in upperValue() function in WebCore::IDBKeyRange
124 …ionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen,… in bound() argument
128 RefPtr<IDBKey> upper = scriptValueToIDBKey(&requestState, upperValue); in bound()
DIDBKeyRange.h64 ScriptValue upperValue(ExecutionContext*) const;
DIDBKeyRange.idl29 [ImplementedAs=upperValue,CallWith=ExecutionContext] readonly attribute any upper;