Searched refs:nodeId (Results 1 - 25 of 63) sorted by relevance

123

/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DNodeEvent.java24 private String nodeId; field in class:NodeEvent
28 nodeId = id;
33 return nodeId;
H A DCollectionNode.java26 CollectionNode(Connection connection, String nodeId) argument
28 super(connection, nodeId);
H A DConfigurationEvent.java33 public ConfigurationEvent(String nodeId) argument
35 super(PubSubElementType.CONFIGURATION, nodeId);
38 public ConfigurationEvent(String nodeId, ConfigureForm configForm) argument
40 super(PubSubElementType.CONFIGURATION, nodeId);
H A DSubscriptionEvent.java34 * @param nodeId The id of the node the event came from
36 protected SubscriptionEvent(String nodeId) argument
38 super(nodeId);
44 * @param nodeId The id of the node the event came from
47 protected SubscriptionEvent(String nodeId, List<String> subscriptionIds) argument
49 super(nodeId);
H A DGetItemsRequest.java26 public GetItemsRequest(String nodeId) argument
28 super(PubSubElementType.ITEMS, nodeId);
31 public GetItemsRequest(String nodeId, String subscriptionId) argument
33 super(PubSubElementType.ITEMS, nodeId);
37 public GetItemsRequest(String nodeId, int maxItemsToReturn) argument
39 super(PubSubElementType.ITEMS, nodeId);
43 public GetItemsRequest(String nodeId, String subscriptionId, int maxItemsToReturn) argument
45 this(nodeId, maxItemsToReturn);
H A DOptionsExtension.java33 public OptionsExtension(String subscriptionJid, String nodeId) argument
35 this(subscriptionJid, nodeId, null);
38 public OptionsExtension(String jid, String nodeId, String subscriptionId) argument
40 super(PubSubElementType.OPTIONS, nodeId);
H A DPublishItem.java31 * @param nodeId The node to publish to
34 public PublishItem(String nodeId, T toPublish) argument
36 super(PubSubElementType.PUBLISH, nodeId);
44 * @param nodeId The node to publish to
47 public PublishItem(String nodeId, Collection<T> toPublish) argument
49 super(PubSubElementType.PUBLISH, nodeId);
H A DUnsubscribeExtension.java34 public UnsubscribeExtension(String subscriptionJid, String nodeId) argument
36 this(subscriptionJid, nodeId, null);
39 public UnsubscribeExtension(String jid, String nodeId, String subscriptionId) argument
41 super(PubSubElementType.UNSUBSCRIBE, nodeId);
H A DItemPublishEvent.java34 * @param nodeId The id of the node the event came from
37 public ItemPublishEvent(String nodeId, List<T> eventItems) argument
39 super(nodeId);
49 * @param nodeId The id of the node the event came from
53 public ItemPublishEvent(String nodeId, List<T> eventItems, List<String> subscriptionIds) argument
55 super(nodeId, subscriptionIds);
66 * @param nodeId The id of the node the event came from
71 public ItemPublishEvent(String nodeId, List<T> eventItems, List<String> subscriptionIds, Date publishedDate) argument
73 super(nodeId, subscriptionIds);
H A DSubscription.java49 * @param nodeId The node id
51 public Subscription(String subscriptionJid, String nodeId) argument
53 this(subscriptionJid, nodeId, null, null);
61 * @param nodeId The node subscribed to
65 public Subscription(String jid, String nodeId, String subscriptionId, State state) argument
67 super(PubSubElementType.SUBSCRIPTION, nodeId);
79 * @param nodeId The node subscribed to
84 public Subscription(String jid, String nodeId, String subscriptionId, State state, boolean configRequired) argument
86 super(PubSubElementType.SUBSCRIPTION, nodeId);
H A DItemDeleteEvent.java34 * @param nodeId The id of the node the event came from
38 public ItemDeleteEvent(String nodeId, List<String> deletedItemIds, List<String> subscriptionIds) argument
40 super(nodeId, subscriptionIds);
H A DNodeExtension.java36 * @param nodeId Specifies the id of the node
38 public NodeExtension(PubSubElementType elem, String nodeId) argument
41 this.node = nodeId;
H A DSubscribeExtension.java31 public SubscribeExtension(String subscribeJid, String nodeId) argument
33 super(PubSubElementType.SUBSCRIBE, nodeId);
H A DFormNode.java50 * @param nodeId The node the form is associated with
53 public FormNode(FormNodeType formType, String nodeId, Form submitForm) argument
55 super(formType.getNodeElement(), nodeId);
H A DItem.java81 * @param nodeId The id of the node which the item was published to.
83 public Item(String itemId, String nodeId) argument
85 super(PubSubElementType.ITEM_EVENT, nodeId);
H A DItemsExtension.java80 * @param nodeId The node to which the items are being sent or deleted
84 public ItemsExtension(ItemsElementType itemsType, String nodeId, List<? extends PacketExtension> items) argument
86 super(itemsType.getNodeElement(), nodeId);
105 * @param nodeId The node to which the items are being sent or deleted
109 public ItemsExtension(String nodeId, List<? extends PacketExtension> items, boolean notify) argument
111 super(ItemsElementType.retract.getNodeElement(), nodeId);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorLayerTreeAgent.cpp56 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, int nodeId, bool forceRoot) argument
60 .setNodeId(nodeId)
75 static void maybeAddGraphicsLayer(GraphicsLayer* graphicsLayer, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers, bool forceRoot = false) argument
79 layers->addItem(buildObjectForLayer(graphicsLayer, nodeId, forceRoot));
136 void InspectorLayerTreeAgent::getLayers(ErrorString* errorString, const int* nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) argument
146 if (!nodeId) {
150 Node* node = m_instrumentingAgents->inspectorDOMAgent()->nodeForId(*nodeId);
165 int nodeId = idForNode(errorString, node); local
169 maybeAddGraphicsLayer(layerBacking->ancestorClippingLayer(), nodeId, layers, forceRoot);
172 maybeAddGraphicsLayer(layerBacking->graphicsLayer(), nodeId, layer
207 int nodeId = domAgent->boundNodeId(node); local
[all...]
H A DInspectorDOMAgent.h116 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId);
117 virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result);
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, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray);
132 virtual void resolveNode(ErrorString*, int nodeId, cons
[all...]
H A DWorkerConsoleAgent.h52 virtual void addInspectedNode(ErrorString*, int nodeId);
H A DPageConsoleAgent.h55 virtual void addInspectedNode(ErrorString*, int nodeId);
H A DInspectorDOMAgent.cpp379 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) argument
381 Node* node = nodeForId(nodeId);
389 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) argument
391 Node* node = assertNode(errorString, nodeId);
402 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) argument
404 Node* node = assertNode(errorString, nodeId);
415 Node* InspectorDOMAgent::assertEditableNode(ErrorString* errorString, int nodeId) argument
417 Node* node = assertNode(errorString, nodeId);
429 Element* InspectorDOMAgent::assertEditableElement(ErrorString* errorString, int nodeId) argument
431 Element* element = assertElement(errorString, nodeId);
456 pushChildNodesToFrontend(int nodeId, int depth) argument
526 requestChildNodes(ErrorString* errorString, int nodeId, const int* depth) argument
544 querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
562 querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) argument
621 int nodeId = map->get(path.at(i)); local
728 removeNode(ErrorString* errorString, int nodeId) argument
743 setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId) argument
778 getOuterHTML(ErrorString* errorString, int nodeId, WTF::String* outerHTML) argument
787 setOuterHTML(ErrorString* errorString, int nodeId, const String& outerHTML) argument
821 setNodeValue(ErrorString* errorString, int nodeId, const String& value) argument
835 getEventListenersForNode(ErrorString* errorString, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) argument
1097 int nodeId = pushNodePathToFrontend(node); local
1189 highlightNode(ErrorString* errorString, const RefPtr<JSONObject>& highlightInspectorObject, const int* nodeId, const String* objectId) argument
1233 moveTo(ErrorString* errorString, int nodeId, int targetElementId, const int* const anchorNodeId, int* newNodeId) argument
1279 focus(ErrorString* errorString, int nodeId) argument
1291 setFileInputFiles(ErrorString* errorString, int nodeId, const RefPtr<JSONArray>& files) argument
1313 resolveNode(ErrorString* errorString, int nodeId, const String* const objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
1329 getAttributes(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<String> >& result) argument
1338 requestNode(ErrorString*, const String& objectId, int* nodeId) argument
1819 pushNodeByPathToFrontend(ErrorString* errorString, const String& path, int* nodeId) argument
1827 pushNodeByBackendIdToFrontend(ErrorString* errorString, BackendNodeId backendNodeId, int* nodeId) argument
[all...]
H A DPageConsoleAgent.cpp70 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId) argument
72 Node* node = m_inspectorDOMAgent->nodeForId(nodeId);
74 *errorString = "nodeId is not valid";
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DDOMUtils.java28 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId)
32 sb.append(" var node = document.getElementById('" + nodeId + "');");
48 Assert.assertFalse("Failed to retrieve bounds for " + nodeId,
74 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId)
78 sb.append(" var node = document.getElementById('" + nodeId + "');");
89 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId)
91 int[] clickTarget = getClickTargetForNode(view, viewClient, nodeId);
100 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId)
102 int[] clickTarget = getClickTargetForNode(view, viewClient, nodeId);
111 TestCallbackHelperContainer viewClient, String nodeId)
27 getNodeBounds( final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
73 focusNode(ActivityInstrumentationTestCase2 activityTestCase, final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
88 clickNode(ActivityInstrumentationTestCase2 activityTestCase, final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
99 longPressNode(ActivityInstrumentationTestCase2 activityTestCase, final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
110 scrollNodeIntoView(final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
120 getNodeContents(final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
129 getNodeValue(final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
135 getNodeField(String fieldName, final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DDOMAgent.js44 this.id = payload.nodeId;
970 * @param {DOMAgent.NodeId} nodeId
974 _attributeModified: function(nodeId, name, value)
976 var node = this._idToDOMNode[nodeId];
985 * @param {DOMAgent.NodeId} nodeId
988 _attributeRemoved: function(nodeId, name)
990 var node = this._idToDOMNode[nodeId];
1013 * @param {DOMAgent.NodeId} nodeId
1017 function callback(nodeId, error, attributes)
1023 var node = this._idToDOMNode[nodeId];
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProviderClient.java47 public static boolean bookmarkNodeExists(Context context, long nodeId) { argument
50 context, argsToBundle(nodeId));
97 * @param nodeId The ID of the bookmark node to be retrieved.
101 public static BookmarkNode getBookmarkNode(Context context, long nodeId, int flags) { argument
104 argsToBundle(nodeId,
141 public static boolean isBookmarkInMobileBookmarksBranch(Context context, long nodeId) { argument
144 argsToBundle(nodeId));

Completed in 1889 milliseconds

123