HomeSort by relevance Sort by last modified time
    Searched refs:throwTypeError (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/xml/
DOMParser.cpp 37 exceptionState.throwTypeError("Unsupported mime-type specified.");
XMLSerializer.cpp 35 exceptionState.throwTypeError("Invalid node value.");
XPathResult.cpp 100 exceptionState.throwTypeError("The result is not a node set, and therefore cannot be converted to the desired type.");
107 exceptionState.throwTypeError("The result is not a node set, and therefore cannot be converted to the desired type.");
115 exceptionState.throwTypeError("The result is not a node set, and therefore cannot be converted to the desired type.");
132 exceptionState.throwTypeError("The result type is not a number.");
141 exceptionState.throwTypeError("The result type is not a string.");
150 exceptionState.throwTypeError("The result type is not a boolean.");
159 exceptionState.throwTypeError("The result type is not a single node.");
181 exceptionState.throwTypeError("The result type is not a snapshot.");
191 exceptionState.throwTypeError("The result type is not an iterator.");
213 exceptionState.throwTypeError("The result type is not a snapshot.")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionStatePlaceholder.h 50 virtual void throwTypeError(const String& message = String()) OVERRIDE { }
63 virtual void throwTypeError(const String& message = String()) OVERRIDE;
ExceptionStatePlaceholder.cpp 48 void NoExceptionStateAssertionChecker::throwTypeError(const String&)
ExceptionState.h 78 virtual void throwTypeError(const String& message);
127 virtual void throwTypeError(const String& message = String()) OVERRIDE;
136 virtual void throwTypeError(const String& message = String()) OVERRIDE;
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...]
ExceptionState.cpp 90 void ExceptionState::throwTypeError(const String& message)
105 void NonThrowableExceptionState::throwTypeError(const String& message)
125 void TrackExceptionState::throwTypeError(const String& message)
V8ObjectConstructor.cpp 63 throwTypeError("Illegal constructor", info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CryptoCustom.cpp 42 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
49 exceptionState.throwTypeError("First argument is not an ArrayBufferView");
V8FileCustom.cpp 45 exceptionState.throwTypeError("Illegal constructor");
51 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(2, info.Length()));
62 exceptionState.throwTypeError(ExceptionMessages::notAnArrayTypeArgumentOrValue(sequenceArgumentIndex + 1));
73 exceptionState.throwTypeError("The 3rd argument is not of type Object.");
V8BlobCustom.cpp 54 exceptionState.throwTypeError(ExceptionMessages::notAnArrayTypeArgumentOrValue(sequenceArgumentIndex + 1));
63 exceptionState.throwTypeError("The 2nd argument is not of type Object.");
V8MutationObserverCustom.cpp 48 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
55 exceptionState.throwTypeError("Callback argument must be a function");
V8SubtleCryptoCustom.cpp 26 throwTypeError(ExceptionMessages::failedToExecute("verify", "SubtleCrypto", "parameter 1 ('algorithm') is not an object."), info.GetIsolate());
41 throwTypeError(ExceptionMessages::failedToExecute("verify", "SubtleCrypto", "parameter 1 ('algorithm') is not an object."), info.GetIsolate());
56 throwTypeError(ExceptionMessages::failedToExecute("verify", "SubtleCrypto", "parameter 1 ('algorithm') is not an object."), info.GetIsolate());
71 throwTypeError(ExceptionMessages::failedToExecute("verify", "SubtleCrypto", "parameter 1 ('algorithm') is not an object."), info.GetIsolate());
121 exceptionState.throwTypeError("No function was found that matched the signature provided.");
V8WebGLRenderingContextCustom.cpp 92 exceptionState.throwTypeError("Array length exceeds supported limit.");
115 exceptionState.throwTypeError("Array length exceeds supported limit.");
289 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(2, info.Length()));
336 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
344 exceptionState.throwTypeError(ExceptionMessages::argumentNullOrIncorrectType(programArgumentIndex + 1, "WebGLProgram"));
372 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
385 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(3, info.Length()));
406 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
423 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(2, info.Length()));
431 exceptionState.throwTypeError(ExceptionMessages::argumentNullOrIncorrectType(programArgumentIndex + 1, "WebGLProgram"))
    [all...]
V8DocumentCustom.cpp 72 exceptionState.throwTypeError(ExceptionMessages::argumentNullOrIncorrectType(resolverArgumentIndex + 1, "XPathNSResolver"));
V8HTMLDocumentCustom.cpp 73 throwTypeError("open is not a function", info.GetIsolate());
V8HTMLOptionsCollectionCustom.cpp 51 exceptionState.throwTypeError("The element provided was not an HTMLOptionElement.");
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.cpp 48 exceptionState.throwTypeError("The encoding label provided ('" + encodingLabel + "') is invalid.");
54 exceptionState.throwTypeError("The encoding provided ('" + encodingLabel + "') is not one of 'utf-8', 'utf-16', or 'utf-16be'.");
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.cpp 69 exceptionState.throwTypeError("Running status is not allowed " + getPositionString());
73 exceptionState.throwTypeError("Unexpected end of system exclusive message " + getPositionString());
77 exceptionState.throwTypeError("Reserved status is not allowed " + getPositionString());
87 exceptionState.throwTypeError("System exclusive message is not ended by end of system exclusive message.");
89 exceptionState.throwTypeError("System exclusive message contains a status byte " + getPositionString());
95 exceptionState.throwTypeError("Message is incomplete.");
97 exceptionState.throwTypeError("Unexpected status byte at index " + getPositionString());
214 exceptionState.throwTypeError("The value at index " + String::number(i) + " (" + String::number(unsignedData[i]) + ") is greater than 0xFF.");
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageData.cpp 67 exceptionState.throwTypeError("Illegal constructor");
91 exceptionState.throwTypeError("Illegal constructor");
95 exceptionState.throwTypeError("Expected a Uint8ClampedArray as first argument.");
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGEnumeration.cpp 76 exceptionState.throwTypeError("The enumeration value provided is 0, which is not settable.");
81 exceptionState.throwTypeError("The enumeration value provided (" + String::number(value) + ") is larger than the largest allowed value (" + String::number(maxEnumValue()) + ").");
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 103 exceptionState.throwTypeError("The version provided must not be 0.");
114 exceptionState.throwTypeError("The name provided must not be empty.");
148 exceptionState.throwTypeError("The name provided must not be empty.");
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.cpp 124 exceptionState.throwTypeError("The options object may only set 'attributeOldValue' to true when 'attributes' is true or not present.");
128 exceptionState.throwTypeError("The options object may only set 'attributeFilter' when 'attributes' is true or not present.");
133 exceptionState.throwTypeError("The options object may only set 'characterDataOldValue' to true when 'characterData' is true or not present.");
138 exceptionState.throwTypeError("The options object must set at least one of 'attributes', 'characterData', or 'childList' to true.");
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGListPropertyTearOffHelper.h 110 exceptionState.throwTypeError("Lists must be initialized with a valid item.");
136 exceptionState.throwTypeError("An invalid item cannot be inserted to a list.");
156 exceptionState.throwTypeError("An invalid item cannot be replaced with an existing list item.");
190 exceptionState.throwTypeError("An invalid item cannot be appended to a list.");

Completed in 284 milliseconds

1 2 3