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

1 2 3 4

  /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/llvm/include/llvm/CodeGen/PBQP/
Solution.h 29 typedef std::map<GraphBase::NodeId, unsigned> SelectionsMap;
73 /// @param nodeId Node id.
74 /// @param selection Selection for nodeId.
75 void setSelection(GraphBase::NodeId nodeId, unsigned selection) {
76 selections[nodeId] = selection;
80 /// @param nodeId Node id.
81 /// @return The selection for nodeId;
82 unsigned getSelection(GraphBase::NodeId nodeId) const
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
DOMUtils.java 25 * Returns whether the video with given {@code nodeId} has ended.
27 public static boolean hasVideoEnded(final ContentViewCore viewCore, final String nodeId)
29 return getNodeField("ended", viewCore, nodeId, Boolean.class);
33 * Wait until the end of the video with given {@code nodeId}.
36 public static boolean waitForEndOfVideo(final ContentViewCore viewCore, final String nodeId)
42 return DOMUtils.hasVideoEnded(viewCore, nodeId);
69 public static Rect getNodeBounds(final ContentViewCore viewCore, String nodeId)
73 sb.append(" var node = document.getElementById('" + nodeId + "');");
89 Assert.assertFalse("Failed to retrieve bounds for " + nodeId,
114 public static void focusNode(final ContentViewCore viewCore, String nodeId)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.h 117 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId) OVERRIDE;
118 virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) OVERRIDE;
120 virtual void requestChildNodes(ErrorString*, int nodeId, const int* depth) OVERRIDE;
124 virtual void removeNode(ErrorString*, int nodeId) OVERRIDE;
125 virtual void setNodeName(ErrorString*, int nodeId, const String& name, int* newId) OVERRIDE;
126 virtual void getOuterHTML(ErrorString*, int nodeId, WTF::String* outerHTML) OVERRIDE;
127 virtual void setOuterHTML(ErrorString*, int nodeId, const String& outerHTML) OVERRIDE;
128 virtual void setNodeValue(ErrorString*, int nodeId, const String& value) OVERRIDE;
129 virtual void getEventListenersForNode(ErrorString*, int nodeId, const WTF::String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) OVERRIDE;
133 virtual void resolveNode(ErrorString*, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) OVERRIDE
    [all...]
WorkerConsoleAgent.h 52 virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE;
PageConsoleAgent.h 55 virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE;
  /external/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 55 void recordVReg(unsigned vreg, PBQPRAGraph::NodeId nodeId,
57 assert(node2VReg.find(nodeId) == node2VReg.end() && "Re-mapping node.");
61 node2VReg[nodeId] = vreg;
62 vreg2Node[vreg] = nodeId;
67 unsigned getVRegForNode(PBQPRAGraph::NodeId nodeId) const;
70 PBQPRAGraph::NodeId getNodeForVReg(unsigned vreg) const;
95 typedef std::map<PBQPRAGraph::NodeId, unsigned> Node2VReg;
96 typedef DenseMap<unsigned, PBQPRAGraph::NodeId> VReg2Node
    [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));
98 * @param nodeId The ID of the bookmark node to be retrieved.
102 public static BookmarkNode getBookmarkNode(Context context, long nodeId, int flags) {
105 argsToBundle(nodeId,
142 public static boolean isBookmarkInMobileBookmarksBranch(Context context, long nodeId) {
145 argsToBundle(nodeId));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
AllocationProfile.js 134 var nodeId = this._nextNodeId++;
137 nodeId,
144 this._collapsedTopNodeIdToFunctionInfo[nodeId] = info;
153 * @param {number} nodeId
156 serializeCallers: function(nodeId)
158 var node = this._ensureBottomUpNode(nodeId);
205 * @param {number} nodeId
208 _ensureBottomUpNode: function(nodeId)
210 var node = this._idToNode[nodeId];
212 var functionInfo = this._collapsedTopNodeIdToFunctionInfo[nodeId];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DOMModel.js 47 this.id = payload.nodeId;
452 * @param {function(?Protocol.Error, !DOMAgent.NodeId=)=} callback
710 * @param {function(?Protocol.Error, !DOMAgent.NodeId=)=} callback
976 * @param {?DOMAgent.NodeId} nodeId
979 function mycallback(nodeId)
981 callback(nodeId ? this.nodeForId(nodeId) : null);
1051 * @param {!DOMAgent.NodeId} nodeId
    [all...]

Completed in 469 milliseconds

1 2 3 4