HomeSort by relevance Sort by last modified time
    Searched refs:elem (Results 76 - 100 of 236) sorted by null

1 2 34 5 6 7 8 910

  /external/chromium/base/
scoped_vector.h 37 void push_back(T* elem) { v.push_back(elem); }
  /libcore/luni/src/main/java/org/apache/xml/utils/
DOMBuilder.java 323 Element elem; local
328 elem = m_doc.createElementNS(null,name);
330 elem = m_doc.createElementNS(ns, name);
332 append(elem);
346 setIDAttribute(atts.getValue(i), elem); local
365 elem.setAttributeNS(attrNS,attrQName, atts.getValue(i));
385 elem.setAttributeNS("http://www.w3.org/2000/xmlns/", prefix, declURL);
390 // append(elem);
392 m_elemStack.push(elem);
394 m_currentNode = elem;
    [all...]
SuballocatedIntVector.java 462 * @param elem object to look for
468 public int indexOf(int elem, int index)
483 if(block[offset]==elem)
491 if(block[offset]==elem)
502 * @param elem object to look for
507 public int indexOf(int elem)
509 return indexOf(elem,0);
517 * @param elem Object to look for
522 private int lastIndexOf(int elem)
532 if(block[offset]==elem)
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.js 61 var elem = document.getElementById( match[3] );
65 if ( elem && elem.id != match[3] )
69 var ret = jQuery( elem || [] );
160 index: function( elem ) {
164 elem && elem.jquery ? elem[0] : elem
228 var elem = this
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 45 Object elem; local
46 elem = list.get(counter);
47 hashCode = 31 * hashCode + elem.hashCode();
48 assertTrue("ListTest - get failed", elem
121 Object elem; local
122 elem = li.next();
123 assertTrue("ListTest - listIterator failed", elem
  /device/samsung/crespo/libaudio/
AudioHardwareALSA.cpp 1824 snd_mixer_elem_t *elem; member in struct:android::mixer_info_t
    [all...]
  /external/skia/include/core/
SkTDArray.h 204 int find(const T& elem) const {
209 if (*iter == elem) {
216 int rfind(const T& elem) const {
221 if (*--iter == elem) {
230 void push(const T& elem) { *this->append() = elem; }
233 void pop(T* elem) { if (elem) *elem = (*this)[fCount - 1]; --fCount; }
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
VCardVerifier.java 178 final PropertyNodesVerifierElem elem = addPropertyNodesVerifierElemWithoutVersion(); local
189 elem.addExpectedNodeWithOrder("VERSION", versionString);
191 return elem;
198 final PropertyNodesVerifierElem elem = addPropertyNodesVerifierElem(); local
200 elem.addExpectedNodeWithOrder("FN", "");
202 elem.addExpectedNodeWithOrder("N", "");
203 elem.addExpectedNodeWithOrder("FN", "");
205 elem.addExpectedNodeWithOrder("N", "");
207 return elem;
PropertyNode.java 165 for (String elem : paramMap_TYPE) {
172 builder.append(elem);
179 for (String elem : propGroupSet) {
186 builder.append(elem);
  /external/chromium/third_party/icu/source/common/
servlkf.cpp 75 const UHashElement* elem = NULL; local
77 while ((elem = supported->nextElement(pos)) != NULL) {
78 const UnicodeString& id = *((const UnicodeString*)elem->key.pointer);
  /external/icu4c/common/
servlkf.cpp 75 const UHashElement* elem = NULL; local
77 while ((elem = supported->nextElement(pos)) != NULL) {
78 const UnicodeString& id = *((const UnicodeString*)elem->key.pointer);
uvectr64.cpp 89 void UVector64::setElementAt(int64_t elem, int32_t index) {
91 elements[index] = elem;
96 void UVector64::insertElementAt(int64_t elem, int32_t index, UErrorCode &status) {
102 elements[index] = elem;
  /external/webkit/WebCore/editing/
ApplyStyleCommand.cpp 271 const HTMLElement* elem = static_cast<const HTMLElement*>(node); local
272 return elem->hasLocalName(spanAttr) && elem->getAttribute(classAttr) == styleSpanClassString();
280 const HTMLElement* elem = static_cast<const HTMLElement*>(node); local
281 CSSMutableStyleDeclaration* inlineStyleDecl = elem->inlineStyleDecl();
282 return (!inlineStyleDecl || inlineStyleDecl->isEmpty()) && elem->getAttribute(classAttr) == styleSpanClassString();
290 const HTMLElement* elem = static_cast<const HTMLElement*>(node); local
291 NamedNodeMap* attributes = elem->attributes(true); // readonly
303 const Element *elem = static_cast<const Element *>(node); local
304 NamedNodeMap *map = elem->attributes(true); // true for read-onl
1465 HTMLElement* elem = static_cast<HTMLElement*>(node); local
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 308 ElemTemplateElement elem = local
310 elems[i] = elem;
311 int numAncestors = countAncestors(elem);
398 * @param elem An representation of an element in an XSLT stylesheet.
399 * @return The number of ancestors of elem (including the element itself).
401 protected int countAncestors(ElemTemplateElement elem)
404 while(null != elem)
407 elem = elem.getParentElem();
446 { ElemTemplateElement elem = getElemFromExpression(wi) local
    [all...]
ElemApplyTemplates.java 329 for (ElemTemplateElement elem = template.getFirstChildElem();
330 null != elem; elem = elem.getNextSiblingElem())
332 if(Constants.ELEMNAME_PARAMVARIABLE == elem.getXSLToken())
334 ElemParam ep = (ElemParam)elem;
  /dalvik/vm/compiler/
CompilerUtility.h 50 void dvmInsertGrowableList(GrowableList *gList, void *elem);
  /external/skia/src/animator/
SkTypedArray.cpp 126 int SkDS32Array::find(const int32_t& elem) const
133 if (*iter == elem)
174 int SkDS32Array::rfind(const int32_t& elem) const
181 if (*--iter == elem)
  /development/simulator/app/
Preferences.cpp 165 TiXmlElement elem(kDefault[i].type);
166 elem.SetAttribute(kName, kDefault[i].name);
167 elem.SetAttribute(kValue, kDefault[i].value);
168 pPrefs->InsertEndChild(elem);
285 TiXmlElement elem("pref");
286 elem.SetAttribute(kName, str);
287 elem.SetAttribute(kValue, "");
288 pPrefs->InsertEndChild(elem);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
RemotePackagesPage.java 228 Object elem = ((ITreeSelection) sel).getFirstElement(); local
229 if (elem instanceof IDescription) {
230 mDescriptionLabel.setText(((IDescription) elem).getLongDescription());
249 Object elem = event.getElement(); // Will be Archive or Package or RepoSource local
255 mTreeViewerSources.setSubtreeChecked(elem, b);
263 if (elem instanceof RepoSource) {
264 mTreeViewerSources.setExpandedState(elem, true);
265 for (Object pkg : provider.getChildren(elem)) {
269 } else if (elem instanceof Package) {
270 selectCompatibleArchives(elem, provider);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VCardImporterTests.java 485 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
486 elem.addExpected(StructuredName.CONTENT_ITEM_TYPE)
488 elem.addExpected(Organization.CONTENT_ITEM_TYPE)
497 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
513 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
610 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
686 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
715 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
751 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
825 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
894 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
979 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
990 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
1009 ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
1029 final ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
1072 final ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
1099 final ContentValuesVerifierElem elem = mVerifier.addContentValuesVerifierElem(); local
    [all...]
  /external/openssl/crypto/asn1/
asn1_gen.c 116 static int bitstr_cb(const char *elem, int len, void *bitstr);
117 static int asn1_cb(const char *elem, int len, void *bitstr);
277 static int asn1_cb(const char *elem, int len, void *bitstr)
287 for(i = 0, p = elem; i < len; p++, i++)
293 vlen = len - (vstart - elem);
294 len = p - elem;
299 utype = asn1_str2tag(elem, len);
304 ERR_add_error_data(2, "tag=", elem);
314 if (!vstart && elem[len])
833 static int bitstr_cb(const char *elem, int len, void *bitstr
    [all...]
  /external/skia/src/xml/
SkDOM.cpp 251 virtual bool onStartElement(const char elem[])
256 fElemName = dupstr(fAlloc, elem);
267 virtual bool onEndElement(const char elem[])
320 const char* elem = dom.getName(node); local
322 parser->startElement(elem);
337 parser->endElement(elem);
353 int SkDOM::countChildren(const Node* node, const char elem[]) const
357 node = this->getFirstChild(node, elem);
361 node = this->getNextSibling(node, elem);
  /external/protobuf/python/google/protobuf/internal/
containers.py 118 for elem in elem_seq:
119 self._type_checker.CheckValue(elem)
120 new_values.append(elem)
131 def remove(self, elem):
133 self._values.remove(elem)
  /external/webkit/WebCore/inspector/front-end/
ConsoleView.js 516 _formatvalue: function(val, elem)
518 elem.appendChild(document.createTextNode(val));
521 _formatobject: function(obj, elem)
523 elem.appendChild(new WebInspector.ObjectPropertiesSection(obj, obj.description, null, true).element);
526 _formatnode: function(object, elem)
538 elem.appendChild(treeOutline.element);
544 _formatarray: function(arr, elem)
546 InjectedScriptAccess.get(arr.injectedScriptId).getProperties(arr, false, false, this._printArray.bind(this, elem));
549 _formatstring: function(output, elem)
556 elem.removeStyleClass("console-formatted-string")
    [all...]
  /external/libxml2/include/libxml/
relaxng.h 193 xmlNodePtr elem);
201 xmlNodePtr elem);
205 xmlNodePtr elem);

Completed in 498 milliseconds

1 2 34 5 6 7 8 910