/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Range.cpp | 29 #include "bindings/v8/ExceptionState.h" 129 Node* Range::startContainer(ExceptionState& exceptionState) const 132 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?"); 139 int Range::startOffset(ExceptionState& exceptionState) const 142 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?"); 149 Node* Range::endContainer(ExceptionState& exceptionState) const 152 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been inv (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLSelectElement.cpp | 33 #include "bindings/v8/ExceptionState.h" 209 void HTMLSelectElement::add(HTMLElement* element, HTMLElement* before, ExceptionState& exceptionState) 217 insertBefore(element, before, exceptionState); 415 void HTMLSelectElement::setOption(unsigned index, HTMLOptionElement* option, ExceptionState& exceptionState) 423 setLength(index, exceptionState); 430 if (!exceptionState.hadException()) { 431 add(option, before.get(), exceptionState); 437 void HTMLSelectElement::setLength(unsigned newLen, ExceptionState& exceptionState [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
InputType.cpp | 211 void InputType::setValueAsDate(double, ExceptionState& exceptionState) const 213 exceptionState.throwUninformativeAndGenericDOMException(InvalidStateError); 221 void InputType::setValueAsDouble(double doubleValue, TextFieldEventBehavior eventBehavior, ExceptionState& exceptionState) const 223 setValueAsDecimal(Decimal::fromDouble(doubleValue), eventBehavior, exceptionState); 226 void InputType::setValueAsDecimal(const Decimal&, TextFieldEventBehavior, ExceptionState& exceptionState) const 228 exceptionState.throwUninformativeAndGenericDOMException(InvalidStateError); 811 void InputType::applyStep(int count, AnyStepHandling anyStepHandling, TextFieldEventBehavior eventBehavior, ExceptionState& exceptionState [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorIndexedDBAgent.cpp | 34 #include "bindings/v8/ExceptionState.h" 191 TrackExceptionState exceptionState; 192 RefPtr<IDBOpenDBRequest> idbOpenDBRequest = idbFactory->open(context(), databaseName, exceptionState); 193 if (exceptionState.hadException()) { 202 TrackExceptionState exceptionState; 203 RefPtr<IDBTransaction> idbTransaction = idbDatabase->transaction(executionContext, objectStoreName, mode, exceptionState); 204 if (exceptionState.hadException()) 211 TrackExceptionState exceptionState; 212 RefPtr<IDBObjectStore> idbObjectStore = idbTransaction->objectStore(objectStoreName, exceptionState); 213 if (exceptionState.hadException() [all...] |
InspectorCSSAgent.cpp | 32 #include "bindings/v8/ExceptionState.h" 318 virtual bool perform(ExceptionState& exceptionState) 322 return redo(exceptionState); 325 virtual bool undo(ExceptionState& exceptionState) 327 if (m_styleSheet->setText(m_oldText, exceptionState)) { 334 virtual bool redo(ExceptionState& exceptionState) 336 if (m_styleSheet->setText(m_text, exceptionState)) { [all...] |
InspectorDOMAgent.cpp | 35 #include "bindings/v8/ExceptionState.h" 218 String InspectorDOMAgent::toErrorString(ExceptionState& exceptionState) 220 if (exceptionState.hadException()) 221 return DOMException::getErrorName(exceptionState.code()); 565 TrackExceptionState exceptionState; 566 RefPtr<Element> element = node->querySelector(selectors, exceptionState); 567 if (exceptionState.hadException()) { 582 TrackExceptionState exceptionState; 583 RefPtr<NodeList> nodes = node->querySelectorAll(selectors, exceptionState); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XMLHttpRequest.cpp | 28 #include "bindings/v8/ExceptionState.h" 214 ScriptString XMLHttpRequest::responseText(ExceptionState& exceptionState) 217 exceptionState.throwDOMException(InvalidStateError, "The value is only accessible if the object's 'responseType' is '' or 'text' (was '" + responseType() + "')."); 234 Document* XMLHttpRequest::responseXML(ExceptionState& exceptionState) 237 exceptionState.throwDOMException(InvalidStateError, "The value is only accessible if the object's 'responseType' is '' or 'document' (was '" + responseType() + "')."); 329 void XMLHttpRequest::setTimeout(unsigned long timeout, ExceptionState& exceptionState) 334 exceptionState.throwDOMException(InvalidAccessError, "Timeouts cannot be set for synchronous requests made from a (…) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/ |
antsupportlib.jar | |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
EditorCommand.cpp | 34 #include "bindings/v8/ExceptionState.h" 203 TrackExceptionState exceptionState; 204 fragment->appendChild(content, exceptionState); 205 if (exceptionState.hadException()) [all...] |
FrameSelection.cpp | 31 #include "bindings/v8/ExceptionState.h" 361 TrackExceptionState exceptionState; 362 Range::CompareResults compareResult = range->compareNode(&node, exceptionState); 363 if (!exceptionState.hadException() && (compareResult == Range::NODE_BEFORE_AND_AFTER || compareResult == Range::NODE_INSIDE)) { [all...] |
VisibleUnits.cpp | 31 #include "bindings/v8/ExceptionState.h" 463 TrackExceptionState exceptionState; 466 forwardsScanRange->setEndAfter(boundary, exceptionState); 467 forwardsScanRange->setStart(end.deprecatedNode(), end.deprecatedEditingOffset(), exceptionState); 481 searchRange->setStart(start.deprecatedNode(), start.deprecatedEditingOffset(), exceptionState); 482 searchRange->setEnd(end.deprecatedNode(), end.deprecatedEditingOffset(), exceptionState); 484 ASSERT(!exceptionState.hadException()); 485 if (exceptionState.hadException()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/ |
XMLDocumentParser.cpp | 37 #include "bindings/v8/ExceptionState.h" 898 static inline void handleNamespaceAttributes(Vector<Attribute>& prefixedAttributes, const xmlChar** libxmlNamespaces, int nbNamespaces, ExceptionState& exceptionState) 908 if (!Element::parseAttributeName(parsedName, XMLNSNames::xmlnsNamespaceURI, namespaceQName, exceptionState)) 924 static inline void handleElementAttributes(Vector<Attribute>& prefixedAttributes, const xmlChar** libxmlAttributes, int nbAttributes, ExceptionState& exceptionState) 935 if (!Element::parseAttributeName(parsedName, attrURI, attrQName, exceptionState)) 975 TrackExceptionState exceptionState; 976 handleNamespaceAttributes(prefixedAttributes, libxmlNamespaces, nbNamespaces, exceptionState); 977 if (exceptionState.hadException()) [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebFrameImpl.cpp | 110 #include "bindings/v8/ExceptionState.h" 224 TrackExceptionState exceptionState; 225 range->selectNodeContents(document->body(), exceptionState); 227 if (!exceptionState.hadException()) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar | |