/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/ |
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);
|
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; 396 * @param {function(?Protocol.Error, !DOMAgent.NodeId=)=} callback 618 * @param {function(?Protocol.Error, !DOMAgent.NodeId=)=} callback 811 * @param {function(?DOMAgent.NodeId)=} callback 882 * @param {!DOMAgent.NodeId} nodeId 886 _attributeModified: function(nodeId, name, value) 888 var node = this._idToDOMNode[nodeId]; 897 * @param {!DOMAgent.NodeId} nodeId [all...] |
AllocationProfile.js | 124 var nodeId = this._nextNodeId++; 126 nodeId, 131 this._collapsedTopNodeIdToFunctionInfo[nodeId] = info; 139 serializeCallers: function(nodeId) 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) 181 id: nodeId, [all...] |
LayersPanel.js | 143 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);
|
/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));
|