Searched refs:ec (Results 176 - 200 of 708) sorted by relevance

1234567891011>>

/external/icu4c/common/
H A Dustrenum.cpp177 UErrorCode* ec)
179 return THIS(en)->count(*ec);
188 UErrorCode* ec)
190 return THIS(en)->unext(resultLength, *ec);
199 UErrorCode* ec)
201 return THIS(en)->next(resultLength, *ec);
209 UErrorCode* ec)
211 THIS(en)->reset(*ec);
236 uenum_openFromStringEnumeration(U_NAMESPACE_QUALIFIER StringEnumeration* adopted, UErrorCode* ec) { argument
238 if (U_SUCCESS(*ec)
176 ustrenum_count(UEnumeration* en, UErrorCode* ec) argument
186 ustrenum_unext(UEnumeration* en, int32_t* resultLength, UErrorCode* ec) argument
197 ustrenum_next(UEnumeration* en, int32_t* resultLength, UErrorCode* ec) argument
208 ustrenum_reset(UEnumeration* en, UErrorCode* ec) argument
307 uenum_openCharStringsEnumeration(const char* const* strings, int32_t count, UErrorCode* ec) argument
[all...]
/external/webkit/Source/WebCore/wml/
H A DWMLTableElement.cpp144 ExceptionCode ec = 0;
149 targetElement->appendChild(clonedNode.release(), ec);
150 ASSERT(ec == 0);
168 ExceptionCode ec = 0; local
169 itemText->appendData(newContent, ec);
170 ASSERT(ec == 0);
187 ExceptionCode ec = 0; local
204 rowElement->removeChild(columnElements.at(i - 1), ec);
205 ASSERT(ec == 0);
209 rowElement->replaceChild(newCell.release(), lastColumn, ec);
218 ExceptionCode ec = 0; local
[all...]
/external/icu4c/test/intltest/
H A Dtztest.cpp232 UErrorCode ec = U_ZERO_ERROR; local
234 UBool startsInDST = tz.inDaylightTime(min, ec);
235 if (failure(ec, "TimeZone::inDaylightTime")) return;
236 if (tz.inDaylightTime(max, ec) == startsInDST) {
241 if (failure(ec, "TimeZone::inDaylightTime")) return;
244 if (tz.inDaylightTime(mid, ec) == startsInDST) {
249 if (failure(ec, "TimeZone::inDaylightTime")) return;
361 UErrorCode ec = U_ZERO_ERROR; local
422 s_length = s->count(ec);
426 *buf += *s->snext(ec);
521 UErrorCode ec = U_ZERO_ERROR; local
726 UErrorCode ec = U_ZERO_ERROR; local
[all...]
H A Dtranstst.cpp209 UErrorCode ec = U_ZERO_ERROR; local
210 StringEnumeration* avail = Transliterator::getAvailableIDs(ec);
211 assertSuccess("getAvailableIDs()", ec);
215 avail->count(ec) == n);
216 assertSuccess("count()", ec);
219 const UnicodeString& id = *avail->snext(ec);
220 if (!assertSuccess("snext()", ec) ||
283 assertTrue("snext()==NULL", avail->snext(ec)==NULL);
284 assertSuccess("snext()", ec);
848 UErrorCode ec local
1368 UErrorCode ec = U_ZERO_ERROR; local
2102 UErrorCode ec = U_ZERO_ERROR; local
2206 UErrorCode ec = U_ZERO_ERROR; local
2231 UErrorCode ec = U_ZERO_ERROR; local
2259 UErrorCode ec = U_ZERO_ERROR; local
2288 UErrorCode ec = U_ZERO_ERROR; local
2342 UErrorCode ec = U_ZERO_ERROR; local
2384 UErrorCode ec = U_ZERO_ERROR; local
2482 UErrorCode ec = U_ZERO_ERROR; local
2886 UErrorCode ec = U_ZERO_ERROR; local
2911 UErrorCode ec = U_ZERO_ERROR; local
2938 UErrorCode ec = U_ZERO_ERROR; local
2959 UErrorCode ec = U_ZERO_ERROR; local
2997 UErrorCode ec = U_ZERO_ERROR; local
3016 UErrorCode ec = U_ZERO_ERROR; local
3034 UErrorCode ec = U_ZERO_ERROR; local
3086 UErrorCode ec = U_ZERO_ERROR; local
3175 UErrorCode ec = U_ZERO_ERROR; local
3201 UErrorCode ec; local
3403 UErrorCode ec = U_ZERO_ERROR; local
3495 _trans(const UnicodeString& id, const UnicodeString& src, UnicodeString& result, UErrorCode ec) argument
3519 UErrorCode ec = U_ZERO_ERROR; local
3595 UErrorCode ec = U_ZERO_ERROR; local
3637 UErrorCode ec = U_ZERO_ERROR; local
3663 UErrorCode ec = U_ZERO_ERROR; local
3694 UErrorCode ec = U_ZERO_ERROR; local
3762 UErrorCode ec = U_ZERO_ERROR; local
3924 UErrorCode ec = U_ZERO_ERROR; local
3973 UErrorCode ec = U_ZERO_ERROR; local
4674 UErrorCode ec = U_ZERO_ERROR; local
[all...]
/external/webkit/Source/WebCore/bindings/objc/
H A DExceptionHandlers.mm42 void raiseDOMException(ExceptionCode ec)
44 ASSERT(ec);
47 getExceptionCodeDescription(ec, description);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HistoryCustom.cpp62 ExceptionCode ec = 0; local
64 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
65 return throwError(ec);
86 ExceptionCode ec = 0; local
88 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
89 return throwError(ec);
H A DV8DOMStringMapCustom.cpp75 ExceptionCode ec = 0;
76 V8DOMStringMap::toNative(info.Holder())->deleteItem(toWebCoreString(name), ec); local
77 if (ec)
78 throwError(ec);
91 ExceptionCode ec = 0;
92 V8DOMStringMap::toNative(info.Holder())->setItem(toWebCoreString(name), toWebCoreString(value), ec); local
93 if (ec)
94 return throwError(ec);
/external/webkit/Source/WebCore/html/canvas/
H A DTypedArrayBase.h40 void set(TypedArrayBase<T>* array, unsigned offset, ExceptionCode& ec) argument
42 setImpl(array, offset * sizeof(T), ec);
45 void setRange(const T* data, size_t dataLength, unsigned offset, ExceptionCode& ec) argument
47 setRangeImpl(reinterpret_cast<const char*>(data), dataLength * sizeof(T), offset * sizeof(T), ec); local
50 void zeroRange(unsigned offset, size_t length, ExceptionCode& ec) argument
52 zeroRangeImpl(offset * sizeof(T), length * sizeof(T), ec); local
H A DInt32Array.h41 void set(TypedArrayBase<int>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<int>::set(array, offset, ec); } argument
H A DInt8Array.h43 void set(TypedArrayBase<signed char>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<signed char>::set(array, offset, ec); } argument
H A DUint16Array.h43 void set(TypedArrayBase<unsigned short>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned short>::set(array, offset, ec); } argument
/external/webkit/Source/WebCore/svg/
H A DSVGPaint.cpp85 void SVGPaint::setPaint(unsigned short paintType, const String& uri, const String& rgbColor, const String& iccColor, ExceptionCode& ec) argument
88 ec = SVGException::SVG_WRONG_TYPE_ERR;
98 ec = SVGException::SVG_INVALID_VALUE_ERR;
116 ec = SVGException::SVG_INVALID_VALUE_ERR;
128 setColor(colorType, rgbColor, iccColor, ec);
129 if (ec)
/external/webkit/Source/WebCore/css/
H A DCSSStyleSheet.cpp95 unsigned CSSStyleSheet::insertRule(const String& rule, unsigned index, ExceptionCode& ec) argument
97 ec = 0;
99 ec = INDEX_SIZE_ERR;
106 ec = SYNTAX_ERR;
117 ec = HIERARCHY_REQUEST_ERR;
123 ec = HIERARCHY_REQUEST_ERR;
135 int CSSStyleSheet::addRule(const String& selector, const String& style, int index, ExceptionCode& ec) argument
137 insertRule(selector + " { " + style + " }", index, ec);
143 int CSSStyleSheet::addRule(const String& selector, const String& style, ExceptionCode& ec) argument
145 return addRule(selector, style, length(), ec);
156 deleteRule(unsigned index, ExceptionCode& ec) argument
[all...]
H A DWebKitCSSMatrix.cpp44 WebKitCSSMatrix::WebKitCSSMatrix(const String& s, ExceptionCode& ec) argument
46 setMatrixValue(s, ec);
53 void WebKitCSSMatrix::setMatrixValue(const String& string, ExceptionCode& ec) argument
67 ec = SYNTAX_ERR;
76 ec = SYNTAX_ERR;
84 ec = SYNTAX_ERR;
96 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::inverse(ExceptionCode& ec) const
99 ec = NOT_SUPPORTED_ERR;
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.cpp232 void WorkerContext::importScripts(const Vector<String>& urls, ExceptionCode& ec) argument
234 ec = 0;
240 ec = SYNTAX_ERR;
253 ec = XMLHttpRequestException::NETWORK_ERR;
293 PassRefPtr<Database> WorkerContext::openDatabase(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
296 ec = SECURITY_ERR;
300 return Database::openDatabase(this, name, version, displayName, estimatedSize, creationCallback, ec);
312 PassRefPtr<DatabaseSync> WorkerContext::openDatabaseSync(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
315 ec = SECURITY_ERR;
319 return DatabaseSync::openDatabaseSync(this, name, version, displayName, estimatedSize, creationCallback, ec);
369 webkitRequestFileSystemSync(int type, long long size, ExceptionCode& ec) argument
406 webkitResolveLocalFileSystemSyncURL(const String& url, ExceptionCode& ec) argument
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
H A DDOMTestObj.mm344 WebCore::ExceptionCode ec = 0;
345 int result = IMPL->attrWithGetterException(ec);
346 WebCore::raiseOnDOMError(ec);
353 WebCore::ExceptionCode ec = 0;
354 IMPL->setAttrWithGetterException(newAttrWithGetterException, ec);
355 WebCore::raiseOnDOMError(ec);
367 WebCore::ExceptionCode ec = 0;
368 IMPL->setAttrWithSetterException(newAttrWithSetterException, ec);
369 WebCore::raiseOnDOMError(ec);
375 WebCore::ExceptionCode ec
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9ECPoint.java7 import org.bouncycastle.math.ec.ECCurve;
8 import org.bouncycastle.math.ec.ECPoint;
H A DX9IntegerConverter.java5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECFieldElement;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DEC5Util.java1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
13 import org.bouncycastle.math.ec.ECCurve;
48 EllipticCurve ec)
50 ECField field = ec.getField();
51 BigInteger a = ec.getA();
52 BigInteger b = ec.getB();
108 public static org.bouncycastle.math.ec.ECPoint convertPoint(
116 public static org.bouncycastle.math.ec.ECPoint convertPoint(
47 convertCurve( EllipticCurve ec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECNamedCurveParameterSpec.java5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECPoint;
/external/icu4c/i18n/
H A Dcurrfmt.h43 CurrencyFormat(const Locale& locale, UErrorCode& ec);
74 UErrorCode& ec) const;
/external/libpng/contrib/visupng/
H A Dcexcept.h102 void init_exception_context(struct exception_context *ec);
209 #define init_exception_context(ec) ((void)((ec)->penv = 0))
/external/valgrind/main/include/
H A Dpub_tool_execontext.h76 ExeContext* ec, UInt n_ips );
85 extern void VG_(pp_ExeContext) ( ExeContext* ec );
/external/webkit/Source/WebCore/fileapi/
H A DDOMFileSystemSync.cpp156 PassRefPtr<File> DOMFileSystemSync::createFile(const FileEntrySync* fileEntry, ExceptionCode& ec) argument
158 ec = 0;
163 ec = FileException::ABORT_ERR;
167 ec = result->m_code;
241 PassRefPtr<FileWriterSync> DOMFileSystemSync::createWriter(const FileEntrySync* fileEntry, ExceptionCode& ec) argument
244 ec = 0;
255 ec = FileException::ABORT_ERR;
260 ec = FileException::ErrorCodeToExceptionCode(errorCallback->error()->code());
H A DFileReaderSync.h59 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec) argument
61 return readAsText(scriptExecutionContext, blob, "", ec);

Completed in 1808 milliseconds

1234567891011>>