/external/webkit/Source/WebCore/rendering/ |
RenderTextControl.cpp | 181 ExceptionCode ec = 0; local 182 m_innerText->setInnerText(value, ec); 183 ASSERT(!ec); 186 m_innerText->appendChild(HTMLBRElement::create(document()), ec); 187 ASSERT(!ec); 334 ExceptionCode ec = 0; 336 range->selectNodeContents(m_innerText.get(), ec); 337 ASSERT(!ec); 340 Node* endContainer = it.range()->endContainer(ec); 341 ASSERT(!ec); [all...] |
/external/webkit/Source/WebCore/dom/ |
Element.cpp | 219 void Element::removeAttribute(const QualifiedName& name, ExceptionCode& ec) 222 ec = 0; 223 m_attributeMap->removeNamedItem(name, ec); 224 if (ec == NOT_FOUND_ERR) 225 ec = 0; 231 ExceptionCode ec; local 232 setAttribute(name, value, ec); 237 ExceptionCode ec; local 238 setAttribute(name, AtomicString(cStringValue), ec); 653 void Element::setAttribute(const AtomicString& name, const AtomicString& value, ExceptionCode& ec) 1491 removeAttribute(QualifiedName(nullAtom, localName, namespaceURI), ec); local 1856 ExceptionCode ec; local 1868 ExceptionCode ec; local [all...] |
xml_expat_tokenizer.cpp | 443 ExceptionCode ec = 0; local 444 RefPtr<Element> newElement = m_doc->createElementNS(uri, qName, ec); 450 handleElementNamespaces(newElement.get(), uri, prefix, ec); 451 if (ec) { 456 handleElementAttributes(newElement.get(), atts, ec); 457 if (ec) { 545 ExceptionCode ec = 0; local 546 static_cast<Text*>(m_currentNode)->appendData(toQString(s, len), ec); local 822 ExceptionCode ec = 0; local 823 RefPtr<Element> reportElement = doc->createElementNS(xhtmlNamespaceURI, "parsererror", ec); 849 ExceptionCode ec = 0; local [all...] |
/external/icu4c/test/intltest/ |
loctest.cpp | 1836 UErrorCode ec = U_ZERO_ERROR; local [all...] |
/bionic/libc/include/net/ |
if_ether.h | 182 #define VLAN_OUTPUT_TAG(ec, m0) \ 183 VLAN_ATTACHED(ec) ? m_tag_find((m0), PACKET_TAG_VLAN, NULL) : NULL 190 #define VLAN_ATTACHED(ec) ((ec)->ec_nvlans > 0)
|
/development/ndk/platforms/android-3/include/net/ |
if_ether.h | 182 #define VLAN_OUTPUT_TAG(ec, m0) \ 183 VLAN_ATTACHED(ec) ? m_tag_find((m0), PACKET_TAG_VLAN, NULL) : NULL 190 #define VLAN_ATTACHED(ec) ((ec)->ec_nvlans > 0)
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/ |
ECDHBasicAgreement.java | 9 import org.bouncycastle.math.ec.ECPoint; 18 * the same set of EC domain parameters. If two parties correctly
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
FpNafMultiplier.java | 1 package org.bouncycastle.math.ec; 12 * @see org.bouncycastle.math.ec.ECMultiplier#multiply(org.bouncycastle.math.ec.ECPoint, java.math.BigInteger)
|
/external/clang/lib/Basic/ |
FileManager.cpp | 504 llvm::error_code ec; local 515 ec = llvm::MemoryBuffer::getOpenFile(Entry->FD, Filename, Result, FileSize); 517 *ErrorStr = ec.message(); 527 ec = llvm::MemoryBuffer::getFile(Filename, Result, FileSize); 528 if (ec && ErrorStr) 529 *ErrorStr = ec.message(); 535 ec = llvm::MemoryBuffer::getFile(FilePath.str(), Result, FileSize); 536 if (ec && ErrorStr) 537 *ErrorStr = ec.message(); 544 llvm::error_code ec; local [all...] |
/external/icu4c/common/ |
ruleiter.h | 117 * @param ec input-output error code. An error will only be set by 123 UChar32 next(int32_t options, UBool& isEscaped, UErrorCode& ec);
|
uvectr64.cpp | 71 void UVector64::assign(const UVector64& other, UErrorCode &ec) { 72 if (ensureCapacity(other.count, ec)) { 197 UErrorCode ec = U_ZERO_ERROR; local 198 if (!ensureCapacity(newSize, ec)) {
|
/external/icu4c/config/ |
mh-alpha-linux-gcc | 54 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 60 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
mh-beos | 77 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 83 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
mh-hpux-gcc | 68 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 74 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
mh-irix | 57 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 63 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
mh-linux | 55 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 61 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
mh-linux-va | 63 @$(SHELL) -ec '$(GEN_DEPS.c) $< > /dev/null' 67 @$(SHELL) -ec '$(GEN_DEPS.cc) $< > /dev/null'
|
mh-solaris-gcc | 57 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 63 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
/external/icu4c/test/cintltst/ |
cintltst.h | 117 U_CFUNC UBool assertSuccess(const char* msg, UErrorCode* ec);
|
/external/llvm/tools/llvm-objdump/ |
llvm-objdump.h | 31 bool error(error_code ec);
|
/external/openssl/crypto/ecdh/ |
ecdh.h | 78 #include <openssl/ec.h>
|
/external/openssl/include/openssl/ |
ecdh.h | 78 #include <openssl/ec.h>
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8CSSStyleDeclarationCustom.cpp | 205 ExceptionCode ec = 0; local 212 imp->setProperty(propInfo->propID, propertyValue, important, ec); 214 if (ec) 215 throwError(ec);
|
V8DocumentCustom.cpp | 73 ExceptionCode ec = 0; local 89 RefPtr<XPathResult> result = document->evaluate(expression, contextNode.get(), resolver.get(), type, inResult.get(), ec); 93 if (ec) 94 return throwError(ec);
|
V8WorkerContextCustom.cpp | 105 ExceptionCode ec = 0; local 106 workerContext->importScripts(urls, ec); 108 if (ec) 109 return throwError(ec);
|