Searched refs:elem (Results 101 - 125 of 577) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/animator/
H A DSkXMLAnimatorWriter.h27 virtual void onStartElementLen(const char elem[], size_t length);
H A DSkXMLAnimatorWriter.cpp31 Elem* elem = getEnd(); local
32 fParser->onEndElement(elem->fName.c_str());
33 doEnd(elem);
/external/skia/src/animator/
H A DSkXMLAnimatorWriter.h27 virtual void onStartElementLen(const char elem[], size_t length);
H A DSkXMLAnimatorWriter.cpp31 Elem* elem = getEnd(); local
32 fParser->onEndElement(elem->fName.c_str());
33 doEnd(elem);
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dmucinviterecvtask.cc59 int bodytext_to_array_pos(const XmlElement* elem, const char* array[], argument
61 if (elem) {
62 const std::string& body(elem->BodyText());
H A Dpresencepushtask.cc75 std::map<Jid, buzz::Muc*>::const_iterator elem = local
77 if (elem == client_->mucs().end()) {
80 HandleMucPresence(elem->second, from, stanza);
102 const XmlElement* elem = stanza->FirstNamed(QN_MUC_USER_X); local
105 if (elem) {
106 if (elem->FirstNamed(QN_MUC_USER_ITEM) &&
115 const XmlElement* elem = stanza->FirstNamed(QN_ERROR); local
116 if (elem && elem->HasAttr(QN_CODE)) {
117 error = atoi(elem
[all...]
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/
H A Doptions.js57 var elem = i18nElements[i];
58 var msg = elem.getAttribute('i18n-content');
59 elem.innerHTML = chrome.i18n.getMessage(msg);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-3183.js33 function f1(method, array, elem, deopt) {
58 f1 = function(method, array, elem, deopt) {
81 f1 = function(method, array, elem, deopt) {
/external/lldb/test/pexpect-2.4/examples/
H A Dscript.py47 if [elem for elem in options if elem in ['-h','--h','-?','--?','--help']]:
/external/chromium_org/third_party/markdown/
H A Dtreeprocessors.py360 def _prettifyETree(self, elem):
364 if util.isBlockLevel(elem.tag) and elem.tag not in ['code', 'pre']:
365 if (not elem.text or not elem.text.strip()) \
366 and len(elem) and util.isBlockLevel(elem[0].tag):
367 elem.text = i
368 for e in elem:
371 if not elem
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/src/
H A DSkPdfDiffEncoder.cpp68 const SkClipStack::Element* elem; local
71 while ((elem = iter.next()) != NULL) {
75 switch (elem->getType()) {
77 canvas.drawRect(elem->getRect(), blueBorder);
82 canvas.drawPath(elem->getPath(), blueBorder);
H A DSkTDStackNester.h132 * Add an object to the stack, copied from elem.
134 void push(const T& elem) { *this->push() = elem; } argument
153 * Pop an object off the stack (via pop()), and copy its members into elem.
155 void pop(T* elem) { argument
156 if (elem) {
157 *elem = fRec->fSlots[fCount - 1];
/external/chromium_org/third_party/skia/include/core/
H A DSkTSearch.h53 const T* elem = (const T*)((const char*)base + mid * elemSize); local
55 if (less(*elem, key))
61 const T* elem = (const T*)((const char*)base + hi * elemSize); local
62 if (less(*elem, key)) {
65 } else if (less(key, *elem)) {
/external/skia/experimental/PdfViewer/src/
H A DSkPdfDiffEncoder.cpp68 const SkClipStack::Element* elem; local
71 while ((elem = iter.next()) != NULL) {
75 switch (elem->getType()) {
77 canvas.drawRect(elem->getRect(), blueBorder);
82 canvas.drawPath(elem->getPath(), blueBorder);
H A DSkTDStackNester.h132 * Add an object to the stack, copied from elem.
134 void push(const T& elem) { *this->push() = elem; } argument
153 * Pop an object off the stack (via pop()), and copy its members into elem.
155 void pop(T* elem) { argument
156 if (elem) {
157 *elem = fRec->fSlots[fCount - 1];
/external/skia/include/core/
H A DSkTSearch.h53 const T* elem = (const T*)((const char*)base + mid * elemSize); local
55 if (less(*elem, key))
61 const T* elem = (const T*)((const char*)base + hi * elemSize); local
62 if (less(*elem, key)) {
65 } else if (less(key, *elem)) {
/external/clang/test/SemaCXX/
H A Ddiscrim-union.cpp42 void destroy(unsigned elem) { argument
43 if (elem)
44 rest.destroy(elem - 1);
68 unsigned elem; member in class:either
75 elem(impl_t::index(detail::type<U>())),
80 //~either() { impl.destroy(elem); }
82 constexpr unsigned index() noexcept { return elem; }
91 return (elem != N ? throw_<const_get_result<N>>("bad_either_get")
/external/deqp/scripts/log/
H A Dlog_to_xml.py23 def pushElement (self, elem):
25 self.rootElements.append(elem)
27 self.getCurElement().appendChild(elem)
28 self.elementStack.append(elem)
46 elem = self.doc.createElement(name)
49 elem.setAttribute(name, value)
50 self.pushElement(elem)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
H A DRSSFeedAddEntryTask.java334 Element elem = null;
345 elem = document.createElement("title"); //$NON-NLS-1$
346 elem.setTextContent(Messages.getString("RSSFeedAddEntryTask.AnnouncePrefix") + projectVersionString + SP + Messages.getString("RSSFeedAddEntryTask.IsAvailable")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
347 attachNode(document, entry, elem, txt[1]);
350 elem = document.createElement("link"); //$NON-NLS-1$
351 elem.setAttribute("href", !isNullString(buildURL) ? buildURL : projectVersionString); //$NON-NLS-1$
352 attachNode(document, entry, elem, txt[1]);
355 elem = document.createElement("id"); //$NON-NLS-1$
356 elem.setTextContent(!isNullString(buildURL) ? buildURL : projectVersionString);
357 attachNode(document, entry, elem, tx
514 attachNode(Document document,Element entry,Element elem,String txt) argument
[all...]
/external/chromium_org/third_party/skia/src/pdf/
H A DSkTSet.h120 bool add(const T& elem) { argument
125 int i = find(elem, &pos);
129 *fSetArray->insert(pos) = elem;
130 fOrderedArray->push(elem);
211 bool contains(const T& elem) const {
213 return (this->find(elem) >= 0);
317 * with the index of the place where elem should be inserted to preserve the
321 int find(const T& elem, int* posToInsertSorted = NULL) const { argument
335 if (elem < (*fSetArray)[iMid]) {
341 if (elem
[all...]
/external/skia/src/pdf/
H A DSkTSet.h120 bool add(const T& elem) { argument
125 int i = find(elem, &pos);
129 *fSetArray->insert(pos) = elem;
130 fOrderedArray->push(elem);
211 bool contains(const T& elem) const {
213 return (this->find(elem) >= 0);
317 * with the index of the place where elem should be inserted to preserve the
321 int find(const T& elem, int* posToInsertSorted = NULL) const { argument
335 if (elem < (*fSetArray)[iMid]) {
341 if (elem
[all...]
/external/ltrace/
H A Dhandle_event.c475 struct callstack_element *elem = &proc->callstack[i]; local
476 spent[i] = calc_time_spent(elem->enter_time);
480 struct callstack_element *elem = &proc->callstack[i]; local
482 if (elem->is_syscall) {
483 const char *name = sysname(proc, elem->c_un.syscall);
488 libsym = elem->c_un.libfunc;
494 if (elem->is_syscall)
624 struct callstack_element *elem = &event->proc->callstack[d - 1]; local
625 assert(elem->is_syscall);
628 struct timedelta spent = calc_time_spent(elem
657 struct callstack_element *elem = &proc->callstack[d - 1]; local
772 struct callstack_element *elem; local
798 struct callstack_element *elem; local
836 struct callstack_element *elem; local
[all...]
/external/mdnsresponder/mDNSShared/
H A Ddnsextd_parser.y330 StringListElem * elem;
332 elem = ( StringListElem* ) malloc( sizeof( StringListElem ) );
334 if ( !elem )
340 elem->string = $2;
342 elem->next = g_stringList;
343 g_stringList = elem;
453 StringListElem * elem;
474 for ( elem = zoneSpec->allowUpdate; elem; elem
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DIntVector.java346 * @param elem object to look for
352 public final int indexOf(int elem, int index) argument
357 if (m_map[i] == elem)
369 * @param elem object to look for
374 public final int indexOf(int elem) argument
379 if (m_map[i] == elem)
391 * @param elem Object to look for
396 public final int lastIndexOf(int elem) argument
401 if (m_map[i] == elem)
H A DObjectVector.java343 * @param elem object to look for
349 public final int indexOf(Object elem, int index) argument
354 if (m_map[i] == elem)
366 * @param elem object to look for
371 public final int indexOf(Object elem) argument
376 if (m_map[i] == elem)
388 * @param elem Object to look for
393 public final int lastIndexOf(Object elem) argument
398 if (m_map[i] == elem)

Completed in 7870 milliseconds

1234567891011>>