Searched refs:upperValue (Results 1 – 4 of 4) sorted by relevance
140 template<typename CharType> inline int toASCIIHexValue(CharType upperValue, CharType lowerValue) in toASCIIHexValue() argument142 ASSERT(isASCIIHexDigit(upperValue) && isASCIIHexDigit(lowerValue)); in toASCIIHexValue()143 return ((toASCIIHexValue(upperValue) << 4) & 0xF0) | toASCIIHexValue(lowerValue); in toASCIIHexValue()
71 ScriptValue IDBKeyRange::upperValue(ExecutionContext* context) const in upperValue() function in WebCore::IDBKeyRange124 …ionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen,… in bound() argument128 RefPtr<IDBKey> upper = scriptValueToIDBKey(&requestState, upperValue); in bound()
64 ScriptValue upperValue(ExecutionContext*) const;
29 [ImplementedAs=upperValue,CallWith=ExecutionContext] readonly attribute any upper;