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

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/bindings/js/
JSWebGLRenderingContextCustom.cpp 139 ExceptionCode ec = 0;
150 info = context->getBufferParameter(target, pname, ec);
153 info = context->getRenderbufferParameter(target, pname, ec);
156 info = context->getTexParameter(target, pname, ec);
160 info = context->getVertexAttrib(target, pname, ec);
166 if (ec) {
167 setDOMException(exec, ec);
208 ExceptionCode ec = 0;
216 bool succeed = context->getAttachedShaders(program, shaders, ec);
217 if (ec) {
    [all...]
  /external/llvm/utils/obj2yaml/
obj2yaml.cpp 76 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, buf))
77 llvm::errs() << "Error: '" << ec.message() << "' opening file '"
80 ec = coff2yaml(llvm::outs(), buf.take());
81 if (ec)
82 llvm::errs() << "Error: " << ec.message() << " dumping COFF file" << endl;
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.cpp 113 ExceptionCode ec; local
115 RefPtr<Element> rowElement = m_tableElement->insertRow(-1, ec);
116 rowElement->setAttribute("class", "ftpDirectoryEntryRow", ec);
119 element->appendChild(Text::create(document(), String(&noBreakSpace, 1)), ec);
121 element->setAttribute("class", "ftpDirectoryIcon ftpDirectoryTypeDirectory", ec);
123 element->setAttribute("class", "ftpDirectoryIcon ftpDirectoryTypeFile", ec);
124 rowElement->appendChild(element, ec);
127 element->setAttribute("class", "ftpDirectoryFileName", ec);
128 rowElement->appendChild(element, ec);
131 element->appendChild(Text::create(document(), date), ec);
143 ExceptionCode ec; local
327 ExceptionCode ec; local
349 ExceptionCode ec; local
    [all...]
HTMLMeterElement.cpp 90 void HTMLMeterElement::setMin(double min, ExceptionCode& ec)
93 ec = NOT_SUPPORTED_ERR;
106 void HTMLMeterElement::setMax(double max, ExceptionCode& ec)
109 ec = NOT_SUPPORTED_ERR;
122 void HTMLMeterElement::setValue(double value, ExceptionCode& ec)
125 ec = NOT_SUPPORTED_ERR;
138 void HTMLMeterElement::setLow(double low, ExceptionCode& ec)
141 ec = NOT_SUPPORTED_ERR;
154 void HTMLMeterElement::setHigh(double high, ExceptionCode& ec)
157 ec = NOT_SUPPORTED_ERR
232 ExceptionCode ec = 0; local
    [all...]
HTMLTableRowElement.cpp 121 PassRefPtr<HTMLElement> HTMLTableRowElement::insertCell(int index, ExceptionCode& ec)
126 ec = INDEX_SIZE_ERR;
132 appendChild(cell, ec);
139 insertBefore(cell, n, ec);
144 void HTMLTableRowElement::deleteCell(int index, ExceptionCode& ec)
152 HTMLElement::removeChild(cell.get(), ec);
154 ec = INDEX_SIZE_ERR;
162 void HTMLTableRowElement::setCells(HTMLCollection*, ExceptionCode& ec)
164 ec = NO_MODIFICATION_ALLOWED_ERR;
  /external/llvm/tools/llvm-size/
