OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:attributenode
(Results
1 - 16
of
16
) sorted by null
/external/webkit/LayoutTests/dom/html/level1/core/
hc_nodecloneattributescopied.js
96
var
attributeNode
;
121
attributeNode
= attributes.item(indexN10076);
122
attributeName =
attributeNode
.nodeName;
/external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodecloneattributescopied.js
96
var
attributeNode
;
121
attributeNode
= attributes.item(indexN10076);
122
attributeName =
attributeNode
.nodeName;
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodecloneattributescopied.java
67
Node
attributeNode
;
86
attributeNode
= (Node) attributes.item(indexN10076);
87
attributeName =
attributeNode
.getNodeName();
nodecloneattributescopied.java
70
Node
attributeNode
;
84
attributeNode
= (Node) attributes.item(indexN10065);
85
attributeName =
attributeNode
.getNodeName();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java
246
Node
attributeNode
= attributes.item(i);
248
String name =
attributeNode
.getLocalName();
250
&& ANDROID_URI.equals(
attributeNode
.getNamespaceURI())) {
251
result.add((Attr)
attributeNode
);
VisualRefactoring.java
417
for (Node
attributeNode
: attributeNodes) {
418
String prefix =
attributeNode
.getPrefix();
420
String name =
attributeNode
.getNodeName();
421
String value =
attributeNode
.getNodeValue();
443
for (Node
attributeNode
: attributeNodes) {
444
String prefix =
attributeNode
.getPrefix();
446
String name =
attributeNode
.getNodeName();
447
String value =
attributeNode
.getNodeValue();
483
Node
attributeNode
= attributes.item(i);
485
String prefix =
attributeNode
.getPrefix()
[
all
...]
ExtractIncludeRefactoring.java
475
for (Node
attributeNode
: attributeNodes) {
476
String prefix =
attributeNode
.getPrefix();
479
String name =
attributeNode
.getNodeName();
483
String value =
attributeNode
.getNodeValue();
ChangeLayoutRefactoring.java
561
Node
attributeNode
= attributeMap.item(i);
563
String name =
attributeNode
.getLocalName();
565
&& ANDROID_URI.equals(
attributeNode
.getNamespaceURI())) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java
251
Node
attributeNode
=
253
if (
attributeNode
instanceof Attr) {
254
Attr attribute = (Attr)
attributeNode
;
AndroidPackageRenameParticipant.java
363
Node
attributeNode
= attributes
365
if (
attributeNode
instanceof Attr) {
366
Attr attribute = (Attr)
attributeNode
;
AndroidTypeMoveParticipant.java
289
Node
attributeNode
=
291
if (
attributeNode
instanceof Attr) {
292
Attr attribute = (Attr)
attributeNode
;
/external/webkit/Source/WebCore/xml/
XMLViewer.js
339
function createAttribute(
attributeNode
)
346
attributeName.textContent =
attributeNode
.name;
353
attributeValue.textContent =
attributeNode
.value;
/external/webkit/Source/WebKit/chromium/public/
WebNode.h
72
AttributeNode
,
/external/webkit/Source/WebKit/chromium/src/
AssertMatchingEnums.cpp
306
COMPILE_ASSERT_MATCHING_ENUM(WebNode::
AttributeNode
, Node::ATTRIBUTE_NODE);
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
jquery-1.3.2.js
1008
var
attributeNode
= elem.getAttributeNode( "tabIndex" );
1009
return
attributeNode
&&
attributeNode
.specified
1010
?
attributeNode
.value
[
all
...]
concat-jquery-mootools-prototype.js
1008
var
attributeNode
= elem.getAttributeNode( "tabIndex" );
1009
return
attributeNode
&&
attributeNode
.specified
1010
?
attributeNode
.value
[
all
...]
Completed in 1671 milliseconds