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

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PVisitedNetworkIDHeader.java 40 * P-Visited-Network-ID SIP Private Header: RFC 3455.
45 * particular visited network, is the existence of a roaming agreement between the home and
46 * the visited network. There is a need to indicate to the home network which one is the visited
50 * one or more proxies located in the visited network towards the home network
52 * . the visited network includes an identification that is known at the home network
57 * (e.g., different visited networks), a SIP proxy MAY insert a NEW P-Visited-Network-ID header
58 * if the request does not contain a P-Visited-Network-ID header with the same network
65 * P-Visited-Network-ID = "P-Visited-Network-ID" HCOLO
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
typestring.go 77 func writeType(buf *bytes.Buffer, typ Type, qf Qualifier, visited []Type) {
82 for _, t := range visited {
88 visited = append(visited, typ)
111 writeType(buf, t.elem, qf, visited)
115 writeType(buf, t.elem, qf, visited)
127 writeType(buf, f.typ, qf, visited)
136 writeType(buf, t.base, qf, visited)
139 writeTuple(buf, t, false, qf, visited)
143 writeSignature(buf, t, qf, visited)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
typestring.go 77 func writeType(buf *bytes.Buffer, typ Type, qf Qualifier, visited []Type) {
82 for _, t := range visited {
88 visited = append(visited, typ)
111 writeType(buf, t.elem, qf, visited)
115 writeType(buf, t.elem, qf, visited)
127 writeType(buf, f.typ, qf, visited)
136 writeType(buf, t.base, qf, visited)
139 writeTuple(buf, t, false, qf, visited)
143 writeSignature(buf, t, qf, visited)
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/docs/_static/
paste.css 6 a.invisible-link:visited {
  /external/skia/tools/skp/page_sets/other/
OLD-skia_galaxynexus_set.json 10 "why": "#6 (Alexa) most visited worldwide; from robertphillips"
  /external/eigen/Eigen/src/MetisSupport/
MetisSupport.h 37 IndexVector visited(m);
38 visited.setConstant(-1);
42 visited(j) = j; // Do not include the diagonal element
47 if (visited(idx) != j )
49 visited(idx) = j;
57 if(visited(idx) != j)
59 visited(idx) = j;
69 visited.setConstant(-1);
75 visited(j) = j; // Do not include the diagonal element
80 if (visited(idx) != j )
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Graph.java 82 Set<Node> visited = new OrderedHashSet<Node>(); local
84 while ( visited.size() < nodes.size() ) {
89 if ( !visited.contains(n) ) break;
91 DFS(n, visited, sorted);
96 public void DFS(Node n, Set<Node> visited, ArrayList<Object> sorted) {
97 if ( visited.contains(n) ) return;
98 visited.add(n);
102 DFS(target, visited, sorted);
  /external/proguard/src/proguard/classfile/visitor/
ClassHierarchyTraveler.java 28 * optionally travel to the visited class, its superclass, its interfaces, and
45 * @param visitThisClass specifies whether to visit the originally visited
48 * the visited classes.
50 * the visited classes.
52 * the visited classes.
ClassCounter.java 26 * This ClassVisitor counts the number of classes that has been visited.
36 * Returns the number of classes that has been visited so far.
ExceptionCounter.java 28 * This ExceptionInfoVisitor counts the number of exceptions that has been visited.
38 * Returns the number of exceptions that has been visited so far.
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
support.py 139 self.visited = []
142 self.visited.append('startDocument')
145 self.visited.append('endDocument')
156 self.visited.append(('startElement', name, attrs))
159 self.visited.append(('endElement', name))
162 self.visited.append(('startElementNS', name, qname, dict(attrs)))
165 self.visited.append(('endElementNS', name, qname))
168 self.visited.append(('characters', content))
171 self.visited.append(('ignorableWhitespace', whitespace))
174 self.visited.append(('processingInstruction', target, data)
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
deepequal.go 12 // Visited comparisons are stored in a map indexed by visit.
22 func deepValueEqual(v1, v2 Value, visited map[visit]bool, depth int) bool {
43 // Canonicalize order to reduce number of entries in visited.
55 if visited[v] {
60 visited[v] = true
66 if !deepValueEqual(v1.Index(i), v2.Index(i), visited, depth+1) {
82 if !deepValueEqual(v1.Index(i), v2.Index(i), visited, depth+1) {
91 return deepValueEqual(v1.Elem(), v2.Elem(), visited, depth+1)
93 return deepValueEqual(v1.Elem(), v2.Elem(), visited, depth+1)
96 if !deepValueEqual(v1.Field(i), v2.Field(i), visited, depth+1)
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
deepequal.go 12 // Visited comparisons are stored in a map indexed by visit.
22 func deepValueEqual(v1, v2 Value, visited map[visit]bool, depth int) bool {
43 // Canonicalize order to reduce number of entries in visited.
55 if visited[v] {
60 visited[v] = true
66 if !deepValueEqual(v1.Index(i), v2.Index(i), visited, depth+1) {
82 if !deepValueEqual(v1.Index(i), v2.Index(i), visited, depth+1) {
91 return deepValueEqual(v1.Elem(), v2.Elem(), visited, depth+1)
93 return deepValueEqual(v1.Elem(), v2.Elem(), visited, depth+1)
96 if !deepValueEqual(v1.Field(i), v2.Field(i), visited, depth+1)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
GraphUtil.py 98 Returns (visited, removes, orphans).
100 * visited: the set of visited nodes
110 visited, removes, orphans = set([head]), set(), set()
130 if tail not in visited:
131 visited.add(tail)
137 return visited, removes, orphans
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactAggregatorHelper.java 97 Set<Long> visited = new HashSet<>(); local
99 if (!visited.contains(id)) {
101 findConnectedComponentForRawContact(matchingRawIdPairs, visited, id, set);
109 Set<Long> visited, Long rawContactId, Set<Long> results) {
110 visited.add(rawContactId);
113 if (!visited.contains(match)) {
114 findConnectedComponentForRawContact(connections, visited, match, results);
  /external/guava/guava/src/com/google/common/reflect/
TypeVisitor.java 53 * <p>One {@code Type} is visited at most once. The second time the same type is visited, it's
63 private final Set<Type> visited = Sets.newHashSet(); field in class:TypeVisitor
71 if (type == null || !visited.add(type)) {
72 // null owner type, or already visited;
93 visited.remove(type);
  /external/v8/test/cctest/
test-global-handles.cc 80 visited.Add(*o);
83 List<Object*> visited; member in class:TestObjectVisitor
130 // Nothing was visited.
131 CHECK(visitor.visited.length() == 0);
139 // The first grough should still be visited, since only one object is
154 // The first group was visited.
155 CHECK(visitor.visited.length() == 2);
156 CHECK(visitor.visited.Contains(*g1s1.location()));
157 CHECK(visitor.visited.Contains(*g1s2.location()));
173 // The second group was visited
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectVisitor.java 39 * @return {@link Traversal#EXPLORE} to denote that the visited object
57 * The visited object should be further explored.
62 * The visited object should not be explored.
  /external/clang/www/
menu.css 37 #menu a:visited {
  /external/compiler-rt/www/
menu.css 37 #menu a:visited {
  /external/libcxx/www/
menu.css 37 #menu a:visited {
  /external/libcxxabi/www/
menu.css 37 #menu a:visited {
  /external/v8/src/compiler/
select-lowering.cc 68 BoolVector visited(graph()->NodeCount(), false, &zone);
70 visited[source->id()] = true;
76 if (!visited[input->id()]) {
78 visited[input->id()] = true;
  /art/runtime/gc/accounting/
space_bitmap.cc 188 void SpaceBitmap<kAlignment>::WalkInstanceFields(SpaceBitmap<kAlignment>* visited,
195 WalkInstanceFields(visited, callback, obj, super, arg);
202 WalkFieldsInOrder(visited, callback, value, arg);
209 void SpaceBitmap<kAlignment>::WalkFieldsInOrder(SpaceBitmap<kAlignment>* visited,
212 if (visited->Test(obj)) {
217 visited->Set(obj);
220 WalkInstanceFields(visited, callback, obj, klass, arg);
227 WalkFieldsInOrder(visited, callback, value, arg);
238 WalkFieldsInOrder(visited, callback, value, arg);
246 std::unique_ptr<SpaceBitmap<kAlignment>> visited(
    [all...]
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionCounter.java 29 * This InstructionVisitor counts the number of instructions that has been visited.
41 * Returns the number of instructions that has been visited so far.

Completed in 3324 milliseconds

1 2 3 4 5 6 7 8 91011>>