HomeSort by relevance Sort by last modified time
    Searched refs:ec (Results 451 - 475 of 811) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/storage/
IDBRequest.cpp 74 PassRefPtr<IDBAny> IDBRequest::result(ExceptionCode& ec) const
77 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
83 unsigned short IDBRequest::errorCode(ExceptionCode& ec) const
86 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
92 String IDBRequest::webkitErrorMessage(ExceptionCode& ec) const
95 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp 407 ExceptionCode ec = 0; local
408 int v = imp->attrWithGetterException(ec);
409 if (UNLIKELY(ec)) {
410 V8Proxy::setDOMException(ec);
421 ExceptionCode ec = 0; local
422 imp->setAttrWithGetterException(v, ec);
423 if (UNLIKELY(ec))
424 V8Proxy::setDOMException(ec);
440 ExceptionCode ec = 0; local
441 imp->setAttrWithSetterException(v, ec);
451 ExceptionCode ec = 0; local
465 ExceptionCode ec = 0; local
484 ExceptionCode ec = 0; local
702 ExceptionCode ec = 0; local
732 ExceptionCode ec = 0; local
765 ExceptionCode ec = 0; local
781 ExceptionCode ec = 0; local
922 ExceptionCode ec = 0; local
941 ExceptionCode ec = 0; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPublicKey.java 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
34 import org.bouncycastle.math.ec.ECCurve;
41 private String algorithm = "EC";
44 private transient org.bouncycastle.math.ec.ECPoint q;
355 public org.bouncycastle.math.ec.ECPoint getQ()
359 if (q instanceof org.bouncycastle.math.ec.ECPoint.Fp)
361 return new org.bouncycastle.math.ec.ECPoint.Fp(null, q.getX(), q.getY());
365 return new org.bouncycastle.math.ec.ECPoint.F2m(null, q.getX(), q.getY());
372 public org.bouncycastle.math.ec.ECPoint engineGetQ()
392 buf.append("EC Public Key").append(nl)
    [all...]
  /external/clang/test/SemaCXX/
class.cpp 151 void f(const EnclosingClass &ec) {
152 ec.member = 0;
  /external/e2fsprogs/lib/et/
et_c.awk 148 /^[ \t]*(error_code|ec)[ \t]+[A-Z_0-9]+,[^ \t]/ {
153 /^[ \t]*(error_code|ec)[ \t]+[A-Z_0-9]+,[ \t]*$/ {
159 /^[ \t]*(error_code|ec)[ \t]+[A-Z_0-9]+,[ \t]*".*"[ \t]*$/ {
169 /^[ \t]*(error_code|ec)[ \t]+[A-Z_0-9]+,[ \t]*".*\\[ \t]*$/ {
  /external/icu4c/common/unicode/
uniset.h 686 * @param ec error code input/output parameter
694 UErrorCode& ec);
719 * @param ec error code input/output parameter
727 UErrorCode& ec);
    [all...]
  /external/icu4c/i18n/unicode/
plurfmt.h 534 * @param ec Error code.
537 virtual UnicodeString select(double number, UErrorCode& ec) const = 0;
550 virtual UnicodeString select(double number, UErrorCode& /*ec*/) const;
582 * @param ec ICU error code.
587 const PluralSelector& selector, double number, UErrorCode& ec);
basictz.h 77 * @param ec Output param to filled in with a success or an error.
83 UBool ignoreDstAmount, UErrorCode& ec) /*const*/;
msgfmt.h     [all...]
selfmt.h 353 * @param ec Error code.
357 const UnicodeString& keyword, UErrorCode& ec);
  /external/icu4c/test/intltest/
