Searched refs:nodeId (Results 1 - 25 of 65) 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/llvm/include/llvm/CodeGen/PBQP/
H A DSolution.h73 /// @param nodeId Node id.
74 /// @param selection Selection for nodeId.
75 void setSelection(GraphBase::NodeId nodeId, unsigned selection) { argument
76 selections[nodeId] = selection;
80 /// @param nodeId Node id.
81 /// @return The selection for nodeId;
82 unsigned getSelection(GraphBase::NodeId nodeId) const {
83 SelectionsMap::const_iterator sItr = selections.find(nodeId);
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DDOMUtils.java25 * Returns whether the video with given {@code nodeId} has ended.
27 public static boolean hasVideoEnded(final ContentViewCore viewCore, final String nodeId) argument
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) argument
42 return DOMUtils.hasVideoEnded(viewCore, nodeId);
69 public static Rect getNodeBounds(final ContentViewCore viewCore, String nodeId) argument
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) argument
128 clickNode(ActivityInstrumentationTestCase2 activityTestCase, final ContentViewCore viewCore, String nodeId) argument
139 longPressNode(ActivityInstrumentationTestCase2 activityTestCase, final ContentViewCore viewCore, String nodeId) argument
150 scrollNodeIntoView(ContentViewCore viewCore, String nodeId) argument
159 getNodeContents(ContentViewCore viewCore, String nodeId) argument
167 getNodeValue(final ContentViewCore viewCore, String nodeId) argument
175 getNodeField(String fieldName, final ContentViewCore viewCore, String nodeId) argument
181 getNodeField(String fieldName, final ContentViewCore viewCore, String nodeId, Class<T> valueType) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.h118 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId) OVERRIDE;
119 virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) OVERRIDE;
121 virtual void requestChildNodes(ErrorString*, int nodeId, const int* depth) OVERRIDE;
125 virtual void removeNode(ErrorString*, int nodeId) OVERRIDE;
126 virtual void setNodeName(ErrorString*, int nodeId, const String& name, int* newId) OVERRIDE;
127 virtual void getOuterHTML(ErrorString*, int nodeId, WTF::String* outerHTML) OVERRIDE;
128 virtual void setOuterHTML(ErrorString*, int nodeId, const String& outerHTML) OVERRIDE;
129 virtual void setNodeValue(ErrorString*, int nodeId, const String& value) OVERRIDE;
130 virtual void getEventListenersForNode(ErrorString*, int nodeId, const WTF::String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) OVERRIDE;
134 virtual void resolveNode(ErrorString*, int nodeId, cons
[all...]
H A DWorkerConsoleAgent.h57 virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE;
H A DPageConsoleAgent.cpp88 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId) argument
90 Node* node = m_inspectorDOMAgent->nodeForId(nodeId);
92 *errorString = "nodeId is not valid";
/external/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h55 void recordVReg(unsigned vreg, PBQPRAGraph::NodeId nodeId, argument
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;
/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));
98 * @param nodeId The ID of the bookmark node to be retrieved.
102 public static BookmarkNode getBookmarkNode(Context context, long nodeId, int flags) { argument
105 argsToBundle(nodeId,
142 public static boolean isBookmarkInMobileBookmarksBranch(Context context, long nodeId) { argument
145 argsToBundle(nodeId));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
H A DAllocationProfile.js134 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/
H A DDOMModel.js47 this.id = payload.nodeId;
1033 * @param {?DOMAgent.NodeId} nodeId
1036 function mycallback(nodeId)
1038 callback(nodeId ? this.nodeForId(nodeId) : null);
1108 * @param {!DOMAgent.NodeId} nodeId
1112 _attributeModified: function(nodeId, name, value)
1114 var node = this._idToDOMNode[nodeId];
1123 * @param {!DOMAgent.NodeId} nodeId
1126 _attributeRemoved: function(nodeId, nam
[all...]

Completed in 4211 milliseconds

123