Searched refs:ec (Results 251 - 275 of 677) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSSQLTransactionCustom.cpp113 ExceptionCode ec = 0; local
114 m_impl->executeSQL(sqlStatement, sqlValues, callback.release(), errorCallback.release(), ec);
115 setDOMException(exec, ec);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSStyleSheet.cpp280 unsigned CSSStyleSheet::insertRule(const String& ruleString, unsigned index, ExceptionCode& ec) argument
284 ec = 0;
286 ec = INDEX_SIZE_ERR;
293 ec = SYNTAX_ERR;
301 ec = HIERARCHY_REQUEST_ERR;
310 void CSSStyleSheet::deleteRule(unsigned index, ExceptionCode& ec) argument
314 ec = 0;
316 ec = INDEX_SIZE_ERR;
330 int CSSStyleSheet::addRule(const String& selector, const String& style, int index, ExceptionCode& ec) argument
339 insertRule(text.toString(), index, ec);
345 addRule(const String& selector, const String& style, ExceptionCode& ec) argument
[all...]
H A DPropertySetCSSStyleDeclaration.cpp150 void PropertySetCSSStyleDeclaration::setCssText(const String& text, ExceptionCode& ec) argument
156 ec = 0;
157 // FIXME: Detect syntax errors and set ec.
205 void PropertySetCSSStyleDeclaration::setProperty(const String& propertyName, const String& value, const String& priority, ExceptionCode& ec) argument
217 ec = 0;
229 String PropertySetCSSStyleDeclaration::removeProperty(const String& propertyName, ExceptionCode& ec) argument
239 ec = 0;
260 void PropertySetCSSStyleDeclaration::setPropertyInternal(CSSPropertyID propertyID, const String& value, bool important, ExceptionCode& ec) argument
266 ec = 0;
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Druleiter.cpp36 UChar32 RuleCharacterIterator::next(int32_t options, UBool& isEscaped, UErrorCode& ec) { argument
37 if (U_FAILURE(ec)) return DONE;
57 ec = U_UNDEFINED_VARIABLE;
78 ec = U_MALFORMED_UNICODE_ESCAPE;
/macosx-10.9.5/ICU-511.35/icuSources/config/
H A Dmh-bsd-gcc49 @$(SHELL) -ec '$(GEN_DEPS.c) $< \
55 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
H A Dmh-haiku50 @$(SHELL) -ec '$(GEN_DEPS.c) $< \
56 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
H A Dmh-qnx58 @$(SHELL) -ec '$(GEN_DEPS.c) $< \
64 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Dcurrunit.h41 * @param ec input-output error code. If the isoCode is invalid,
45 CurrencyUnit(const UChar* isoCode, UErrorCode &ec);
H A Dmeasure.h53 * @param ec input-output error code. If the amount or the unit
58 UErrorCode& ec);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DSplitElementCommand.cpp54 ExceptionCode ec = 0; local
59 parent->insertBefore(m_element1.get(), m_element2.get(), ec);
60 if (ec)
68 m_element1->appendChild(children[i], ec);
H A DDeleteButtonController.cpp236 ExceptionCode ec = 0; local
237 container->appendChild(outline.get(), ec);
238 ASSERT(!ec);
239 if (ec)
269 container->appendChild(button.get(), ec);
270 ASSERT(!ec);
271 if (ec)
303 ExceptionCode ec = 0; local
304 m_target->appendChild(m_containerElement.get(), ec);
305 ASSERT(!ec);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorCSSAgent.cpp316 virtual bool perform(ExceptionCode& ec) argument
320 return redo(ec);
323 virtual bool undo(ExceptionCode& ec) argument
325 if (m_styleSheet->setText(m_oldText, ec)) {
332 virtual bool redo(ExceptionCode& ec) argument
334 if (m_styleSheet->setText(m_text, ec)) {
369 virtual bool perform(ExceptionCode& ec) argument
371 return redo(ec);
374 virtual bool undo(ExceptionCode& ec) argument
376 return m_styleSheet->setStyleText(m_cssId, m_oldText, 0, ec);
379 redo(ExceptionCode& ec) argument
421 perform(ExceptionCode& ec) argument
426 undo(ExceptionCode& ec) argument
432 redo(ExceptionCode& ec) argument
476 perform(ExceptionCode& ec) argument
481 undo(ExceptionCode& ec) argument
486 redo(ExceptionCode& ec) argument
507 perform(ExceptionCode& ec) argument
515 undo(ExceptionCode& ec) argument
520 redo(ExceptionCode& ec) argument
540 perform(ExceptionCode& ec) argument
545 undo(ExceptionCode& ec) argument
550 redo(ExceptionCode& ec) argument
845 m_domAgent->history()->perform(adoptPtr(new SetStyleSheetTextAction(inspectorStyleSheet, text)), ec); local
926 ExceptionCode ec = 0; local
[all...]
H A DInspectorStyleSheet.cpp361 bool InspectorStyle::setPropertyText(unsigned index, const String& propertyText, bool overwrite, String* oldText, ExceptionCode& ec) argument
367 ec = NOT_FOUND_ERR;
384 ec = SYNTAX_ERR;
390 ec = SYNTAX_ERR;
397 ec = NOT_FOUND_ERR;
404 ec = NOT_FOUND_ERR;
411 ec = INDEX_SIZE_ERR;
422 bool InspectorStyle::toggleProperty(unsigned index, bool disable, ExceptionCode& ec) argument
426 ec = NO_MODIFICATION_ALLOWED_ERR;
432 ec
644 setText(const String& text, ExceptionCode& ec) argument
818 setText(const String& text, ExceptionCode& ec) argument
831 ruleSelector(const InspectorCSSId& id, ExceptionCode& ec) argument
841 setRuleSelector(const InspectorCSSId& id, const String& selector, ExceptionCode& ec) argument
877 addRule(const String& selector, ExceptionCode& ec) argument
925 deleteRule(const InspectorCSSId& id, ExceptionCode& ec) argument
1112 setStyleText(const InspectorCSSId& id, const String& text, String* oldText, ExceptionCode& ec) argument
1129 setPropertyText(const InspectorCSSId& id, unsigned propertyIndex, const String& text, bool overwrite, String* oldText, ExceptionCode& ec) argument
1143 toggleProperty(const InspectorCSSId& id, unsigned propertyIndex, bool disable, ExceptionCode& ec) argument
1299 setStyleText(CSSStyleDeclaration* style, const String& text, ExceptionCode& ec) argument
1362 ExceptionCode ec = 0; local
1481 setStyleText(CSSStyleDeclaration* style, const String& text, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGMatrix.h108 SVGMatrix inverse(ExceptionCode& ec) const
112 ec = SVGException::SVG_MATRIX_NOT_INVERTABLE;
117 SVGMatrix rotateFromVector(double x, double y, ExceptionCode& ec) argument
120 ec = SVGException::SVG_INVALID_VALUE_ERR;
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Dencoding.h263 rb_econv_result_t rb_econv_convert(rb_econv_t *ec,
267 void rb_econv_close(rb_econv_t *ec);
270 int rb_econv_set_replacement(rb_econv_t *ec, const unsigned char *str, size_t len, const char *encname);
273 int rb_econv_decorate_at_first(rb_econv_t *ec, const char *decorator_name);
274 int rb_econv_decorate_at_last(rb_econv_t *ec, const char *decorator_name);
279 int rb_econv_insert_output(rb_econv_t *ec,
283 const char *rb_econv_encoding_to_insert_output(rb_econv_t *ec);
286 void rb_econv_check_error(rb_econv_t *ec);
289 VALUE rb_econv_make_exception(rb_econv_t *ec);
291 int rb_econv_putbackable(rb_econv_t *ec);
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DPathV2.cpp616 if (error_code ec = current_path(current_dir)) return ec;
659 if (error_code ec = fs::exists(parent, parent_exists)) return ec;
662 if (error_code ec = create_directories(parent, existed)) return ec;
682 if (error_code ec = status(path, st))
683 return ec;
694 if (error_code ec = status(path, st))
695 return ec;
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ducal.cpp32 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) { argument
34 if (ec!=NULL && U_SUCCESS(*ec)) {
43 *ec = U_MEMORY_ALLOCATION_ERROR;
51 const int32_t* rawOffset, UErrorCode* ec) {
53 zoneType, region, rawOffset, *ec), ec);
57 ucal_openTimeZones(UErrorCode* ec) { argument
58 return uenum_openFromStringEnumeration(TimeZone::createEnumeration(), ec);
62 ucal_openCountryTimeZones(const char* country, UErrorCode* ec) { argument
50 ucal_openTimeZoneIDEnumeration(USystemTimeZoneType zoneType, const char* region, const int32_t* rawOffset, UErrorCode* ec) argument
67 ucal_getDefaultTimeZone(UChar* result, int32_t resultCapacity, UErrorCode* ec) argument
84 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec) argument
92 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec) argument
[all...]
H A Dmsgfmt.cpp199 void formatAndAppend(const Format* formatter, const Formattable& arg, UErrorCode& ec) { argument
201 formatter->format(arg, s, ec);
202 if (U_SUCCESS(ec)) {
303 UErrorCode ec = U_ZERO_ERROR; local
304 copyObjects(that, ec);
305 if (U_FAILURE(ec)) {
368 UErrorCode ec = U_ZERO_ERROR; local
369 copyObjects(that, ec);
370 if (U_FAILURE(ec)) {
399 UErrorCode ec local
470 applyPattern(const UnicodeString& pattern, UParseError& parseError, UErrorCode& ec) argument
1186 copyObjects(const MessageFormat& that, UErrorCode& ec) argument
1379 UErrorCode ec = U_ZERO_ERROR; local
1446 makeRBNF(URBNFRuleSetTag tag, const Locale& locale, const UnicodeString& defaultRuleSet, UErrorCode& ec) argument
1555 createAppropriateFormat(UnicodeString& type, UnicodeString& style, Formattable::Type& formattableType, UParseError& parseError, UErrorCode& ec) argument
[all...]
H A Ducurr.cpp152 _findMetaData(const UChar* currency, UErrorCode& ec) { argument
155 if (U_SUCCESS(ec)) {
156 ec = U_ILLEGAL_ARGUMENT_ERROR;
164 UResourceBundle* currencyData = ures_openDirect(U_ICUDATA_CURR, CURRENCY_DATA, &ec);
165 UResourceBundle* currencyMeta = ures_getByKey(currencyData, CURRENCY_META, currencyData, &ec);
167 if (U_FAILURE(ec)) {
179 rb = ures_getByKey(currencyMeta,DEFAULT_META, NULL, &ec);
180 if (U_FAILURE(ec)) {
189 const int32_t *data = ures_getIntVector(rb, &len, &ec);
190 if (U_FAILURE(ec) || le
212 idForLocale(const char* locale, char* countryAndVariant, int capacity, UErrorCode* ec) argument
390 ucurr_forLocale(const char* locale, UChar* buff, int32_t buffCapacity, UErrorCode* ec) argument
509 ucurr_getName(const UChar* currency, const char* locale, UCurrNameStyle nameStyle, UBool* isChoiceFormat, int32_t* len, UErrorCode* ec) argument
608 ucurr_getPluralName(const UChar* currency, const char* locale, UBool* isChoiceFormat, const char* pluralCount, int32_t* len, UErrorCode* ec) argument
802 UErrorCode ec = U_ZERO_ERROR; local
822 collectCurrencyNames(const char* locale, CurrencyNameStruct** currencyNames, int32_t* total_currency_name_count, CurrencyNameStruct** currencySymbols, int32_t* total_currency_symbol_count, UErrorCode& ec) argument
1264 uprv_parseCurrency(const char* locale, const icu::UnicodeString& text, icu::ParsePosition& pos, int8_t type, UChar* result, UErrorCode& ec) argument
1417 uprv_getStaticCurrencyName(const UChar* iso, const char* loc, icu::UnicodeString& result, UErrorCode& ec) argument
1431 ChoiceFormat f(UnicodeString(TRUE, currname, len), ec); local
1444 ucurr_getDefaultFractionDigits(const UChar* currency, UErrorCode* ec) argument
1449 ucurr_getRoundingIncrement(const UChar* currency, UErrorCode* ec) argument
2002 ucurr_countCurrencies(const char* locale, UDate date, UErrorCode* ec) argument
2109 ucurr_forLocaleAndDate(const char* locale, UDate date, int32_t index, UChar* buff, int32_t buffCapacity, UErrorCode* ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/ObjC/
H A DDOMTestObj.mm377 WebCore::ExceptionCode ec = 0;
378 int result = IMPL->attrWithGetterException(ec);
379 WebCore::raiseOnDOMError(ec);
398 WebCore::ExceptionCode ec = 0;
399 IMPL->setAttrWithSetterException(newAttrWithSetterException, ec);
400 WebCore::raiseOnDOMError(ec);
406 WebCore::ExceptionCode ec = 0;
407 NSString *result = IMPL->stringAttrWithGetterException(ec);
408 WebCore::raiseOnDOMError(ec);
427 WebCore::ExceptionCode ec
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcdattst.c801 UErrorCode ec = U_ZERO_ERROR; local
803 ctest_setTimeZone(NULL, &ec);
806 date = udat_open(UDAT_NONE, UDAT_SHORT, "en_US", NULL, 0, NULL, 0, &ec);
807 if (U_FAILURE(ec)) {
809 u_errorName(ec));
814 time = udat_open(UDAT_SHORT, UDAT_NONE, "en_US", NULL, 0, NULL, 0, &ec);
815 if (U_FAILURE(ec)) {
817 u_errorName(ec));
822 full = udat_open(UDAT_FULL, UDAT_FULL, "en_US", NULL, 0, NULL, 0, &ec);
823 if (U_FAILURE(ec)) {
894 UErrorCode ec = U_ZERO_ERROR; local
1154 _aux1ExtremeDates(UDateFormat* fmt, UDate date, UChar* buf, int32_t buflen, char* cbuf, UErrorCode* ec) argument
1174 _aux2ExtremeDates(UDateFormat* fmt, UDate small, UDate large, UChar* buf, int32_t buflen, char* cbuf, int32_t count, UErrorCode* ec) argument
1205 UErrorCode ec; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dexp_clib.c2438 struct exp_case *ec; /* points to current ecase */
2471 for (ec=ecases;ec->type != exp_end;ec++) {
2472 if ((ec->type == exp_regexp) && !ec->re) {
2474 if (!(ec->re = TclRegComp(ec->pattern))) {
2475 fprintf(stderr,"regular expression %s is bad: %s",ec->pattern,TclGetRegError());
2620 for (ec
2437 struct exp_case *ec; /* points to current ecase */ local
2714 struct exp_case *ec, *ecases; local
2779 struct exp_case *ec, *ecases; local
2845 int ec; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/GObject/
H A DWebKitDOMTestEventTarget.cpp75 WebCore::ExceptionCode ec = 0; local
76 coreTarget->dispatchEvent(coreEvent, ec);
77 if (ec) {
78 WebCore::ExceptionCodeDescription description(ec);
158 WebCore::ExceptionCode ec = 0; local
159 gboolean result = item->dispatchEvent(convertedEvt, ec);
160 if (ec) {
161 WebCore::ExceptionCodeDescription ecdesc(ec);
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DCustomElementRegistry.cpp111 PassRefPtr<CustomElementConstructor> CustomElementRegistry::registerElement(ScriptState* state, const AtomicString& name, const Dictionary& options, ExceptionCode& ec) argument
120 ec = INVALID_CHARACTER_ERR;
131 ec = INVALID_STATE_ERR;
137 ec = INVALID_STATE_ERR;
142 ec = INVALID_STATE_ERR;
150 ec = INVALID_STATE_ERR;
156 ec = INVALID_STATE_ERR;
162 ec = INVALID_STATE_ERR;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLFrameOwnerElement.cpp116 SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionCode& ec) const
122 ec = NOT_SUPPORTED_ERR;

Completed in 324 milliseconds

<<11121314151617181920>>