Home
last modified time | relevance | path

Searched refs:nodeId (Results 1 – 25 of 69) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMAgent.h116 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId);
117 …virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilde…
119 virtual void requestChildNodes(ErrorString*, int nodeId, const int* depth);
123 virtual void removeNode(ErrorString*, int nodeId);
124 virtual void setNodeName(ErrorString*, int nodeId, const String& name, int* newId);
125 virtual void getOuterHTML(ErrorString*, int nodeId, WTF::String* outerHTML);
126 virtual void setOuterHTML(ErrorString*, int nodeId, const String& outerHTML);
127 virtual void setNodeValue(ErrorString*, int nodeId, const String& value);
128 …virtual void getEventListenersForNode(ErrorString*, int nodeId, const WTF::String* objectGroup, Re…
132 …virtual void resolveNode(ErrorString*, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::…
[all …]
DInspectorDOMAgent.cpp382 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) in assertNode() argument
384 Node* node = nodeForId(nodeId); in assertNode()
392 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) in assertDocument() argument
394 Node* node = assertNode(errorString, nodeId); in assertDocument()
405 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) in assertElement() argument
407 Node* node = assertNode(errorString, nodeId); in assertElement()
418 Node* InspectorDOMAgent::assertEditableNode(ErrorString* errorString, int nodeId) in assertEditableNode() argument
420 Node* node = assertNode(errorString, nodeId); in assertEditableNode()
437 Element* InspectorDOMAgent::assertEditableElement(ErrorString* errorString, int nodeId) in assertEditableElement() argument
439 Element* element = assertElement(errorString, nodeId); in assertEditableElement()
[all …]
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
DDOMUtils.java28 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) in getNodeBounds() argument
32 sb.append(" var node = document.getElementById('" + nodeId + "');"); in getNodeBounds()
48 Assert.assertFalse("Failed to retrieve bounds for " + nodeId, in getNodeBounds()
74 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) in focusNode() argument
78 sb.append(" var node = document.getElementById('" + nodeId + "');"); in focusNode()
89 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) in clickNode() argument
91 int[] clickTarget = getClickTargetForNode(view, viewClient, nodeId); in clickNode()
100 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) in longPressNode() argument
102 int[] clickTarget = getClickTargetForNode(view, viewClient, nodeId); in longPressNode()
111 TestCallbackHelperContainer viewClient, String nodeId) in scrollNodeIntoView() argument
[all …]
/external/smack/src/org/jivesoftware/smackx/pubsub/
DGetItemsRequest.java26 public GetItemsRequest(String nodeId) in GetItemsRequest() argument
28 super(PubSubElementType.ITEMS, nodeId); in GetItemsRequest()
31 public GetItemsRequest(String nodeId, String subscriptionId) in GetItemsRequest() argument
33 super(PubSubElementType.ITEMS, nodeId); in GetItemsRequest()
37 public GetItemsRequest(String nodeId, int maxItemsToReturn) in GetItemsRequest() argument
39 super(PubSubElementType.ITEMS, nodeId); in GetItemsRequest()
43 public GetItemsRequest(String nodeId, String subscriptionId, int maxItemsToReturn) in GetItemsRequest() argument
45 this(nodeId, maxItemsToReturn); in GetItemsRequest()
DItemPublishEvent.java37 public ItemPublishEvent(String nodeId, List<T> eventItems) in ItemPublishEvent() argument
39 super(nodeId); in ItemPublishEvent()
53 public ItemPublishEvent(String nodeId, List<T> eventItems, List<String> subscriptionIds) in ItemPublishEvent() argument
55 super(nodeId, subscriptionIds); in ItemPublishEvent()
71 …public ItemPublishEvent(String nodeId, List<T> eventItems, List<String> subscriptionIds, Date publ… in ItemPublishEvent() argument
73 super(nodeId, subscriptionIds); in ItemPublishEvent()
DSubscription.java51 public Subscription(String subscriptionJid, String nodeId) in Subscription() argument
53 this(subscriptionJid, nodeId, null, null); in Subscription()
65 public Subscription(String jid, String nodeId, String subscriptionId, State state) in Subscription() argument
67 super(PubSubElementType.SUBSCRIPTION, nodeId); in Subscription()
84 …public Subscription(String jid, String nodeId, String subscriptionId, State state, boolean configR… in Subscription() argument
86 super(PubSubElementType.SUBSCRIPTION, nodeId); in Subscription()
DSubscriptionEvent.java36 protected SubscriptionEvent(String nodeId) in SubscriptionEvent() argument
38 super(nodeId); in SubscriptionEvent()
47 protected SubscriptionEvent(String nodeId, List<String> subscriptionIds) in SubscriptionEvent() argument
49 super(nodeId); in SubscriptionEvent()
DConfigurationEvent.java33 public ConfigurationEvent(String nodeId) in ConfigurationEvent() argument
35 super(PubSubElementType.CONFIGURATION, nodeId); in ConfigurationEvent()
38 public ConfigurationEvent(String nodeId, ConfigureForm configForm) in ConfigurationEvent() argument
40 super(PubSubElementType.CONFIGURATION, nodeId); in ConfigurationEvent()
DPublishItem.java34 public PublishItem(String nodeId, T toPublish) in PublishItem() argument
36 super(PubSubElementType.PUBLISH, nodeId); in PublishItem()
47 public PublishItem(String nodeId, Collection<T> toPublish) in PublishItem() argument
49 super(PubSubElementType.PUBLISH, nodeId); in PublishItem()
DOptionsExtension.java33 public OptionsExtension(String subscriptionJid, String nodeId) in OptionsExtension() argument
35 this(subscriptionJid, nodeId, null); in OptionsExtension()
38 public OptionsExtension(String jid, String nodeId, String subscriptionId) in OptionsExtension() argument
40 super(PubSubElementType.OPTIONS, nodeId); in OptionsExtension()
DUnsubscribeExtension.java34 public UnsubscribeExtension(String subscriptionJid, String nodeId) in UnsubscribeExtension() argument
36 this(subscriptionJid, nodeId, null); in UnsubscribeExtension()
39 public UnsubscribeExtension(String jid, String nodeId, String subscriptionId) in UnsubscribeExtension() argument
41 super(PubSubElementType.UNSUBSCRIBE, nodeId); in UnsubscribeExtension()
DNodeEvent.java24 private String nodeId; field in NodeEvent
28 nodeId = id; in NodeEvent()
33 return nodeId; in getNodeId()
DItemsExtension.java84 …public ItemsExtension(ItemsElementType itemsType, String nodeId, List<? extends PacketExtension> i… in ItemsExtension() argument
86 super(itemsType.getNodeElement(), nodeId); in ItemsExtension() local
109 public ItemsExtension(String nodeId, List<? extends PacketExtension> items, boolean notify) in ItemsExtension() argument
111 super(ItemsElementType.retract.getNodeElement(), nodeId); in ItemsExtension() local
DCollectionNode.java26 CollectionNode(Connection connection, String nodeId) in CollectionNode() argument
28 super(connection, nodeId); in CollectionNode()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DDOMAgent.js44 this.id = payload.nodeId;
886 _attributeModified: function(nodeId, name, value) argument
888 var node = this._idToDOMNode[nodeId];
900 _attributeRemoved: function(nodeId, name) argument
902 var node = this._idToDOMNode[nodeId];
929 function callback(nodeId, error, attributes) argument
935 var node = this._idToDOMNode[nodeId];
944 for (var nodeId in this._attributeLoadNodeIds) {
945 var nodeIdAsNumber = parseInt(nodeId, 10);
955 _characterDataModified: function(nodeId, newValue) argument
[all …]
DAllocationProfile.js124 var nodeId = this._nextNodeId++;
126 nodeId,
131 this._collapsedTopNodeIdToFunctionInfo[nodeId] = info;
139 serializeCallers: function(nodeId) argument
141 var node = this._idToNode[nodeId];
143 var functionInfo = this._collapsedTopNodeIdToFunctionInfo[nodeId];
145 delete this._collapsedTopNodeIdToFunctionInfo[nodeId];
146 this._idToNode[nodeId] = node;
178 _serializeNode: function(nodeId, functionInfo, count, size, hasChildren) argument
181 id: nodeId,
DCSSStyleModel.js100 getMatchedStylesAsync: function(nodeId, needPseudo, needInherited, userCallback) argument
145 …CSSAgent.getMatchedStylesForNode(nodeId, needPseudo, needInherited, callback.bind(null, userCallba…
152 getComputedStyleAsync: function(nodeId, userCallback) argument
154 this._styleLoader.getComputedStyle(nodeId, userCallback);
161 getPlatformFontsForNode: function(nodeId, callback) argument
170 CSSAgent.getPlatformFontsForNode(nodeId, platformFontsCallback);
177 getInlineStylesAsync: function(nodeId, userCallback) argument
193 CSSAgent.getInlineStylesForNode(nodeId, callback.bind(null, userCallback));
201 forcePseudoState: function(nodeId, forcedPseudoClasses, userCallback) argument
203 CSSAgent.forcePseudoState(nodeId, forcedPseudoClasses || [], userCallback);
[all …]
DLayersPanel.js143 var nodeId = layer && layer.nodeIdForSelfOrAncestor();
144 if (nodeId)
145 WebInspector.domAgent.highlightDOMNodeForTwoSeconds(nodeId);
161 var nodeId = layer && layer.nodeIdForSelfOrAncestor();
162 if (nodeId)
163 WebInspector.domAgent.highlightDOMNode(nodeId);
DLayerTree.js163 var nodeId = layer.nodeId();
164 if (!nodeId)
166 var domNode = WebInspector.domAgent.nodeForId(nodeId);
201 var nodeId = layer.nodeIdForSelfOrAncestor();
202 var node = nodeId ? WebInspector.domAgent.nodeForId(nodeId) : null;
DLayerTreeModel.js168 if (!this._contentRoot && layer.nodeId())
288 nodeId: function() method in WebInspector.Layer
290 return this._layerPayload.nodeId;
299 var nodeId = layer._layerPayload.nodeId;
300 if (nodeId)
301 return nodeId;
DEventListenersSidebarPane.js89 if (selectedNodeOnly && (node.id !== eventListener.nodeId))
91 eventListener.node = WebInspector.domAgent.nodeForId(eventListener.nodeId);
92 delete eventListener.nodeId; // no longer needed
145 WebInspector.EventListenersSection = function(title, nodeId, linkifier) argument
148 this._nodeId = nodeId;
176 WebInspector.EventListenerBar = function(eventListener, nodeId, linkifier) argument
181 this._nodeId = nodeId;
DDOMBreakpointsSidebarPane.js130 var linkifiedNode = WebInspector.DOMPresentationUtils.linkifyNodeById(auxData.nodeId);
138 if (targetNodeId !== auxData.nodeId) {
282 var breakpointId = this._createBreakpointId(auxData.nodeId, auxData.type);
299 _createBreakpointId: function(nodeId, type) argument
301 return nodeId + ":" + type;
329 function didPushNodeByPathToFrontend(path, nodeId) argument
331 var node = nodeId ? WebInspector.domAgent.nodeForId(nodeId) : null;
DCSSNamedFlowView.js110 … var treeOutline = this._createFlowTreeOutline(WebInspector.domAgent.nodeForId(region.nodeId));
204 nodeIdSet[newRegions[i].nodeId] = true;
223 if (oldRegions[oldRegionsIndex].nodeId === newRegions[newRegionsIndex].nodeId) {
232 if (nodeIdSet[oldRegions[oldRegionsIndex].nodeId]) {
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DChromeBrowserProviderClient.java47 public static boolean bookmarkNodeExists(Context context, long nodeId) { in bookmarkNodeExists() argument
50 context, argsToBundle(nodeId)); in bookmarkNodeExists()
101 public static BookmarkNode getBookmarkNode(Context context, long nodeId, int flags) { in getBookmarkNode() argument
104 argsToBundle(nodeId, in getBookmarkNode()
141 public static boolean isBookmarkInMobileBookmarksBranch(Context context, long nodeId) { in isBookmarkInMobileBookmarksBranch() argument
144 argsToBundle(nodeId)); in isBookmarkInMobileBookmarksBranch()
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
DSelectionHandleTest.java92 final String nodeId; field in SelectionHandleTest.TestPageType
96 TestPageType(String nodeId, String dataUrl, boolean selectionShouldBeEditable) { in TestPageType() argument
97 this.nodeId = nodeId; in TestPageType()
158 clickNodeToShowSelectionHandles(pageType.nodeId); in doSelectionHandleTest()
164 Rect nodeWindowBounds = getNodeBoundsPix(pageType.nodeId); in doSelectionHandleTest()
271 clickNodeToShowSelectionHandles(pageType.nodeId); in doSelectionActionBarTest()
372 private Rect getNodeBoundsPix(String nodeId) throws Throwable {
374 new TestCallbackHelperContainer(getContentView()), nodeId);
388 private void clickNodeToShowSelectionHandles(String nodeId) throws Throwable {
389 Rect nodeWindowBounds = getNodeBoundsPix(nodeId);

123