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

1 2 3 4 5 6 7 8 91011>>

  /external/guice/extensions/grapher/src/com/google/inject/grapher/
AbstractInjectorGrapher.java 109 Map<NodeId, NodeId> aliases = resolveAliases(aliasCreator.createAliases(bindings));
136 private void createNodes(Iterable<Node> nodes, Map<NodeId, NodeId> aliases) throws IOException {
138 NodeId originalId = node.getId();
139 NodeId resolvedId = resolveAlias(aliases, originalId);
155 private void createEdges(Iterable<Edge> edges, Map<NodeId, NodeId> aliases) throws IOException {
169 private NodeId resolveAlias(Map<NodeId, NodeId> aliases, NodeId nodeId)
    [all...]
Edge.java 28 private final NodeId fromId;
29 private final NodeId toId;
31 protected Edge(NodeId fromId, NodeId toId) {
36 public NodeId getFromId() {
40 public NodeId getToId() {
63 public abstract Edge copy(NodeId fromId, NodeId toId);
Alias.java 27 private final NodeId fromId;
28 private final NodeId toId;
30 public Alias(NodeId fromId, NodeId toId) {
35 public NodeId getFromId() {
39 public NodeId getToId() {
NodeId.java 32 public final class NodeId {
50 private NodeId(Key<?> key, NodeType nodeType) {
55 public static NodeId newTypeId(Key<?> key) {
56 return new NodeId(key, NodeType.TYPE);
59 public static NodeId newInstanceId(Key<?> key) {
60 return new NodeId(key, NodeType.INSTANCE);
72 if (!(obj.getClass().equals(NodeId.class))) {
75 NodeId other = (NodeId) obj;
80 return "NodeId{nodeType=" + nodeType + " key=" + key + "}"
    [all...]
DefaultEdgeCreator.java 61 * @param nodeId ID of the node that should be the tail of the dependency
66 NodeId nodeId, T binding) {
69 NodeId to = NodeId.newTypeId(dependency.getKey());
70 builder.add(new DependencyEdge(nodeId, to, dependency.getInjectionPoint()));
80 return newDependencyEdges(NodeId.newTypeId(binding.getKey()), binding);
89 return ImmutableList.<Edge>of(new BindingEdge(NodeId.newTypeId(binding.getKey()),
90 NodeId.newTypeId(binding.getSourceKey()),
102 .add(new BindingEdge(NodeId.newTypeId(binding.getKey())
    [all...]
BindingEdge.java 42 public BindingEdge(NodeId fromId, NodeId toId, Type type) {
67 @Override public Edge copy(NodeId fromId, NodeId toId) {
DependencyEdge.java 36 public DependencyEdge(NodeId fromId, NodeId toId, InjectionPoint injectionPoint) {
62 @Override public Edge copy(NodeId fromId, NodeId toId) {
Node.java 34 private final NodeId id;
37 protected Node(NodeId id, Object source) {
42 public NodeId getId() {
69 public abstract Node copy(NodeId id);
InterfaceNode.java 27 public InterfaceNode(NodeId id, Object source) {
31 @Override public Node copy(NodeId id) {
ProviderAliasCreator.java 37 aliases.add(new Alias(NodeId.newTypeId(binding.getKey()),
38 NodeId.newTypeId(((ProviderBinding<?>) binding).getProvidedKey())));
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
GraphvizNode.java 22 import com.google.inject.grapher.NodeId;
34 private final NodeId nodeId;
51 public GraphvizNode(NodeId nodeId) {
52 this.nodeId = nodeId;
56 public NodeId getNodeId() {
57 return nodeId;
GraphvizEdge.java 20 import com.google.inject.grapher.NodeId;
31 private final NodeId headNodeId;
36 private final NodeId tailNodeId;
43 public GraphvizEdge(NodeId tailNodeId, NodeId headNodeId) {
49 public NodeId getHeadNodeId() {
78 public NodeId getTailNodeId() {
GraphvizGrapher.java 32 import com.google.inject.grapher.NodeId;
50 private final Map<NodeId, GraphvizNode> nodes = Maps.newHashMap();
211 protected String getEdgeEndPoint(String nodeId, String portId, CompassPoint compassPoint) {
212 List<String> portStrings = Lists.newArrayList(nodeId);
241 NodeId nodeId = node.getId();
242 GraphvizNode gnode = new GraphvizNode(nodeId);
244 Key<?> key = nodeId.getKey();
251 NodeId nodeId = node.getId()
    [all...]
  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 30 typedef std::map<GraphBase::NodeId, unsigned> SelectionsMap;
74 /// @param nodeId Node id.
75 /// @param selection Selection for nodeId.
76 void setSelection(GraphBase::NodeId nodeId, unsigned selection) {
77 selections[nodeId] = selection;
81 /// @param nodeId Node id.
82 /// @return The selection for nodeId;
83 unsigned getSelection(GraphBase::NodeId nodeId) const
    [all...]
Graph.h 31 typedef unsigned NodeId;
35 static NodeId invalidNodeId() {
36 return std::numeric_limits<NodeId>::max();
83 void removeAdjEdgeId(Graph &G, NodeId ThisNId, AdjEdgeIdx Idx) {
105 EdgeEntry(NodeId N1Id, NodeId N2Id, MatrixPtr Costs)
127 void connectTo(Graph &G, EdgeId ThisEdgeId, NodeId NId) {
141 void setAdjEdgeIdx(NodeId NId, typename NodeEntry::AdjEdgeIdx NewIdx) {
158 void disconnectFrom(Graph &G, NodeId NId) {
167 NodeId getN1Id() const { return NIds[0];
    [all...]
ReductionRules.h 29 void applyR1(GraphT &G, typename GraphT::NodeId NId) {
30 typedef typename GraphT::NodeId NodeId;
40 NodeId MId = G.getEdgeOtherNodeId(EId, NId);
73 void applyR2(GraphT &G, typename GraphT::NodeId NId) {
74 typedef typename GraphT::NodeId NodeId;
89 NodeId YNId = G.getEdgeOtherNodeId(YXEId, NId),
180 typedef GraphBase::NodeId NodeId;
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
AnchorNode.java 28 public NodeId getNodeId() {
29 return NodeId.anchor;
  /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
  /external/kernel-headers/original/uapi/linux/
dlm_plock.h 35 __s32 nodeid; member in struct:dlm_plock_info
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlComposeTest.java 24 import org.yaml.snakeyaml.nodes.NodeId;
54 assertEquals(NodeId.mapping, node.getNodeId());
56 assertEquals(NodeId.scalar, node.getNodeId());
65 assertEquals(NodeId.scalar, node.getNodeId());
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
dlm_plock.h 33 __s32 nodeid; member in struct:dlm_plock_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
dlm_plock.h 35 __s32 nodeid; member in struct:dlm_plock_info
  /developers/build/prebuilts/gradle/RuntimePermissionsWear/Application/src/main/java/com/example/android/wearable/runtimepermissions/
IncomingRequestPhoneService.java 73 private void promptUserForStoragePermission(String nodeId) {
82 sendMessage(nodeId, dataMap);
97 private void respondWithStorageInformation(String nodeId) {
107 sendMessage(nodeId, dataMap);
135 sendMessage(nodeId, dataMap);
140 private void sendMessage(String nodeId, DataMap dataMap) {
141 Log.d(TAG, "sendMessage() Node: " + nodeId);
152 nodeId,
  /developers/samples/android/wearable/wear/RuntimePermissionsWear/Application/src/main/java/com/example/android/wearable/runtimepermissions/
IncomingRequestPhoneService.java 73 private void promptUserForStoragePermission(String nodeId) {
82 sendMessage(nodeId, dataMap);
97 private void respondWithStorageInformation(String nodeId) {
107 sendMessage(nodeId, dataMap);
135 sendMessage(nodeId, dataMap);
140 private void sendMessage(String nodeId, DataMap dataMap) {
141 Log.d(TAG, "sendMessage() Node: " + nodeId);
152 nodeId,
  /development/samples/browseable/RuntimePermissionsWear/Application/src/com.example.android.wearable.runtimepermissions/
IncomingRequestPhoneService.java 73 private void promptUserForStoragePermission(String nodeId) {
82 sendMessage(nodeId, dataMap);
97 private void respondWithStorageInformation(String nodeId) {
107 sendMessage(nodeId, dataMap);
135 sendMessage(nodeId, dataMap);
140 private void sendMessage(String nodeId, DataMap dataMap) {
141 Log.d(TAG, "sendMessage() Node: " + nodeId);
152 nodeId,

Completed in 369 milliseconds

1 2 3 4 5 6 7 8 91011>>