Home
last modified time | relevance | path

Searched defs:ec (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DDataView.h47 …int16_t getInt16(unsigned byteOffset, ExceptionState& ec) { return getInt16(byteOffset, false, ec)… in getInt16()
49 …uint16_t getUint16(unsigned byteOffset, ExceptionState& ec) { return getUint16(byteOffset, false, … in getUint16()
51 …int32_t getInt32(unsigned byteOffset, ExceptionState& ec) { return getInt32(byteOffset, false, ec)… in getInt32()
53 …uint32_t getUint32(unsigned byteOffset, ExceptionState& ec) { return getUint32(byteOffset, false, … in getUint32()
55 …float getFloat32(unsigned byteOffset, ExceptionState& ec) { return getFloat32(byteOffset, false, e… in getFloat32()
57 …double getFloat64(unsigned byteOffset, ExceptionState& ec) { return getFloat64(byteOffset, false, … in getFloat64()
62 …void setInt16(unsigned byteOffset, int16_t value, ExceptionState& ec) { setInt16(byteOffset, value… in setInt16()
64 …void setUint16(unsigned byteOffset, uint16_t value, ExceptionState& ec) { setUint16(byteOffset, va… in setUint16()
66 …void setInt32(unsigned byteOffset, int32_t value, ExceptionState& ec) { setInt32(byteOffset, value… in setInt32()
68 …void setUint32(unsigned byteOffset, uint32_t value, ExceptionState& ec) { setUint32(byteOffset, va… in setUint32()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/storage/
DStorage.h50 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec, m_frame); } in length()
51 …String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_fram… in key()
52 …String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, e… in getItem()
53 …void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(… in setItem()
54 …void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_fram… in removeItem()
55 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); } in clear()
56 …bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, e… in contains()
/external/libcxx/test/thread/futures/futures.future_error/
Dcode.pass.cpp22 std::error_code ec = std::make_error_code(std::future_errc::broken_promise); in main() local
27 std::error_code ec = std::make_error_code(std::future_errc::future_already_retrieved); in main() local
32 std::error_code ec = std::make_error_code(std::future_errc::promise_already_satisfied); in main() local
37 std::error_code ec = std::make_error_code(std::future_errc::no_state); in main() local
/external/llvm/lib/Object/
DObject.cpp94 if (std::error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect))) in LLVMMoveToContainingSection() local
120 if (std::error_code ec = (*unwrap(SI))->getName(ret)) in LLVMGetSectionName() local
127 if (std::error_code ec = (*unwrap(SI))->getSize(ret)) in LLVMGetSectionSize() local
134 if (std::error_code ec = (*unwrap(SI))->getContents(ret)) in LLVMGetSectionContents() local
141 if (std::error_code ec = (*unwrap(SI))->getAddress(ret)) in LLVMGetSectionAddress() local
149 if (std::error_code ec = (*unwrap(SI))->containsSymbol(**unwrap(Sym), ret)) in LLVMGetSectionContainsSymbol() local
177 if (std::error_code ec = (*unwrap(SI))->getName(ret)) in LLVMGetSymbolName() local
184 if (std::error_code ec = (*unwrap(SI))->getAddress(ret)) in LLVMGetSymbolAddress() local
191 if (std::error_code ec = (*unwrap(SI))->getSize(ret)) in LLVMGetSymbolSize() local
199 if (std::error_code ec = (*unwrap(RI))->getAddress(ret)) in LLVMGetRelocationAddress() local
[all …]
/external/chromium_org/third_party/icu/source/test/intltest/
Dtextfile.cpp21 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) : in TextFile()
76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) { in readLine()
111 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec, in readLineSkippingComments()
132 UBool TextFile::setBuffer(int32_t index, char c, UErrorCode& ec) { in setBuffer()
Dtokiter.cpp26 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) { in next()
65 UBool TokenIterator::nextToken(UnicodeString& token, UErrorCode& ec) { in nextToken()
/external/icu/icu4c/source/test/intltest/
Dtextfile.cpp21 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) : in TextFile()
76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) { in readLine()
111 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec, in readLineSkippingComments()
132 UBool TextFile::setBuffer(int32_t index, char c, UErrorCode& ec) { in setBuffer()
Dtokiter.cpp26 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) { in next()
65 UBool TokenIterator::nextToken(UnicodeString& token, UErrorCode& ec) { in nextToken()
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/
Dbool.pass.cpp23 const std::error_condition ec(6, std::generic_category()); in main() local
27 const std::error_condition ec(0, std::generic_category()); in main() local
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
Dassign.pass.cpp22 std::error_condition ec; in main() local
28 std::error_condition ec; in main() local
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
Dassign.pass.cpp22 std::error_code ec; in main() local
28 std::error_code ec; in main() local
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
Dint_error_category.pass.cpp22 std::error_code ec(6, std::system_category()); in main() local
27 std::error_code ec(8, std::generic_category()); in main() local
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
Dbool.pass.cpp23 const std::error_code ec(6, std::generic_category()); in main() local
27 const std::error_code ec(0, std::generic_category()); in main() local
Ddefault_error_condition.pass.cpp22 const std::error_code ec(6, std::generic_category()); in main() local
27 const std::error_code ec(6, std::system_category()); in main() local
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
Dint_error_category.pass.cpp22 std::error_condition ec(6, std::system_category()); in main() local
27 std::error_condition ec(8, std::generic_category()); in main() local
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMException.cpp84 static const CoreException* getErrorEntry(ExceptionCode ec) in getErrorEntry()
101 PassRefPtrWillBeRawPtr<DOMException> DOMException::create(ExceptionCode ec, const String& sanitized… in create()
121 String DOMException::getErrorName(ExceptionCode ec) in getErrorName()
131 String DOMException::getErrorMessage(ExceptionCode ec) in getErrorMessage()
/external/chromium_org/third_party/icu/source/common/
Duset_props.cpp32 UErrorCode* ec) in uset_openPattern()
52 UErrorCode* ec) in uset_openPatternOptions()
101 UProperty prop, int32_t value, UErrorCode* ec) { in uset_applyIntPropertyValue()
109 UErrorCode* ec) { in uset_applyPropertyAlias()
132 UErrorCode* ec) { in uset_toPattern()
Dustrenum.cpp186 UErrorCode* ec) in ustrenum_count()
197 UErrorCode* ec) in ustrenum_unext()
208 UErrorCode* ec) in ustrenum_next()
218 UErrorCode* ec) in ustrenum_reset()
245 uenum_openFromStringEnumeration(icu::StringEnumeration* adopted, UErrorCode* ec) { in uenum_openFromStringEnumeration()
343 UErrorCode* ec) { in uenum_openCharStringsEnumeration()
362 UErrorCode* ec) { in uenum_openUCharStringsEnumeration()
/external/icu/icu4c/source/common/
Duset_props.cpp32 UErrorCode* ec) in uset_openPattern()
52 UErrorCode* ec) in uset_openPatternOptions()
101 UProperty prop, int32_t value, UErrorCode* ec) { in uset_applyIntPropertyValue()
109 UErrorCode* ec) { in uset_applyPropertyAlias()
132 UErrorCode* ec) { in uset_toPattern()
Dustrenum.cpp186 UErrorCode* ec) in ustrenum_count()
197 UErrorCode* ec) in ustrenum_unext()
208 UErrorCode* ec) in ustrenum_next()
218 UErrorCode* ec) in ustrenum_reset()
245 uenum_openFromStringEnumeration(icu::StringEnumeration* adopted, UErrorCode* ec) { in uenum_openFromStringEnumeration()
343 UErrorCode* ec) { in uenum_openCharStringsEnumeration()
362 UErrorCode* ec) { in uenum_openUCharStringsEnumeration()
/external/chromium_org/third_party/icu/source/i18n/
Dmeasfmt.cpp25 UErrorCode& ec) { in createCurrencyFormat()
37 MeasureFormat* U_EXPORT2 MeasureFormat::createCurrencyFormat(UErrorCode& ec) { in createCurrencyFormat()
Dtranslit.cpp975 UErrorCode ec = U_ZERO_ERROR; in createBasicInstance() local
1214 UErrorCode ec = U_ZERO_ERROR; in registerFactory() local
1225 UErrorCode ec = U_ZERO_ERROR; in _registerFactory() local
1253 UErrorCode ec = U_ZERO_ERROR; in registerInstance() local
1260 UErrorCode ec = U_ZERO_ERROR; in _registerInstance() local
1267 UErrorCode ec = U_ZERO_ERROR; in registerAlias() local
1275 UErrorCode ec = U_ZERO_ERROR; in _registerAlias() local
1289 UErrorCode ec = U_ZERO_ERROR; in unregister() local
1304 UErrorCode ec = U_ZERO_ERROR; in countAvailableIDs() local
1320 UErrorCode ec = U_ZERO_ERROR; in getAvailableID() local
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DV8ThrowException.h36 …static v8::Handle<v8::Value> createDOMException(int ec, const String& message, const v8::Handle<v8… in createDOMException()
42 …static v8::Handle<v8::Value> throwDOMException(int ec, const String& message, const v8::Handle<v8:… in throwDOMException()
/external/libcxx/src/
Dmutex.cpp30 int ec = pthread_mutex_lock(&__m_); in lock() local
44 int ec = pthread_mutex_unlock(&__m_); in unlock() local
54 int ec = pthread_mutexattr_init(&attr); in recursive_mutex() local
90 int ec = pthread_mutex_lock(&__m_); in lock() local
/external/icu/icu4c/source/i18n/
Dtranslit.cpp975 UErrorCode ec = U_ZERO_ERROR; in createBasicInstance() local
1214 UErrorCode ec = U_ZERO_ERROR; in registerFactory() local
1225 UErrorCode ec = U_ZERO_ERROR; in _registerFactory() local
1253 UErrorCode ec = U_ZERO_ERROR; in registerInstance() local
1260 UErrorCode ec = U_ZERO_ERROR; in _registerInstance() local
1267 UErrorCode ec = U_ZERO_ERROR; in registerAlias() local
1275 UErrorCode ec = U_ZERO_ERROR; in _registerAlias() local
1289 UErrorCode ec = U_ZERO_ERROR; in unregister() local
1304 UErrorCode ec = U_ZERO_ERROR; in countAvailableIDs() local
1320 UErrorCode ec = U_ZERO_ERROR; in getAvailableID() local
[all …]

12345678910>>...12