llvm-size.cpp 70 /// @brief If ec is not success, print the error and return true.
71 static bool error(error_code ec) {
72 if (!ec) return false;
74 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
114 error_code ec; local
117 i.increment(ec)) {
118 if (error(ec))
159 i.increment(ec)) {
160 if (error(ec))
192 error_code ec; local
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGTextContentElement.cpp 63 ExceptionCode ec = 0; local
64 m_textLength.value.newValueSpecifiedUnits(LengthTypeNumber, getComputedTextLength(), ec);
65 ASSERT(!ec);
84 float SVGTextContentElement::getSubStringLength(unsigned charnum, unsigned nchars, ExceptionCode& ec) const
90 ec = INDEX_SIZE_ERR;
97 FloatPoint SVGTextContentElement::getStartPositionOfChar(unsigned charnum, ExceptionCode& ec) const
102 ec = INDEX_SIZE_ERR;
109 FloatPoint SVGTextContentElement::getEndPositionOfChar(unsigned charnum, ExceptionCode& ec) const
114 ec = INDEX_SIZE_ERR;
121 FloatRect SVGTextContentElement::getExtentOfChar(unsigned charnum, ExceptionCode& ec) cons
    [all...]
SVGPaint.cpp 85 void SVGPaint::setPaint(unsigned short paintType, const String& uri, const String& rgbColor, const String& iccColor, ExceptionCode& ec)
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/icu4c/i18n/
currpinf.cpp 244 UErrorCode ec = U_ZERO_ERROR; local
245 UResourceBundle *rb = ures_open(NULL, loc.getName(), &ec);
246 UResourceBundle *numElements = ures_getByKeyWithFallback(rb, gNumberElementsTag, NULL, &ec);
247 rb = ures_getByKeyWithFallback(numElements, ns->getName(), rb, &ec);
248 rb = ures_getByKeyWithFallback(rb, gPatternsTag, rb, &ec);
250 const UChar* numberStylePattern = ures_getStringByKeyWithFallback(rb, gDecimalFormatTag, &ptnLen, &ec);
252 if ( ec == U_MISSING_RESOURCE_ERROR && uprv_strcmp(ns->getName(),gLatnTag)) {
253 ec = U_ZERO_ERROR;
254 rb = ures_getByKeyWithFallback(numElements, gLatnTag, rb, &ec);
255 rb = ures_getByKeyWithFallback(rb, gPatternsTag, rb, &ec);
    [all...]
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp 226 String XMLHttpRequest::responseText(ExceptionCode& ec)
229 ec = INVALID_STATE_ERR;
235 Document* XMLHttpRequest::responseXML(ExceptionCode& ec)
238 ec = INVALID_STATE_ERR;
264 Blob* XMLHttpRequest::responseBlob(ExceptionCode& ec) const
267 ec = INVALID_STATE_ERR;
274 ArrayBuffer* XMLHttpRequest::responseArrayBuffer(ExceptionCode& ec)
277 ec = INVALID_STATE_ERR;
295 void XMLHttpRequest::setResponseType(const String& responseType, ExceptionCode& ec)
298 ec = INVALID_STATE_ERR
479 send(String(), ec); local
    [all...]
  /external/webkit/Source/WebCore/dom/
ExceptionCode.cpp 247 void getExceptionCodeDescription(ExceptionCode ec, ExceptionCodeDescription& description)
249 ASSERT(ec);
252 int code = ec;
345 description.name = (ec >= nameTableOffset && ec - nameTableOffset < nameTableSize) ? nameTable[ec - nameTableOffset] : 0;
346 description.description = (ec >= nameTableOffset && ec - nameTableOffset < nameTableSize) ? descriptionTable[ec - nameTableOffset] : 0;
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 83 error_code ec; local
88 ec);
89 if (ec) {
117 error_code ec; local
120 ec = applyMemoryGroupPermissions(CodeMem,
122 if (ec) {
124 *ErrMsg = ec.message();
130 ec = applyMemoryGroupPermissions(RODataMem,
132 if (ec) {
134 *ErrMsg = ec.message()
148 error_code ec; local
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLTableElement.cpp 144 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/
tztest.cpp 239 UErrorCode ec = U_ZERO_ERROR; local
241 UBool startsInDST = tz.inDaylightTime(min, ec);
242 if (failure(ec, "TimeZone::inDaylightTime")) return;
243 if (tz.inDaylightTime(max, ec) == startsInDST) {
248 if (failure(ec, "TimeZone::inDaylightTime")) return;
251 if (tz.inDaylightTime(mid, ec) == startsInDST) {
256 if (failure(ec, "TimeZone::inDaylightTime")) return;
368 UErrorCode ec = U_ZERO_ERROR; local
429 s_length = s->count(ec);
433 *buf += *s->snext(ec);
528 UErrorCode ec = U_ZERO_ERROR; local
733 UErrorCode ec = U_ZERO_ERROR; local
1692 UErrorCode ec = U_ZERO_ERROR; local
1800 UErrorCode ec = U_ZERO_ERROR; local
1994 UErrorCode ec = U_ZERO_ERROR; local
2082 TimeZone::getCanonicalID(UnicodeString(data[i].id), canonicalID, isSystemID, ec); local
    [all...]
transtst.cpp 210 UErrorCode ec = U_ZERO_ERROR; local
211 StringEnumeration* avail = Transliterator::getAvailableIDs(ec);
212 assertSuccess("getAvailableIDs()", ec);
216 avail->count(ec) == n);
217 assertSuccess("count()", ec);
220 const UnicodeString& id = *avail->snext(ec);
221 if (!assertSuccess("snext()", ec) ||
284 assertTrue("snext()==NULL", avail->snext(ec)==NULL);
285 assertSuccess("snext()", ec);
849 UErrorCode ec = U_ZERO_ERROR local
1369 UErrorCode ec = U_ZERO_ERROR; local
2103 UErrorCode ec = U_ZERO_ERROR; local
2207 UErrorCode ec = U_ZERO_ERROR; local
2232 UErrorCode ec = U_ZERO_ERROR; local
2260 UErrorCode ec = U_ZERO_ERROR; local
2289 UErrorCode ec = U_ZERO_ERROR; local
2343 UErrorCode ec = U_ZERO_ERROR; local
2385 UErrorCode ec = U_ZERO_ERROR; local
2483 UErrorCode ec = U_ZERO_ERROR; local
2887 UErrorCode ec = U_ZERO_ERROR; local
2912 UErrorCode ec = U_ZERO_ERROR; local
2939 UErrorCode ec = U_ZERO_ERROR; local
2960 UErrorCode ec = U_ZERO_ERROR; local
2998 UErrorCode ec = U_ZERO_ERROR; local
3017 UErrorCode ec = U_ZERO_ERROR; local
3035 UErrorCode ec = U_ZERO_ERROR; local
3087 UErrorCode ec = U_ZERO_ERROR; local
3176 UErrorCode ec = U_ZERO_ERROR; local
3202 UErrorCode ec; local
3404 UErrorCode ec = U_ZERO_ERROR; local
3520 UErrorCode ec = U_ZERO_ERROR; local
3596 UErrorCode ec = U_ZERO_ERROR; local
3638 UErrorCode ec = U_ZERO_ERROR; local
3664 UErrorCode ec = U_ZERO_ERROR; local
3695 UErrorCode ec = U_ZERO_ERROR; local
3763 UErrorCode ec = U_ZERO_ERROR; local
3925 UErrorCode ec = U_ZERO_ERROR; local
3974 UErrorCode ec = U_ZERO_ERROR; local
4675 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
ExceptionHandlers.mm 42 void raiseDOMException(ExceptionCode ec)
44 ASSERT(ec);
47 getExceptionCodeDescription(ec, description);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HistoryCustom.cpp 62 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);
  /external/icu4c/common/
ustrenum.cpp 186 UErrorCode* ec)
188 return THIS(en)->count(*ec);
197 UErrorCode* ec)
199 return THIS(en)->unext(resultLength, *ec);
208 UErrorCode* ec)
210 return THIS(en)->next(resultLength, *ec);
218 UErrorCode* ec)
220 THIS(en)->reset(*ec);
245 uenum_openFromStringEnumeration(icu::StringEnumeration* adopted, UErrorCode* ec) {
247 if (U_SUCCESS(*ec) && adopted != NULL)
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSheet.cpp 95 unsigned CSSStyleSheet::insertRule(const String& rule, unsigned index, ExceptionCode& ec)
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)
137 insertRule(selector + " { " + style + " }", index, ec);
143 int CSSStyleSheet::addRule(const String& selector, const String& style, ExceptionCode& ec)
145 return addRule(selector, style, length(), ec);
    [all...]
  /external/webkit/Source/WebCore/workers/
WorkerContext.cpp 232 void WorkerContext::importScripts(const Vector<String>& urls, ExceptionCode& ec)
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)
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)
315 ec = SECURITY_ERR;
319 return DatabaseSync::openDatabaseSync(this, name, version, displayName, estimatedSize, creationCallback, ec);
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
DOMTestObj.mm 344 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 = 0
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9ECPoint.java 7 import org.bouncycastle.math.ec.ECCurve;
8 import org.bouncycastle.math.ec.ECPoint;
X9IntegerConverter.java 5 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/
EC5Util.java 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
13 import org.bouncycastle.math.ec.ECCurve;
21 // TODO: the Sun EC implementation doesn't currently handle the seed properly
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(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECNamedCurveParameterSpec.java 5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECPoint;
56 * return the name of the curve the EC domain parameters belong to.

Completed in 3535 milliseconds

1 2 3 4 5 6 7 891011>>