HomeSort by relevance Sort by last modified time
    Searched full:nodeid (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/net/spdy/
spdy_priority_forest.h 29 // The NodeId and Priority types must be POD that support comparison (most
31 template <typename NodeId, typename Priority>
41 bool NodeExists(NodeId node_id) const;
45 bool AddRootNode(NodeId node_id, Priority priority);
50 bool AddNonRootNode(NodeId node_id, NodeId parent_id, bool unordered);
54 bool RemoveNode(NodeId node_id);
58 Priority GetPriority(NodeId node_id) const;
61 // node (and thus has no parent), returns NodeId().
62 NodeId GetParent(NodeId node_id) const
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
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);
NodeEvent.java 24 private String nodeId;
28 nodeId = id;
33 return 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);
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);
ConfigurationEvent.java 33 public ConfigurationEvent(String nodeId)
35 super(PubSubElementType.CONFIGURATION, nodeId);
38 public ConfigurationEvent(String nodeId, ConfigureForm configForm)
40 super(PubSubElementType.CONFIGURATION, nodeId);
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);
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);
CollectionNode.java 26 CollectionNode(Connection connection, String nodeId)
28 super(connection, nodeId);
AffiliationsExtension.java 45 * @param nodeId
48 public AffiliationsExtension(String nodeId, List<Affiliation> affiliationList)
50 super(PubSubElementType.AFFILIATIONS, 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;
SubscriptionsExtension.java 44 * @param nodeId The node subscribed to
47 public SubscriptionsExtension(String nodeId, List<Subscription> subList)
49 super(PubSubElementType.SUBSCRIPTIONS, nodeId);
  /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...]
CSSStyleModel.js 95 * @param {!DOMAgent.NodeId} nodeId
100 getMatchedStylesAsync: function(nodeId, needPseudo, needInherited, userCallback)
145 CSSAgent.getMatchedStylesForNode(nodeId, needPseudo, needInherited, callback.bind(null, userCallback));
149 * @param {!DOMAgent.NodeId} nodeId
152 getComputedStyleAsync: function(nodeId, userCallback)
154 this._styleLoader.getComputedStyle(nodeId, userCallback);
158 * @param {number} nodeId
161 getPlatformFontsForNode: function(nodeId, callback
    [all...]
  /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...]
  /external/srec/srec/include/
srec_context.h 72 nodeID node_index;
73 nodeID* node_for_lpcp; /* size num_lpcps */
83 nodeID from_node_index; /* from node, there can be multiple arcs leaving here */
85 nodeID wbto_node_index; /* node index after the .wb ilabel */
110 nodeID num_nodes;
111 nodeID FSMnode_list_len;
112 nodeID num_base_nodes;
113 nodeID FSMnode_freelist;
119 nodeID start_node;
120 nodeID end_node
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
dom_tracker_unittest.cc 58 "[{\"nodeId\":100,\"children\":"
59 " [{\"nodeId\":101},"
60 " {\"nodeId\":102,\"frameId\":\"f\"}]"
82 params.Set("node", base::JSONReader::Read("{\"nodeId\":1}"));
90 "{\"nodeId\":2,\"frameId\":\"f\"}"));
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 48 NSInteger lnodeid; /* nodeid of left node */
49 NSInteger rnodeid; /* nodeid of right node */
50 NSInteger nodeid; /* node id */ variable
66 @property (assign) NSInteger nodeid; variable
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
lock_dlm_plock.h 31 __s32 nodeid; member in struct:gdlm_plock_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
lock_dlm_plock.h 31 __s32 nodeid; member in struct:gdlm_plock_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
lock_dlm_plock.h 31 __s32 nodeid; member in struct:gdlm_plock_info

Completed in 3080 milliseconds

1 2 3 4 5 6 7