HomeSort by relevance Sort by last modified time
    Searched refs:nodeId (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/smack/src/org/jivesoftware/smackx/pubsub/
NodeEvent.java 24 private String nodeId;
28 nodeId = id;
33 return nodeId;
CollectionNode.java 26 CollectionNode(Connection connection, String nodeId)
28 super(connection, nodeId);
ConfigurationEvent.java 33 public ConfigurationEvent(String nodeId)
35 super(PubSubElementType.CONFIGURATION, nodeId);
38 public ConfigurationEvent(String nodeId, ConfigureForm configForm)
40 super(PubSubElementType.CONFIGURATION, nodeId);
SubscriptionEvent.java 34 * @param nodeId The id of the node the event came from
36 protected SubscriptionEvent(String nodeId)
38 super(nodeId);
44 * @param nodeId The id of the node the event came from
47 protected SubscriptionEvent(String nodeId, List<String> subscriptionIds)
49 super(nodeId);
GetItemsRequest.java 26 public GetItemsRequest(String nodeId)
28 super(PubSubElementType.ITEMS, nodeId);
31 public GetItemsRequest(String nodeId, String subscriptionId)
33 super(PubSubElementType.ITEMS, nodeId);
37 public GetItemsRequest(String nodeId, int maxItemsToReturn)
39 super(PubSubElementType.ITEMS, nodeId);
43 public GetItemsRequest(String nodeId, String subscriptionId, int maxItemsToReturn)
45 this(nodeId, maxItemsToReturn);
OptionsExtension.java 33 public OptionsExtension(String subscriptionJid, String nodeId)
35 this(subscriptionJid, nodeId, null);
38 public OptionsExtension(String jid, String nodeId, String subscriptionId)
40 super(PubSubElementType.OPTIONS, nodeId);
PublishItem.java 31 * @param nodeId The node to publish to
34 public PublishItem(String nodeId, T toPublish)
36 super(PubSubElementType.PUBLISH, nodeId);
44 * @param nodeId The node to publish to
47 public PublishItem(String nodeId, Collection<T> toPublish)
49 super(PubSubElementType.PUBLISH, nodeId);
UnsubscribeExtension.java 34 public UnsubscribeExtension(String subscriptionJid, String nodeId)
36 this(subscriptionJid, nodeId, null);
39 public UnsubscribeExtension(String jid, String nodeId, String subscriptionId)
41 super(PubSubElementType.UNSUBSCRIBE, nodeId);
ItemPublishEvent.java 34 * @param nodeId The id of the node the event came from
37 public ItemPublishEvent(String nodeId, List<T> eventItems)
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)
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)
73 super(nodeId, subscriptionIds);
Subscription.java 49 * @param nodeId The node id
51 public Subscription(String subscriptionJid, String nodeId)
53 this(subscriptionJid, nodeId, null, null);
61 * @param nodeId The node subscribed to
65 public Subscription(String jid, String nodeId, String subscriptionId, State state)
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)
86 super(PubSubElementType.SUBSCRIPTION, nodeId);
ItemDeleteEvent.java 34 * @param nodeId The id of the node the event came from
38 public ItemDeleteEvent(String nodeId, List<String> deletedItemIds, List<String> subscriptionIds)
40 super(nodeId, subscriptionIds);
NodeExtension.java 36 * @param nodeId Specifies the id of the node
38 public NodeExtension(PubSubElementType elem, String nodeId)
41 this.node = nodeId;
SubscribeExtension.java 31 public SubscribeExtension(String subscribeJid, String nodeId)
33 super(PubSubElementType.SUBSCRIBE, nodeId);
FormNode.java 50 * @param nodeId The node the form is associated with
53 public FormNode(FormNodeType formType, String nodeId, Form submitForm)
55 super(formType.getNodeElement(), nodeId);
Item.java 81 * @param nodeId The id of the node which the item was published to.
83 public Item(String itemId, String nodeId)
85 super(PubSubElementType.ITEM_EVENT, nodeId);
ItemsExtension.java 80 * @param nodeId The node to which the items are being sent or deleted
84 public ItemsExtension(ItemsElementType itemsType, String nodeId, List<? extends PacketExtension> items)
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)
111 super(ItemsElementType.retract.getNodeElement(), nodeId);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.cpp 56 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, int nodeId, bool forceRoot)
60 .setNodeId(nodeId)
75 static void maybeAddGraphicsLayer(GraphicsLayer* graphicsLayer, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers, bool forceRoot = false)
79 layers->addItem(buildObjectForLayer(graphicsLayer, nodeId, forceRoot));
136 void InspectorLayerTreeAgent::getLayers(ErrorString* errorString, const int* nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers)
146 if (!nodeId) {
150 Node* node = m_instrumentingAgents->inspectorDOMAgent()->nodeForId(*nodeId);
165 int nodeId = idForNode(errorString, node);
169 maybeAddGraphicsLayer(layerBacking->ancestorClippingLayer(), nodeId, layers, forceRoot);
172 maybeAddGraphicsLayer(layerBacking->graphicsLayer(), nodeId, layers, forceRoot)
    [all...]
InspectorDOMAgent.h 116 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, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result)
    [all...]
WorkerConsoleAgent.h 52 virtual void addInspectedNode(ErrorString*, int nodeId);
PageConsoleAgent.h 55 virtual void addInspectedNode(ErrorString*, int nodeId);
InspectorDOMAgent.cpp 379 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId)
381 Node* node = nodeForId(nodeId);
389 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId)
391 Node* node = assertNode(errorString, nodeId);
402 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId)
404 Node* node = assertNode(errorString, nodeId);
415 Node* InspectorDOMAgent::assertEditableNode(ErrorString* errorString, int nodeId)
417 Node* node = assertNode(errorString, nodeId);
429 Element* InspectorDOMAgent::assertEditableElement(ErrorString* errorString, int nodeId)
431 Element* element = assertElement(errorString, nodeId);
    [all...]
PageConsoleAgent.cpp 70 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId)
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/
DOMUtils.java 28 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)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMAgent.js 44 this.id = payload.nodeId;
903 * @param {function(?DOMAgent.NodeId)=} callback
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];
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProviderClient.java 47 public static boolean bookmarkNodeExists(Context context, long nodeId) {
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) {
104 argsToBundle(nodeId,
141 public static boolean isBookmarkInMobileBookmarksBranch(Context context, long nodeId) {
144 argsToBundle(nodeId));

Completed in 152 milliseconds

1 2 3