HomeSort by relevance Sort by last modified time
    Searched defs:throwTypeError (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionStatePlaceholder.cpp 48 void NoExceptionStateAssertionChecker::throwTypeError(const String&)
ExceptionState.cpp 90 void ExceptionState::throwTypeError(const String& message)
105 void NonThrowableExceptionState::throwTypeError(const String& message)
125 void TrackExceptionState::throwTypeError(const String& message)
V8ThrowException.cpp 115 v8::Handle<v8::Value> V8ThrowException::throwTypeError(const String& message, v8::Isolate* isolate)
Dictionary.cpp 195 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "is not of type 'double'."));
402 context.throwTypeError(ExceptionMessages::notASequenceTypeProperty(key));
584 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does not have a Dictionary type."));
619 context.throwTypeError(ExceptionMessages::notASequenceTypeProperty(key));
653 context.throwTypeError(ExceptionMessages::notASequenceTypeProperty(key));
739 void Dictionary::ConversionContext::throwTypeError(const String& detail)
741 exceptionState().throwTypeError(detail);
V8Binding.cpp 85 v8::Handle<v8::Value> throwTypeError(const String& message, v8::Isolate* isolate)
87 return V8ThrowException::throwTypeError(message, isolate);
92 throwTypeError(ExceptionMessages::failedToExecute(method, type, ExceptionMessages::invalidArity(valid, provided)), isolate);
97 throwTypeError(ExceptionMessages::failedToConstruct(type, ExceptionMessages::invalidArity(valid, provided)), isolate);
102 exceptionState.throwTypeError(ExceptionMessages::invalidArity(valid, provided));
108 throwTypeError(ExceptionMessages::failedToExecute(method, type, ExceptionMessages::notEnoughArguments(expected, providedLeastNumMandatoryParams)), isolate);
113 throwTypeError(ExceptionMessages::failedToConstruct(type, ExceptionMessages::notEnoughArguments(expected, providedLeastNumMandatoryParams)), isolate);
118 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(expected, providedLeastNumMandatoryParams));
169 exceptionState.throwTypeError("Value is" + String(std::isinf(x) ? " infinite and" : "") + " not of type '" + String(typeName) + "'.");
174 exceptionState.throwTypeError("Value is outside the '" + String(typeName) + "' value range.")
    [all...]

Completed in 109 milliseconds