HomeSort by relevance Sort by last modified time
    Searched full:localname (Results 201 - 225 of 539) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 247 void getElementsByTagNameNS(NodeListImpl out, String namespaceURI, String localName) {
252 && matchesNameOrWildcard(localName, element.getLocalName())) {
255 element.getElementsByTagNameNS(out, namespaceURI, localName);
  /libcore/luni/src/test/java/libcore/xml/
NamespacedAttributesLookupTest.java 107 String uri, String localName, String qName, Attributes attributes) {
110 * Only supply the uri+localName or qname depending on whether namespaces are
115 serialized.append(localName);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorInclude.java 111 * @param localName The local name (without prefix), or the
124 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
158 parse(handler, uri, localName, rawName, attributes);
182 * @param localName The local name (without prefix), which should be "include" or "import".
190 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
StylesheetHandler.java 357 * @param localName The local name (without prefix), or empty string if not namespace processing.
366 String uri, String localName, String rawName)
372 XSLTElementProcessor elemProcessor = def.getProcessorFor(uri, localName);
384 elemProcessor = def.getProcessorForUnknown(uri, localName);
565 * @param localName The local name (without prefix), or empty string if not namespace processing.
572 String uri, String localName, String rawName, Attributes attributes)
597 // if (localName.equals(Constants.ELEMNAME_STYLESHEET_STRING) &&
620 XSLTElementProcessor elemProcessor = getProcessorFor(uri, localName,
626 elemProcessor.startElement(this, uri, localName, rawName, attributes);
640 * @param localName The local name (without prefix), or empty string if not namespace processing
    [all...]
XSLTElementProcessor.java 153 * @param localName The local name (without prefix), or empty string if not namespace processing.
158 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
173 * @param localName The local name (without prefix), or empty string if not namespace processing.
177 StylesheetHandler handler, String uri, String localName, String rawName)
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserIdioms.cpp 279 return threadSafeEqual(a.localName().impl(), b.localName().impl());
282 bool threadSafeMatch(const String& localName, const QualifiedName& qName)
284 return threadSafeEqual(localName.impl(), qName.localName().impl());
HTMLElementStack.cpp 487 return inScope(tagName.localName());
497 return inListItemScope(tagName.localName());
507 return inTableScope(tagName.localName());
517 return inButtonScope(tagName.localName());
527 return inSelectScope(tagName.localName());
532 return inScopeCommon<isRootNode>(m_top.get(), templateTag.localName());
TextDocumentParser.cpp 61 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes);
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java 106 public void startElement(String uri, String localName, String qName, Attributes attrs) {
107 if (WORD_TAG.equals(localName)) {
116 } else if (ROOT_TAG.equals(localName)) {
145 public void endElement(String uri, String localName, String qName) {
181 public void startElement(String uri, String localName, String qName, Attributes attrs) {
182 if (SRC_TAG.equals(localName)) {
184 } else if (DST_TAG.equals(localName)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 210 public boolean setAttribute(@Nullable String uri, @NonNull String localName,
212 mAttributes.put(uri + localName, new TestAttribute(uri, localName, value));
352 public boolean setAttribute(String uri, String localName, String value) {
354 mElement.removeAttributeNS(uri, localName);
356 mElement.setAttributeNS(uri, localName, value);
358 return super.setAttribute(uri, localName, value);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 410 return hasAttributeNS(name.namespaceURI(), name.localName());
442 void Element::synchronizeAttribute(const AtomicString& localName) const
448 if (elementData()->m_styleAttributeIsDirty && equalPossiblyIgnoringCase(localName, styleAttr.localName(), shouldIgnoreAttributeCase())) {
455 toSVGElement(this)->synchronizeAnimatedSVGAttribute(QualifiedName(nullAtom, localName, nullAtom));
869 const AtomicString& Element::getAttribute(const AtomicString& localName) const
873 synchronizeAttribute(localName);
874 if (const Attribute* attribute = elementData()->getAttributeItem(localName, shouldIgnoreAttributeCase()))
879 const AtomicString& Element::getAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName) const
881 return getAttribute(QualifiedName(nullAtom, localName, namespaceURI))
    [all...]
Document.idl 39 [PerWorldBindings] NodeList getElementsByTagName(DOMString localName);
47 NodeList getElementsByTagNameNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName);
198 [CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNullAs=NullString] DOMString typeExtension);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 259 * @param localName the attribute name, without prefix
268 String localName,
279 m_handler.addAttribute(uri, localName, rawName, type, value, XSLAttribute);
451 public void startElement(String namespaceURI, String localName, String qName) throws SAXException
453 this.startElement(namespaceURI, localName, qName, null);
458 String localName,
473 m_handler.startElement(namespaceURI, localName, elementName, atts);
492 m_firstElementLocalName = localName;
519 m_handler.startElement(namespaceURI, localName, elementName, atts);
809 public void endElement(String namespaceURI, String localName, String qName
    [all...]
ElemContext.java 191 * @param localName The local name of the element (no prefix),
198 final String localName,
213 frame.m_elementLocalName = localName;
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 520 * @param localName The element's local name, or the empty string.
527 public void startElement (String uri, String localName, String qName,
532 contentHandler.startElement(uri, localName, qName, atts);
541 * @param localName The element's local name, or the empty string.
547 public void endElement (String uri, String localName, String qName)
551 contentHandler.endElement(uri, localName, qName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 116 String localName = view.getLocalName();
143 if ("LinearLayout".equals(localName)) { //$NON-NLS-1$
150 } else if ("TableLayout".equals(localName)) { //$NON-NLS-1$
152 } else if ("TableRow".equals(localName)) { //$NON-NLS-1$
155 // } else if ("RelativeLayout".equals(localName)) { //$NON-NLS-1$
169 if (mLayoutNames.contains(localName)) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttribute.java 193 String localName = QName.getLocalPart(nodeName);
195 rhandler.addAttribute(nodeNamespace, localName, nodeName, "CDATA", val, true);
197 rhandler.addAttribute("", localName, nodeName, "CDATA", val, true);
  /cts/tests/tests/util/src/android/util/cts/
XmlEncodingTest.java 216 public void endElement(String uri, String localName, String name) throws SAXException {
219 mVec.add(localName);
250 public void startElement(String uri, String localName, String name, Attributes atts)
253 mVec.add(localName);
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementDescriptorHash.h 44 return WTF::pairIntHash(AtomicStringHash::hash(descriptor.type()), WTF::pairIntHash(AtomicStringHash::hash(descriptor.namespaceURI()), AtomicStringHash::hash(descriptor.localName())));
  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkResource.cpp 76 return FetchRequest(ResourceRequest(m_owner->document().completeURL(m_url)), m_owner->localName(), m_charset, priority);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceUriElement.cpp 96 FetchRequest request(ResourceRequest(document().completeURL(href)), localName());
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlschemastypes.h 135 const xmlChar *localName);
  /external/chromium_org/third_party/polymer/
polymer.js 29 Polymer={},"function"==typeof window.Polymer&&(Polymer={}),function(a){function b(){var a=Polymer.veiledElements;if(a)for(var b,d=0,e=a.length;e>d&&(b=a[d]);d++)c(b)}function c(a){for(var b,c=document.querySelectorAll(a),d=0,f=c.length;f>d&&(b=c[d]);d++)b.classList.add(e)}function d(){requestAnimationFrame(function(){for(var a,b=document.querySelectorAll("."+e),c=0,d=b.length;d>c&&(a=b[c]);c++)a.classList.add(f),a.classList.remove(e);if(b.length){var g=function(){for(var a,c=0,d=b.length;d>c&&(a=b[c]);c++)a.classList.remove(f);document.body.removeEventListener(j,g,!1)};document.body.addEventListener(j,g,!1)}})}a.veiledElements=["body"];var e="polymer-veiled",f="polymer-unveil",g=.3,h=document.createElement("style");h.textContent="."+e+" { opacity: 0; } \n."+f+"{ -webkit-transition: opacity "+g+"s; transition: opacity "+g+"s; }\n";var i=document.querySelector("head");i.insertBefore(h,i.firstChild);var j=void 0!==document.documentElement.style.webkitTransition?"webkitTransitionEnd":"transitionend";document.addEventListener("DOMContentLoaded",b),window.addEventListener("WebComponentsReady",d),a.unveilElements=d}(Polymer),function(a){function b(a,b){return a&&b&&Object.getOwnPropertyNames(b).forEach(function(c){var d=Object.getOwnPropertyDescriptor(b,c);d&&(Object.defineProperty(a,c,d),"function"==typeof d.value&&(d.value.nom=c))}),a}a.extend=b}(Polymer),function(a){function b(a,b,d){return a?a.stop():a=new c(this),a.go(b,d),a}var c=function(a){this.context=a};c.prototype={go:function(a,b){this.callback=a,this.handle=setTimeout(this.complete.bind(this),b)},stop:function(){this.handle&&(clearTimeout(this.handle),this.handle=null)},complete:function(){this.handle&&(this.stop(),this.callback.call(this.context))}},a.job=b}(Polymer),function(){var a={};HTMLElement.register=function(b,c){a[b]=c},HTMLElement.getPrototypeForTag=function(b){var c=b?a[b]:HTMLElement.prototype;return c||Object.getPrototypeOf(document.createElement(b))};var b=Event.prototype.stopPropagation;Event.prototype.stopPropagation=function(){this.cancelBubble=!0,b.apply(this,arguments)},HTMLImports.importer.preloadSelectors+=", polymer-element link[rel=stylesheet]"}(Polymer),function(a){function b(a){var c=b.caller,g=c.nom,h=c._super;if(h||(g||(g=c.nom=e.call(this,c)),g||console.warn("called super() on a method not installed declaratively (has no .nom property)"),h=d(c,g,f(this))),h){var i=h[g];return i._super||d(i,g,h),i.apply(this,a||[])}}function c(a,b,c){for(;a;){if(a[b]!==c&&a[b])return a;a=f(a)}}function d(a,b,d){return a._super=c(d,b,a),a._super&&(a._super[b].nom=b),a._super}function e(a){for(var b=this.__proto__;b&&b!==HTMLElement.prototype;){for(var c,d=Object.getOwnPropertyNames(b),e=0,f=d.length;f>e&&(c=d[e]);e++){var g=Object.getOwnPropertyDescriptor(b,c);if("function"==typeof g.value&&g.value===a)return c}b=b.__proto__}}function f(a){return a.__proto__}a.super=b}(Polymer),function(a){function b(a,b){var d=typeof b;return b instanceof Date&&(d="date"),c[d](a,b)}var c={string:function(a){return a},date:function(a){return new Date(Date.parse(a)||Date.now())},"boolean":function(a){return""===a?!0:"false"===a?!1:!!a},number:function(a){var b=parseFloat(a);return String(b)===a?b:a},object:function(a,b){if(null===b)return a;try{return JSON.parse(a.replace(/'/g,'"'))}catch(c){return a}},"function":function(a,b){return b}};a.deserializeValue=b}(Polymer),function(a){var b={};b.declaration={},b.instance={},a.api=b}(Polymer),function(a){var b={async:function(a,b,c){Platform.flush(),b=b&&b.length?b:[b];var d=function(){(this[a]||a).apply(this,b)}.bind(this);return c?setTimeout(d,c):requestAnimationFrame(d)},fire:function(a,b,c,d){var e=c||this;return e.dispatchEvent(new CustomEvent(a,{bubbles:void 0!==d?d:!0,detail:b})),b},asyncFire:function(){this.async("fire",arguments)},classFollows:function(a,b,c){b&&b.classList.remove(c),a&&a.classList.add(c)}};b.asyncMethod=b.async,a.api.instance.utils=b}(Polymer),function(a){function b(a){for(;a.parentNode;)a=a.parentNode;return a.host}var c=window.logFlags||{},d="on-",e={EVENT_PREFIX:d,hasEventPrefix:function(a){return a&&"o"===a[0]&&"n"===a[1]&&"-"===a[2]},removeEventPrefix:function(a){return a.slice(f)},addHostListeners:function(){var a=this.eventDelegates;c.events&&Object.keys(a).length>0&&console.log("[%s] addHostListeners:",this.localName,a),this.addNodeListeners(this,a,this.hostEventListener)},addNodeListeners:function(a,b,c){var d;for(var e in b)d||(d=c.bind(this)),this.addNodeListener(a,e,d)},addNodeListener:function(a,b,c){a.addEventListener(b,c)},hostEventListener:function(a){if(!a.cancelBubble){c.events&&console.group("[%s]: hostEventListener(%s)",this.localName,a.type);var b=this.findEventDelegate(a);b&&(c.events&&console.log("[%s] found host handler name [%s]",this.localName,b),this.dispatchMethod(this,b,[a,a.detail,this])),c.events&&console.groupEnd()}},findEventDelegate:function(a){return this.eventDelegates[a.type]},dispatchMethod:function(a,b,d){if(a){c.events&&console.group("[%s] dispatch [%s]",a.localName,b);var e="function"==typeof b?b:a[b];e&&e[d?"apply":"call"](a,d),c.events&&console.groupEnd(),Platform.flush()}},prepareBinding:function(a,d){return e.hasEventPrefix(d)?function(f,g){c.events&&console.log('event: [%s].%s => [%s].%s()"',g.localName,f.localName,a);var h=function(c){var d=b(g);if(d&&d.dispatchMethod){var e=d,h=a;"@"==a[0]&&(e=f,h=Path.get(a.slice(1)).getValueFrom(f)),d.dispatchMethod(e,h,[c,c.detail,g])}},i=e.removeEventPrefix(d);return g.addEventListener(i,h,!1),{close:function(){c.events&&console.log('event.remove: [%s].%s => [%s].%s()"',g.localName,d,f.localName,a),g.removeEventListener(i,h,!1)}}}:void 0}},f=d.length;a.api.instance.events=e}(Polymer),function(a){var b={copyInstanceAttributes:function(){var a=this._instanceAttributes;for(var b in a)this.hasAttribute(b)||this.setAttribute(b,a[b])},takeAttributes:function(){if(this._publishLC)for(var a,b=0,c=this.attributes,d=c.length;(a=c[b])&&d>b;b++)this.attributeToProperty(a.name,a.value)},attributeToProperty:function(b,c){var b=this.propertyForAttribute(b);if(b){if(c&&c.search(a.bindPattern)>=0)return;var d=this[b],c=this.deserializeValue(c,d);c!==d&&(this[b]=c)}},propertyForAttribute:function(a){var b=this._publishLC&&this._publishLC[a];return b},deserializeValue:function(b,c){return a.deserializeValue(b,c)},serializeValue:function(a,b){return"boolean"===b?a?"":void 0:"object"!==b&&"function"!==b&&void 0!==a?a:void 0},reflectPropertyToAttribute:function(a){var b=typeof this[a],c=this.serializeValue(this[a],b);void 0!==c?this.setAttribute(a,c):"boolean"===b&&this.removeAttribute(a)}};a.api.instance.attributes=b}(Polymer),function(a){function b(a){return new CompoundPathObserver(a.notifyPropertyChanges,a)}function c(a,b,c,e){d.bind&&console.log(f,c.localName||"object",e,a.localName,b);var g=Path.get(e),h=g.getValueFrom(c);return(null===h||void 0===h)&&g.setValueFrom(c,a[b]),Path (…)
    [all...]
  /external/elfutils/libdwfl/
find-debuginfo.c 136 char *localname = alloca (len + sizeof ".debug"); local
137 memcpy (localname, file_basename, len);
138 memcpy (&localname[len], ".debug", sizeof ".debug");
139 debuglink_file = localname;
  /external/libxml2/include/libxml/
xmlschemastypes.h 135 const xmlChar *localName);

Completed in 1635 milliseconds

1 2 3 4 5 6 7 891011>>