Searched defs:nodeId (Results 1 - 25 of 30) sorted by relevance

12

/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DCollectionNode.java26 CollectionNode(Connection connection, String nodeId) argument
28 super(connection, nodeId);
H A DAffiliationsExtension.java45 * @param nodeId
48 public AffiliationsExtension(String nodeId, List<Affiliation> affiliationList) argument
50 super(PubSubElementType.AFFILIATIONS, 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 DNodeEvent.java24 private String nodeId; field in class:NodeEvent
28 nodeId = id;
33 return 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 DSubscribeExtension.java31 public SubscribeExtension(String subscribeJid, String nodeId) argument
33 super(PubSubElementType.SUBSCRIBE, 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 DSubscriptionsExtension.java44 * @param nodeId The node subscribed to
47 public SubscriptionsExtension(String nodeId, List<Subscription> subList) argument
49 super(PubSubElementType.SUBSCRIPTIONS, 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 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 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 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 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 DNodeExtension.java36 * @param nodeId Specifies the id of the node
38 public NodeExtension(PubSubElementType elem, String nodeId) argument
41 this.node = nodeId;
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 DPayloadItem.java86 * @param nodeId The id of the node the item was published to.
89 public PayloadItem(String itemId, String nodeId, E payloadExt) argument
91 super(itemId, 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 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);
H A DPubSubManager.java181 * or there is no root collection node, pass null as the nodeId.
183 * @param nodeId - The id of the collection node for which the child
189 public DiscoverItems discoverNodes(String nodeId) argument
194 if (nodeId != null)
195 items.setNode(nodeId);
234 * @param nodeId
237 public void deleteNode(String nodeId) argument
240 sendPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.DELETE, nodeId), PubSubElementType.DELETE.getNamespace());
241 nodeMap.remove(nodeId);
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);
/external/webkit/Source/WebCore/inspector/
H A DInspectorConsoleAgent.cpp231 void InspectorConsoleAgent::addInspectedNode(ErrorString*, int nodeId) argument
233 Node* node = m_inspectorDOMAgent->nodeForId(nodeId);
H A DInspectorBrowserDebuggerAgent.cpp172 void InspectorBrowserDebuggerAgent::setDOMBreakpoint(ErrorString*, int nodeId, int type) argument
174 Node* node = m_domAgent->nodeForId(nodeId);
186 void InspectorBrowserDebuggerAgent::removeDOMBreakpoint(ErrorString*, int nodeId, int type) argument
188 Node* node = m_domAgent->nodeForId(nodeId);
279 description->setNumber("nodeId", breakpointOwnerNodeId);
H A DInspectorCSSAgent.cpp184 void InspectorCSSAgent::getStylesForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* result) argument
186 Element* element = elementForId(errorString, nodeId);
239 void InspectorCSSAgent::getInlineStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) argument
241 Element* element = elementForId(errorString, nodeId);
252 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) argument
254 Element* element = elementForId(errorString, nodeId);
406 Element* InspectorCSSAgent::elementForId(ErrorString* errorString, int nodeId) argument
408 Node* node = m_domAgent->nodeForId(nodeId);
H A DInspectorDOMAgent.cpp400 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) argument
402 Node* node = nodeForId(nodeId);
410 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) argument
412 Node* node = assertNode(errorString, nodeId);
424 HTMLElement* InspectorDOMAgent::assertHTMLElement(ErrorString* errorString, int nodeId) argument
426 Element* element = assertElement(errorString, nodeId);
452 void InspectorDOMAgent::pushChildNodesToFrontend(int nodeId) argument
454 Node* node = nodeForId(nodeId);
457 if (m_childrenRequested.contains(nodeId))
460 NodeToIdMap* nodeMap = m_idToNodesMap.get(nodeId);
484 getChildNodes(ErrorString*, int nodeId) argument
489 querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
507 querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<InspectorArray>* result) argument
563 int nodeId = map->get(path.at(i)); local
597 removeNode(ErrorString* errorString, int nodeId) argument
615 setNodeName(ErrorString*, int nodeId, const String& tagName, int* newId) argument
652 getOuterHTML(ErrorString* errorString, int nodeId, WTF::String* outerHTML) argument
659 setOuterHTML(ErrorString* errorString, int nodeId, const String& outerHTML, int* newId) argument
696 setNodeValue(ErrorString* errorString, int nodeId, const String& value) argument
714 getEventListenersForNode(ErrorString*, int nodeId, RefPtr<InspectorArray>* listenersArray) argument
960 highlightDOMNode(ErrorString* error, int nodeId) argument
979 resolveNode(ErrorString* error, int nodeId, RefPtr<InspectorObject>* result) argument
989 pushNodeToFrontend(ErrorString*, const String& objectId, int* nodeId) argument
1368 copyNode(ErrorString*, int nodeId) argument
1377 pushNodeByPathToFrontend(ErrorString*, const String& path, int* nodeId) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java1876 * @param nodeId The node identity.
1880 public int getNodeHandle(int nodeId) argument
1882 /*if (nodeId != DTM.NULL)
1883 return nodeId | m_dtmIdent;
1887 return makeNodeHandle(nodeId);

Completed in 234 milliseconds

12