Searched defs:ec (Results 1 - 25 of 472) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/xml/
H A DXMLSerializer.cpp29 String XMLSerializer::serializeToString(Node* node, ExceptionCode& ec) argument
40 ec = INVALID_ACCESS_ERR;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DPreCompInfo.java1 package org.bouncycastle.math.ec;
H A DWTauNafPreCompInfo.java1 package org.bouncycastle.math.ec;
12 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
21 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
32 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
H A DZTauElement.java1 package org.bouncycastle.math.ec;
H A DECConstants.java1 package org.bouncycastle.math.ec;
H A DECMultiplier.java1 package org.bouncycastle.math.ec;
H A DFpNafMultiplier.java1 package org.bouncycastle.math.ec;
12 * @see org.bouncycastle.math.ec.ECMultiplier#multiply(org.bouncycastle.math.ec.ECPoint, java.math.BigInteger)
/external/icu4c/i18n/
H A Dmeasfmt.cpp23 UErrorCode& ec) {
25 if (U_SUCCESS(ec)) {
26 fmt = new CurrencyFormat(locale, ec);
27 if (U_FAILURE(ec)) {
35 MeasureFormat* U_EXPORT2 MeasureFormat::createCurrencyFormat(UErrorCode& ec) { argument
36 if (U_FAILURE(ec)) {
39 return MeasureFormat::createCurrencyFormat(Locale::getDefault(), ec);
22 createCurrencyFormat(const Locale& locale, UErrorCode& ec) argument
H A Dcurramt.cpp21 UErrorCode& ec) :
22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
26 UErrorCode& ec) :
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
20 CurrencyAmount(const Formattable& amount, const UChar* isoCode, UErrorCode& ec) argument
25 CurrencyAmount(double amount, const UChar* isoCode, UErrorCode& ec) argument
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebExceptionHandler.h34 inline void webDOMRaiseError(WebDOMExceptionCode ec) argument
36 if (ec)
37 webRaiseDOMException(ec);
H A DWebExceptionHandler.cpp36 void webRaiseDOMException(WebDOMExceptionCode ec) argument
38 ASSERT(ec);
40 (*handler)(ec);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebKitCSSMatrixConstructor.cpp60 ExceptionCode ec = 0; local
61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec);
62 if (ec)
63 throwError(ec);
H A DV8DedicatedWorkerContextCustom.cpp58 ExceptionCode ec = 0; local
59 workerContext->postMessage(message.release(), &portArray, ec);
60 return throwError(ec);
/external/llvm/lib/Object/
H A DELFObjectFile.cpp25 error_code ec; local
28 return new ELFObjectFile<support::little, false>(Object, ec);
30 return new ELFObjectFile<support::big, false>(Object, ec);
32 return new ELFObjectFile<support::big, true>(Object, ec);
35 new ELFObjectFile<support::little, true>(Object, ec);
H A DObjectFile.cpp26 ObjectFile::ObjectFile(unsigned int Type, MemoryBuffer *source, error_code &ec) argument
/external/webkit/Source/WebCore/bindings/js/
H A DJSWebKitCSSMatrixCustom.cpp42 ExceptionCode ec = 0; local
43 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(s, ec);
44 setDOMException(exec, ec);
H A DJSWorkerCustom.cpp61 ExceptionCode ec = 0; local
62 RefPtr<Worker> worker = Worker::create(ustringToString(scriptURL), window->document(), ec);
63 if (ec) {
64 setDOMException(exec, ec);
H A DJSDOMApplicationCacheCustom.cpp54 ExceptionCode ec = 0; local
55 bool result = impl()->hasItem(url, ec);
56 setDOMException(exec, ec);
67 ExceptionCode ec = 0; local
68 impl()->add(url, ec);
69 setDOMException(exec, ec);
80 ExceptionCode ec = 0; local
81 impl()->remove(url, ec);
82 setDOMException(exec, ec);
H A DJSHTMLSelectElementCustom.cpp53 ExceptionCode ec = 0; local
56 ec = TYPE_MISMATCH_ERR;
58 select->setOption(index, option, ec);
59 setDOMException(exec, ec);
/external/webkit/Source/WebCore/bindings/objc/
H A DExceptionHandlers.h50 inline void raiseOnDOMError(ExceptionCode ec) argument
52 if (ec)
53 raiseDOMException(ec);
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Collection.cpp47 ExceptionCode ec = 0; local
56 base->setOption(index, element, ec);
58 V8Proxy::setDOMException(ec);
/external/webkit/Source/WebCore/fileapi/
H A DDirectoryReaderSync.cpp52 PassRefPtr<EntryArraySync> DirectoryReaderSync::readEntries(ExceptionCode& ec) argument
54 ec = 0;
60 ec = FileException::INVALID_MODIFICATION_ERR;
64 return helper.getResult(ec);
H A DFileEntrySync.cpp46 PassRefPtr<File> FileEntrySync::file(ExceptionCode& ec) argument
48 return filesystem()->createFile(this, ec);
51 PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionCode& ec) argument
53 return filesystem()->createWriter(this, ec);
/external/webkit/Source/WebCore/page/
H A DCrypto.cpp57 void Crypto::getRandomValues(ArrayBufferView* array, ExceptionCode& ec) argument
61 ec = TYPE_MISMATCH_ERR;
67 ec = NOT_SUPPORTED_ERR;
/external/clang/test/CXX/expr/expr.post/expr.static.cast/
H A Dp9-0x.cpp5 void test0(EC ec) { argument
6 (void)static_cast<bool>(ec);
8 (void)static_cast<char>(ec);
10 (void)static_cast<int>(ec);
12 (void)static_cast<unsigned long>(ec);
14 (void)static_cast<float>(ec);
16 (void)static_cast<double>(ec);

Completed in 5098 milliseconds

1234567891011>>