Searched defs:nodeId (Results 1 - 25 of 42) 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/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DGestureDetectorResetTest.java45 String nodeId, String expectedContents) {
47 mNodeId = nodeId;
43 NodeContentsIsEqualToCriteria( ContentViewCore viewCore, String nodeId, String expectedContents) argument
/external/chromium_org/third_party/WebKit/Source/core/inspector/
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/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/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/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;

Completed in 1552 milliseconds

12