Searched refs:toId (Results 1 – 6 of 6) sorted by relevance
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
D | Edge.java | 29 private final NodeId toId; field in Edge 31 protected Edge(NodeId fromId, NodeId toId) { in Edge() argument 33 this.toId = toId; in Edge() 41 return toId; in getToId() 49 return Objects.equal(fromId, other.fromId) && Objects.equal(toId, other.toId); in equals() 53 return Objects.hashCode(fromId, toId); in hashCode() 63 public abstract Edge copy(NodeId fromId, NodeId toId); in copy() argument
|
D | Alias.java | 28 private final NodeId toId; field in Alias 30 public Alias(NodeId fromId, NodeId toId) { in Alias() argument 32 this.toId = toId; in Alias() 40 return toId; in getToId()
|
D | BindingEdge.java | 42 public BindingEdge(NodeId fromId, NodeId toId, Type type) { in BindingEdge() argument 43 super(fromId, toId); in BindingEdge() 67 @Override public Edge copy(NodeId fromId, NodeId toId) { in copy() argument 68 return new BindingEdge(fromId, toId, type); in copy()
|
D | DependencyEdge.java | 36 public DependencyEdge(NodeId fromId, NodeId toId, InjectionPoint injectionPoint) { in DependencyEdge() argument 37 super(fromId, toId); in DependencyEdge() 62 @Override public Edge copy(NodeId fromId, NodeId toId) { in copy() argument 63 return new DependencyEdge(fromId, toId, injectionPoint); in copy()
|
/external/clang/test/SemaObjCXX/ |
D | objc-container-subscripting.mm | 65 ConvertibleTo<id> toId, 75 …toArrayExplicit[2] = toId; // expected-error {{type 'ExplicitlyConvertibleTo<NSMutableArray *>' do… 82 ConvertibleTo<id> toId, 90 Dict[toId] = toBlock; 94 Dict[toBlock] = Dict[toId] = Dict[toBlock]; 96 …Id = toDictExplicit[toId] = Id; // expected-error {{no viable overloaded operator[] for type 'Expl…
|
D | literals.mm | 83 ConvertibleTo<id> toId, 89 toId,
|