HomeSort by relevance Sort by last modified time
    Searched defs:ec (Results 176 - 200 of 357) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu4c/test/letest/
gendata.cpp 155 int32_t ec = 0; local
187 while((element = testCase->nextChildElement(ec)) != NULL) {
xmlreader.cpp 175 int32_t ec = 0; local
199 while((element = testCase->nextChildElement(ec)) != NULL) {
  /external/llvm/include/llvm/Object/
COFF.h 163 COFFObjectFile(MemoryBuffer *Object, error_code &ec);
188 error_code ec = getSymbol(index, s); local
190 return ec;
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 488 error_code ec; local
491 i != e; i.increment(ec)) {
548 reloc_i != reloc_e; reloc_i.increment(ec)) {
566 error_code ec(reloc_i->getTypeName(Name));
567 if (ec) {
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 197 error_code ec; local
200 I != E && !ec;
201 I.increment(ec)) {
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 132 static bool error(error_code ec, Twine path = Twine()) {
133 if (ec) {
134 error(ec.message(), path);
304 error_code ec; local
311 for (symbol_iterator i = ibegin; i != iend; i.increment(ec)) {
312 if (error(ec)) break;
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.cpp 24 static bool error(error_code ec) {
25 if (!ec)
27 errs() << "LLVMSymbolizer: error reading file: " << ec.message() << ".\n";
49 error_code ec; local
51 si != se; si.increment(ec)) {
52 if (error(ec))
198 if (error_code ec = MemoryBuffer::getFile(Path, Buff))
199 error(ec);
  /external/llvm/unittests/Support/
Path.cpp 242 error_code ec; local
243 for (fs::directory_iterator i(".", ec), e; i != e; i.increment(ec))
244 ASSERT_NO_ERROR(ec);
261 + "/recursive", ec), e; i != e; i.increment(ec)){
262 ASSERT_NO_ERROR(ec);
361 error_code EC;
369 EC);
370 ASSERT_NO_ERROR(EC);
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 221 /// @return If ec == errc::success, The absolute path to the program. Otherwise
223 static std::string FindProgram(const std::string &Program, error_code &ec) {
245 ec = windows_error(::GetLastError());
248 ec = windows_error::buffer_overflow;
252 ec = windows_error::success;
315 error_code ec; local
316 ProgramToRun = FindProgram(ProgramToRun, ec);
317 if (ec) {
319 << "': " << ec.message() << '\n';
388 ec = windows_error(::GetLastError())
    [all...]
  /external/openssl/crypto/ec/
ec_ameth.c 61 #include <openssl/ec.h>
105 EC_KEY *ec_key = pkey->pkey.ec;
229 const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec);
230 const EC_POINT *pa = EC_KEY_get0_public_key(a->pkey.ec),
231 *pb = EC_KEY_get0_public_key(b->pkey.ec);
320 ec_key = pkey->pkey.ec;
368 return ECDSA_size(pkey->pkey.ec);
382 group = EC_KEY_get0_group(pkey->pkey.ec);
396 if (EC_KEY_get0_group(pkey->pkey.ec) == NULL)
403 EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec));
562 EC_KEY *ec; local
    [all...]
  /external/valgrind/main/coregrind/
m_execontext.c 171 void VG_(pp_ExeContext) ( ExeContext* ec )
173 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
459 ExeContext* ec; local
463 for (ec = ec_htab[i]; ec; ec = ec->chain) {
464 if (ec->ecu == ecu)
465 return ec;
    [all...]
  /external/webkit/Source/WebCore/dom/
DocumentMarkerController.cpp 574 ExceptionCode ec = 0; local
575 Node* startContainer = range->startContainer(ec);
576 Node* endContainer = range->endContainer(ec);
580 int startOffset = node == startContainer ? range->startOffset(ec) : 0;
581 int endOffset = node == endContainer ? range->endOffset(ec) : INT_MAX;
  /external/webkit/Source/WebCore/editing/
InsertListCommand.cpp 235 ExceptionCode ec; local
237 currentSelection->setStart(newList, 0, ec);
239 currentSelection->setEnd(newList, lastOffsetInNode(newList.get()), ec);
MarkupAccumulator.cpp 192 ExceptionCode ec; local
193 if (node == range->endContainer(ec))
194 length = range->endOffset(ec);
195 if (node == range->startContainer(ec)) {
196 size_t start = range->startOffset(ec);
TypingCommand.cpp 58 ExceptionCode ec = 0; local
59 node->dispatchEvent(event, ec);
179 ExceptionCode ec = 0; local
181 startNode->rootEditableElement()->dispatchEvent(evt, ec);
VisibleSelection.cpp 208 ExceptionCode ec = 0; local
211 searchRange->selectNodeContents(boundary, ec);
212 searchRange->setStart(start.containerNode(), start.offsetInContainerNode(), ec);
214 ASSERT(!ec);
215 if (ec)
  /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...]
HTMLLinkElement.cpp 411 ExceptionCode ec; local
412 m_sheet->deleteRule(0, ec);
HTMLTableElement.cpp 76 void HTMLTableElement::setCaption(PassRefPtr<HTMLTableCaptionElement> newCaption, ExceptionCode& ec)
79 insertBefore(newCaption, firstChild(), ec);
91 void HTMLTableElement::setTHead(PassRefPtr<HTMLTableSectionElement> newHead, ExceptionCode& ec)
100 insertBefore(newHead, child, ec);
112 void HTMLTableElement::setTFoot(PassRefPtr<HTMLTableSectionElement> newFoot, ExceptionCode& ec)
121 insertBefore(newFoot, child, ec);
129 ExceptionCode ec; local
130 setTHead(head, ec);
136 ExceptionCode ec; local
137 removeChild(tHead(), ec); local
145 ExceptionCode ec; local
152 ExceptionCode ec; local
153 removeChild(tFoot(), ec); local
161 ExceptionCode ec; local
168 ExceptionCode ec; local
169 removeChild(caption(), ec); local
    [all...]
HTMLTextAreaElement.cpp 363 ExceptionCode ec; local
366 removeChild(textNodes[i].get(), ec);
373 insertBefore(document()->createTextNode(value), firstChild(), ec); local
386 void HTMLTextAreaElement::setMaxLength(int newValue, ExceptionCode& ec)
389 ec = INDEX_SIZE_ERR;
ImageDocument.cpp 194 ExceptionCode ec; local
197 appendChild(rootElement, ec);
208 rootElement->appendChild(body, ec);
216 body->appendChild(imageElement, ec);
258 ExceptionCode ec; local
259 m_imageElement->style()->setProperty("cursor", "-webkit-zoom-in", ec);
311 ExceptionCode ec; local
313 m_imageElement->style()->removeProperty("cursor", ec);
315 m_imageElement->style()->setProperty("cursor", "-webkit-zoom-out", ec);
345 ExceptionCode ec; local
    [all...]
RangeInputType.cpp 168 ExceptionCode ec;
191 setValueAsNumber(newValue, ec);
220 ExceptionCode ec = 0; local
221 element()->ensureShadowRoot()->appendChild(SliderThumbElement::create(element()->document()), ec);
  /external/webkit/Source/WebCore/html/shadow/
MediaControlRootElement.cpp 81 ExceptionCode ec; local
85 panel->appendChild(rewindButton.release(), ec, true);
86 if (ec)
91 panel->appendChild(playButton.release(), ec, true);
92 if (ec)
97 panel->appendChild(returnToRealtimeButton.release(), ec, true);
98 if (ec)
104 panel->appendChild(statusDisplay.release(), ec, true);
105 if (ec)
113 timelineContainer->appendChild(currentTimeDisplay.release(), ec, true)
249 ExceptionCode ec; local
251 m_panel->style()->setProperty(webkitTransitionString(), transitionValue, ec); local
252 m_panel->style()->setProperty(opacityString(), opacityValue, ec); local
266 ExceptionCode ec; local
268 m_panel->style()->setProperty(webkitTransitionString(), transitionValue, ec); local
269 m_panel->style()->setProperty(opacityString(), opacityValue, ec); local
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDatabaseAgent.cpp 173 ExceptionCode ec = 0; local
174 transaction->executeSQL(m_sqlStatement, sqlValues, callback.release(), errorCallback.release(), ec);
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.cpp 309 ExceptionCode ec = 0; local
315 m_domApplicationCache->dispatchEvent(event, ec);
316 ASSERT(!ec);

Completed in 1113 milliseconds

1 2 3 4 5 6 78 91011>>