usettest.cpp 117 UErrorCode ec = U_ZERO_ERROR; local
130 ec = U_ZERO_ERROR;
131 UnicodeSet s(OTHER_TOPATTERN_TESTS[j], ec);
132 if (U_FAILURE(ec)) {
133 dataerrln((UnicodeString)"FAIL: bad pattern " + OTHER_TOPATTERN_TESTS[j] + " - " + UnicodeString(u_errorName(ec)));
158 ec = U_ZERO_ERROR;
159 UnicodeSet* s = new UnicodeSet("[a-z {aa} {ab}]", ec);
165 if (U_FAILURE(ec)) break;
173 s->applyPattern(UNICODE_STRING_SIMPLE("[a-z {\\{l} {r\\}}]"), ec);
174 if (U_FAILURE(ec)) break
252 UErrorCode ec = U_ZERO_ERROR; local
746 UErrorCode ec = U_ZERO_ERROR; local
827 UErrorCode ec = U_ZERO_ERROR; local
1168 UErrorCode ec = U_ZERO_ERROR; local
1178 UErrorCode ec = U_ZERO_ERROR; local
1205 UErrorCode ec = U_ZERO_ERROR; local
1394 UErrorCode ec = U_ZERO_ERROR; local
1642 UErrorCode ec = U_ZERO_ERROR; local
1651 sym.add(UnicodeString(DATA[i], -1, US_INV), UnicodeString(DATA[i+1], -1, US_INV), ec); local
1703 UErrorCode ec = U_ZERO_ERROR; local
1894 UErrorCode ec = U_ZERO_ERROR; local
1971 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 85 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) {
86 errs() << Filename << ": " << ec.message() << "\n";
  /external/webkit/Source/WebCore/css/
CSSStyleSheet.h 75 void removeRule(unsigned index, ExceptionCode& ec) { deleteRule(index, ec); }
  /external/webkit/Source/WebCore/fileapi/
SyncCallbackHelper.h 74 PassRefPtr<ResultType> getResult(ExceptionCode& ec)
84 ec = m_exceptionCode;
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.h 95 String toDataURL(const String& mimeType, ExceptionCode& ec) { return toDataURL(mimeType, 0, ec); }
  /external/webkit/Source/WebCore/notifications/
Notification.h 64 static PassRefPtr<Notification> create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
65 static PassRefPtr<Notification> create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
  /external/webkit/Source/WebCore/svg/
SVGLocatable.cpp 107 AffineTransform SVGLocatable::getTransformToElement(SVGElement* target, ExceptionCode& ec, StyleUpdateStrategy styleUpdateStrategy) const
114 ec = SVGException::SVG_MATRIX_NOT_INVERTABLE;
  /external/webkit/Source/WebKit/win/
DOMCSSClasses.cpp 94 WebCore::ExceptionCode ec; local
95 m_style->setCssText(cssTextString, ec);
  /external/icu4c/i18n/
calendar.cpp 1110 UErrorCode ec = U_ZERO_ERROR; local
1178 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
MediaControlElements.cpp 86 ExceptionCode ec; local
88 style()->removeProperty(displayString(), ec); local
93 ExceptionCode ec; local
96 style()->setProperty(displayString(), none, ec); local
298 ExceptionCode ec; local
299 style()->removeProperty(displayString(), ec); local
304 ExceptionCode ec; local
306 style()->setProperty(displayString(), none, ec); local
459 ExceptionCode ec; local
463 mediaElement()->setCurrentTime(mediaElement()->currentTime() + stepTime, ec);
475 ExceptionCode ec; local
675 ExceptionCode ec; local
742 ExceptionCode ec = 0; local
    [all...]
  /external/valgrind/main/coregrind/
m_transtab.c 1821 Int sno, ec; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9FieldElement.java 9 import org.bouncycastle.math.ec.ECFieldElement;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
EC.java 8 import org.bouncycastle.jcajce.provider.asymmetric.ec.KeyFactorySpi;
12 public class EC
14 private static final String PREFIX = "org.bouncycastle.jcajce.provider.asymmetric" + ".ec.";
33 registerOid(provider, X9ObjectIdentifiers.id_ecPublicKey, "EC", new KeyFactorySpi.EC());
35 registerOid(provider, X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC", new KeyFactorySpi.EC());
41 // registerOidAlgorithmParameters(provider, X9ObjectIdentifiers.id_ecPublicKey, "EC");
43 // registerOidAlgorithmParameters(provider, X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC");
44 // registerOidAlgorithmParameters(provider, X9ObjectIdentifiers.mqvSinglePass_sha1kdf_scheme, "EC");
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECAlgorithms.java 1 package org.bouncycastle.math.ec;
  /external/icu4c/config/
mh-aix-va 104 @$(SHELL) -ec "echo '#! $*.a($*.so)' | cat - $< > $@"
120 @$(SHELL) -ec 'cat $< \

Completed in 1759 milliseconds

<<11121314151617181920>>