/external/icu4c/test/intltest/ |
calregts.cpp | 2259 UErrorCode ec = U_ZERO_ERROR; local 2363 UErrorCode ec = U_ZERO_ERROR; local 2476 UErrorCode ec = U_ZERO_ERROR; local 2549 UErrorCode ec = U_ZERO_ERROR; local 2563 UErrorCode ec = U_ZERO_ERROR; local 2641 UErrorCode ec = U_ZERO_ERROR; local [all...] |
/external/webkit/Source/WebCore/editing/ |
ReplaceSelectionCommand.cpp | 163 ExceptionCode ec = 0; local 164 editableRoot->dispatchEvent(evt, ec); 165 ASSERT(ec == 0); 219 ExceptionCode ec = 0; 220 parent->removeChild(node.get(), ec); 221 ASSERT(ec == 0); 233 ExceptionCode ec = 0; 234 parent->insertBefore(node, refNode, ec); 235 ASSERT(ec == 0); 246 ExceptionCode ec = 0 local 701 ExceptionCode ec = 0; local 1272 ExceptionCode ec = 0; local [all...] |
Editor.cpp | 257 ExceptionCode ec = 0; local 258 Node* startContainer = range->startContainer(ec); 259 Node* endContainer = range->endContainer(ec); 266 if (range->collapsed(ec)) { 267 VisiblePosition start(Position(startContainer, range->startOffset(ec), Position::PositionIsOffsetInAnchor), DOWNSTREAM); 347 ExceptionCode ec = 0; 348 target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame->domWindow(), pastingText, smartReplace), ec); 356 ExceptionCode ec = 0; 357 target->dispatchEvent(TextEvent::createForFragmentPaste(m_frame->domWindow(), pastingFragment, smartReplace, matchStyle), ec); 436 ExceptionCode ec; local 528 ExceptionCode ec; local 798 ExceptionCode ec = 0; local 948 ExceptionCode ec = 0; local 981 ExceptionCode ec; local 1529 ExceptionCode ec = 0; local 1596 ExceptionCode ec = 0; local 1675 ExceptionCode ec = 0; local 2125 ExceptionCode ec = 0; local 2637 ExceptionCode ec = 0; local 2653 ExceptionCode ec = 0; local 2672 ExceptionCode ec = 0; local 2909 ExceptionCode ec = 0; local 2937 ExceptionCode ec = 0; local 2981 ExceptionCode ec = 0; local 3000 ExceptionCode ec = 0; local 3052 ExceptionCode ec = 0; local [all...] |
/external/webkit/Source/WebCore/dom/ |
Document.cpp | 707 PassRefPtr<Element> Document::createElement(const AtomicString& name, ExceptionCode& ec) 710 ec = INVALID_CHARACTER_ERR; 735 PassRefPtr<CDATASection> Document::createCDATASection(const String& data, ExceptionCode& ec) 738 ec = NOT_SUPPORTED_ERR; 744 PassRefPtr<ProcessingInstruction> Document::createProcessingInstruction(const String& target, const String& data, ExceptionCode& ec) 747 ec = INVALID_CHARACTER_ERR; 751 ec = NOT_SUPPORTED_ERR; 757 PassRefPtr<EntityReference> Document::createEntityReference(const String& name, ExceptionCode& ec) 760 ec = INVALID_CHARACTER_ERR; 764 ec = NOT_SUPPORTED_ERR 1293 ExceptionCode ec = 0; local 2659 ExceptionCode ec; \/\/ Exception (for sandboxed documents) ignored. local [all...] |
DOMImplementation.cpp | 216 const String& publicId, const String& systemId, ExceptionCode& ec) 219 if (!Document::parseQualifiedName(qualifiedName, prefix, localName, ec)) 231 const String& qualifiedName, DocumentType* doctype, ExceptionCode& ec) 250 ec = INVALID_STATE_ERR; 257 documentElement = doc->createElementNS(namespaceURI, qualifiedName, ec); 258 if (ec) 268 ec = WRONG_DOCUMENT_ERR;
|
Node.cpp | 597 void Node::setNodeValue(const String& /*nodeValue*/, ExceptionCode& ec) 601 ec = NO_MODIFICATION_ALLOWED_ERR; 636 bool Node::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) 639 ec = HIERARCHY_REQUEST_ERR; 642 return toContainerNode(this)->insertBefore(newChild, refChild, ec, shouldLazyAttach); 645 bool Node::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach) 648 ec = HIERARCHY_REQUEST_ERR; 651 return toContainerNode(this)->replaceChild(newChild, oldChild, ec, shouldLazyAttach); 654 bool Node::removeChild(Node* oldChild, ExceptionCode& ec) 657 ec = NOT_FOUND_ERR 707 ExceptionCode ec; local 720 ExceptionCode ec; local 727 ExceptionCode ec; local 2162 container->appendChild(document()->createTextNode(text), ec); local [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLInputElement.cpp | 328 void HTMLInputElement::applyStep(double count, ExceptionCode& ec) 333 ec = INVALID_STATE_ERR; 339 ec = INVALID_STATE_ERR; 344 ec = INVALID_STATE_ERR; 349 ec = INVALID_STATE_ERR; 367 ec = INVALID_STATE_ERR; 372 setValueAsNumber(newValue, ec); 378 void HTMLInputElement::stepUp(int n, ExceptionCode& ec) 380 applyStep(n, ec); 383 void HTMLInputElement::stepDown(int n, ExceptionCode& ec) 438 ExceptionCode ec; local 1421 ExceptionCode ec; local 1428 ExceptionCode ec; local [all...] |
HTMLScriptElement.cpp | 124 ExceptionCode ec = 0; local 128 static_cast<Text*>(firstChild())->setData(value, ec); 135 appendChild(document()->createTextNode(value.impl()), ec);
|
NumberInputType.cpp | 71 void NumberInputType::setValueAsNumber(double newValue, ExceptionCode& ec) const 74 ec = INVALID_STATE_ERR; 78 ec = INVALID_STATE_ERR;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JCEECPublicKey.java | 35 import org.bouncycastle.jcajce.provider.asymmetric.ec.EC5Util; 36 import org.bouncycastle.jcajce.provider.asymmetric.ec.ECUtil; 46 import org.bouncycastle.math.ec.ECCurve; 51 private String algorithm = "EC"; 52 private org.bouncycastle.math.ec.ECPoint q; 452 public org.bouncycastle.math.ec.ECPoint getQ() 456 if (q instanceof org.bouncycastle.math.ec.ECPoint.Fp) 458 return new org.bouncycastle.math.ec.ECPoint.Fp(null, q.getX(), q.getY()); 462 return new org.bouncycastle.math.ec.ECPoint.F2m(null, q.getX(), q.getY()); 469 public org.bouncycastle.math.ec.ECPoint engineGetQ( [all...] |
/external/icu4c/test/cintltst/ |
cloctst.c | 723 UErrorCode ec=U_ZERO_ERROR; local 726 int32_t preflightLen=uloc_getDisplayName(locale, displayLocale, NULL, 0, &ec); 728 if(ec==U_BUFFER_OVERFLOW_ERROR) { 729 ec=U_ZERO_ERROR; 731 len=uloc_getDisplayName(locale, displayLocale, result, LENGTHOF(result), &ec); 732 if(U_FAILURE(ec)) { 734 locale, displayLocale, u_errorName(ec)); 760 len=uloc_getDisplayName(locale, displayLocale, result, i, &ec) 2347 UErrorCode ec = U_ZERO_ERROR; local 2515 UErrorCode ec = U_ZERO_ERROR; local 2526 UErrorCode ec = U_USELESS_COLLATOR_ERROR; local 2539 UErrorCode ec = U_ZERO_ERROR; local [all...] |
/external/valgrind/main/memcheck/ |
mc_malloc_wrappers.c | 78 MC_Chunk* create_MC_Chunk ( ExeContext* ec, Addr p, SizeT szB, 190 MC_Chunk* create_MC_Chunk ( ExeContext* ec, Addr p, SizeT szB, 197 mc->where = ec; 256 ExeContext* ec; local 280 ec = VG_(record_ExeContext)(tid, 0/*first_ip_delta*/); 281 tl_assert(ec); 283 VG_(HT_add_node)( table, create_MC_Chunk(ec, p, szB, kind) ); 288 UInt ecu = VG_(get_ECU_from_ExeContext)(ec); 453 ExeContext* ec; local 455 ec = VG_(record_ExeContext)(tid, 0/*first_ip_delta*/) 494 ExeContext* ec; local 580 ExeContext* ec = VG_(record_ExeContext)(tid, 0\/*first_ip_delta*\/); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/ |
ECDSASigner.java | 12 import org.bouncycastle.math.ec.ECAlgorithms; 13 import org.bouncycastle.math.ec.ECConstants; 14 import org.bouncycastle.math.ec.ECPoint; 17 * EC-DSA as described in X9.62
|
/external/icu4c/i18n/ |
coll.cpp | 437 UErrorCode ec = U_ZERO_ERROR; local 438 return (EComparisonResult)compare(source, target, ec); 446 UErrorCode ec = U_ZERO_ERROR; local 447 return (EComparisonResult)compare(source, target, length, ec); 455 UErrorCode ec = U_ZERO_ERROR; local 456 return (EComparisonResult)compare(source, sourceLength, target, targetLength, ec); 484 UErrorCode ec = U_ZERO_ERROR; local 485 return (compare(source, target, ec) == UCOL_EQUAL); 491 UErrorCode ec = U_ZERO_ERROR; local 492 return (compare(source, target, ec) != UCOL_LESS) 498 UErrorCode ec = U_ZERO_ERROR; local [all...] |
datefmt.cpp | 199 UErrorCode ec = U_ZERO_ERROR; local 200 calClone->setTime(date, ec); 201 if (U_SUCCESS(ec)) { 253 UErrorCode ec = U_ZERO_ERROR; local 254 d = calClone->getTime(ec); 255 if (U_FAILURE(ec)) {
|
/external/icu4c/i18n/unicode/ |
timezone.h | 189 * @param ec Output param to filled in with a success or 198 UErrorCode& ec); 449 * @param ec input-output error code 454 int32_t& dstOffset, UErrorCode& ec) const; [all...] |
ucal.h | 561 * @param ec A pointer to an UErrorCode to receive any errors 564 * *ec will indicate the error. 569 const int32_t* rawOffset, UErrorCode* ec); 574 * @param ec input/output error code 577 * uenum_close(), or NULL upon failure. In case of failure *ec will 583 ucal_openTimeZones(UErrorCode* ec); 593 * @param ec input/output error code 596 * uenum_close(), or NULL upon failure. In case of failure *ec will 602 ucal_openCountryTimeZones(const char* country, UErrorCode* ec); 613 * @param ec input/output error cod [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSArrayBufferViewHelper.h | 54 ExceptionCode ec = 0; local 55 impl->set(array, offset, ec); 56 setDOMException(exec, ec);
|
JSCSSStyleDeclarationCustom.cpp | 189 ExceptionCode ec = 0; local 190 impl()->setProperty(prop, propValue, ec); 191 setDOMException(exec, ec);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8HTMLCanvasElementCustom.cpp | 102 ExceptionCode ec = 0; local 112 String result = canvas->toDataURL(type, qualityPtr, ec); 113 V8Proxy::setDOMException(ec);
|
/external/webkit/Source/WebCore/inspector/ |
InspectorDOMStorageAgent.cpp | 122 ExceptionCode ec = 0; local 123 bool isLocalStorage = (frame->domWindow()->localStorage(ec) == storage && !ec);
|
/external/icu4c/common/unicode/ |
uset.h | 275 * @param ec the error code 280 UErrorCode* ec); 290 * @param ec the error code 296 UErrorCode* ec); 438 * @param ec error code input/output parameter 444 UProperty prop, int32_t value, UErrorCode* ec); 477 * @param ec error code input/output parameter 485 UErrorCode* ec); 511 * @param ec error code. 519 UErrorCode* ec); [all...] |
/external/llvm/lib/Object/ |
MachOObjectFile.cpp | 31 error_code &ec) 32 : ObjectFile(Binary::ID_MachO, Object, ec), 47 error_code ec; local 60 return new MachOObjectFile(NewBuffer, MachOObj, ec); 938 error_code ec; local 940 it.increment(ec); 942 return ec; 947 if (error_code ec = advance(it, Val)) 948 report_fatal_error(ec.message()); 965 error_code ec; local [all...] |
/external/valgrind/main/none/tests/s390x/ |
opcodes.h | 100 #define AGHIK(r1,r3,i2) RIE_RRI0(ec,r1,r3,i2,00,d9) 105 #define AHIK(r1,r3,i2) RIE_RRI0(ec,r1,r3,i2,00,d8) 110 #define ALGHSIK(r1,r3,i2) RIE_RRI0(ec,r1,r3,i2,00,db) 115 #define ALHSIK(r1,r3,i2) RIE_RRI0(ec,r1,r3,i2,00,da) 130 #define CGIB(r1,m3,b4,d4,i2) RIS_RURDI(ec,r1,m3,b4,d4,i2,fc) 131 #define CGIJ(r1,m3,i4,i2) RIE_RUPI(ec,r1,m3,i4,i2,7c) 132 #define CGRB(r1,r2,b4,d4,m3) RRS(ec,r1,r2,b4,d4,m3,0,e4) 133 #define CGRJ(r1,r2,i4,m3) RIE_RRPU(ec,r1,r2,i4,m3,0,64) 142 #define CIB(r1,m3,b4,d4,i2) RIS_RURDI(ec,r1,m3,b4,d4,i2,fe) 144 #define CIJ(r1,m3,i4,i2) RIE_RUPI(ec,r1,m3,i4,i2,7e [all...] |
/external/webkit/Source/WebCore/storage/ |
AbstractDatabase.cpp | 243 bool AbstractDatabase::performOpenAndVerify(bool shouldSetVersionInNewDatabase, ExceptionCode& ec) 247 ec = INVALID_STATE_ERR; 274 ec = INVALID_STATE_ERR; 283 ec = INVALID_STATE_ERR; 294 ec = INVALID_STATE_ERR; 316 ec = INVALID_STATE_ERR;
|