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

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyRange.idl30 [ImplementedAs=upperValue, CallWith=ScriptState] readonly attribute any upper;
H A DIDBKeyRange.cpp73 ScriptValue IDBKeyRange::upperValue(ScriptState* scriptState) const function in class:blink::IDBKeyRange
121 IDBKeyRange* IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& exceptionState) argument
124 IDBKey* upper = scriptValueToIDBKey(toIsolate(context), upperValue);
H A DIDBKeyRange.h65 ScriptValue upperValue(ScriptState*) const;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DASCIICType.h140 template<typename CharType> inline int toASCIIHexValue(CharType upperValue, CharType lowerValue) argument
142 ASSERT(isASCIIHexDigit(upperValue) && isASCIIHexDigit(lowerValue));
143 return ((toASCIIHexValue(upperValue) << 4) & 0xF0) | toASCIIHexValue(lowerValue);

Completed in 73 milliseconds