HomeSort by relevance Sort by last modified time
    Searched defs:walk (Results 76 - 100 of 198) sorted by null

1 2 34 5 6 7 8

  /external/skia/src/pathops/
SkOpEdgeBuilder.cpp 50 if (fUnparseable || !walk()) {
175 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder
SkOpSpan.cpp 165 const SkOpPtT* walk = start; local
166 double min = walk->fT;
169 while ((walk = walk->next()) != start) {
170 if (walk->segment() != segment) {
173 min = SkTMin(min, walk->fT);
174 max = SkTMax(max, walk->fT);
186 const SkOpPtT* walk = start; local
187 while ((walk = walk->next()) != start)
197 const SkOpPtT* walk = start; local
    [all...]
  /external/skqp/src/pathops/
SkOpEdgeBuilder.cpp 50 if (fUnparseable || !walk()) {
175 bool SkOpEdgeBuilder::walk() { function in class:SkOpEdgeBuilder
SkOpSpan.cpp 165 const SkOpPtT* walk = start; local
166 double min = walk->fT;
169 while ((walk = walk->next()) != start) {
170 if (walk->segment() != segment) {
173 min = SkTMin(min, walk->fT);
174 max = SkTMax(max, walk->fT);
186 const SkOpPtT* walk = start; local
187 while ((walk = walk->next()) != start)
197 const SkOpPtT* walk = start; local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
FileTreeWalker.java 46 * FileTreeWalker.Event ev = walker.walk(top);
125 * Events returned by the {@link #walk} and {@link #next} methods.
198 * the walk is following sym links is not. The {@code canUseCached}
318 Event walk(Path file) { method in class:FileTreeWalker
  /prebuilts/gdb/darwin-x86/lib/python2.7/
os.py 209 def walk(top, topdown=True, onerror=None, followlinks=False): function
231 (e.g., via del or slice assignment), and walk will only recurse into the
241 report the error to continue with the walk, or raise the exception
242 to abort the walk. Note that the filename is available as the
245 By default, os.walk does not follow symbolic links to subdirectories on
250 current working directory between resumptions of walk. walk never
258 for root, dirs, files in os.walk('python/Lib/email'):
269 # get a list of the files the directory contains. os.path.walk
294 for x in walk(new_path, topdown, onerror, followlinks)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_parser.py 267 def walk(tree): function in function:RoundtripLegalSyntaxTestCase.test_position
272 for x in walk(elt):
277 terminals = list(walk(st2))
  /prebuilts/gdb/linux-x86/lib/python2.7/
os.py 209 def walk(top, topdown=True, onerror=None, followlinks=False): function
231 (e.g., via del or slice assignment), and walk will only recurse into the
241 report the error to continue with the walk, or raise the exception
242 to abort the walk. Note that the filename is available as the
245 By default, os.walk does not follow symbolic links to subdirectories on
250 current working directory between resumptions of walk. walk never
258 for root, dirs, files in os.walk('python/Lib/email'):
269 # get a list of the files the directory contains. os.path.walk
294 for x in walk(new_path, topdown, onerror, followlinks)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_parser.py 267 def walk(tree): function in function:RoundtripLegalSyntaxTestCase.test_position
272 for x in walk(elt):
277 terminals = list(walk(st2))
  /prebuilts/go/darwin-x86/src/cmd/fix/
fix.go 47 // walk traverses the AST x, calling visit(y) for each node y in the tree but
50 func walk(x interface{}, visit func(interface{})) { func
56 // walkBeforeAfter is like walk but calls before(x) before traversing
401 walk(n, ff)
430 walk(n, ff)
461 walk(n, ff)
536 walk(f, func(n interface{}) {
733 walk(f, func(n interface{}) {
817 walk(f, func(n interface{}) {
  /prebuilts/go/darwin-x86/src/text/template/
exec.go 194 state.walk(value, t.Root)
223 // Walk functions step through the major pieces of the template structure,
225 func (s *state) walk(dot reflect.Value, node parse.Node) { func
239 s.walk(dot, node)
267 s.walk(val, list)
269 s.walk(dot, list)
272 s.walk(dot, elseList)
326 s.walk(elem, r.List)
368 s.walk(dot, r.ElseList)
388 newState.walk(dot, tmpl.Root
    [all...]
  /prebuilts/go/linux-x86/src/cmd/fix/
fix.go 47 // walk traverses the AST x, calling visit(y) for each node y in the tree but
50 func walk(x interface{}, visit func(interface{})) { func
56 // walkBeforeAfter is like walk but calls before(x) before traversing
401 walk(n, ff)
430 walk(n, ff)
461 walk(n, ff)
536 walk(f, func(n interface{}) {
733 walk(f, func(n interface{}) {
817 walk(f, func(n interface{}) {
  /prebuilts/go/linux-x86/src/text/template/
exec.go 194 state.walk(value, t.Root)
223 // Walk functions step through the major pieces of the template structure,
225 func (s *state) walk(dot reflect.Value, node parse.Node) { func
239 s.walk(dot, node)
267 s.walk(val, list)
269 s.walk(dot, list)
272 s.walk(dot, elseList)
326 s.walk(elem, r.List)
368 s.walk(dot, r.ElseList)
388 newState.walk(dot, tmpl.Root
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os.py 209 def walk(top, topdown=True, onerror=None, followlinks=False): function
231 (e.g., via del or slice assignment), and walk will only recurse into the
241 report the error to continue with the walk, or raise the exception
242 to abort the walk. Note that the filename is available as the
245 By default, os.walk does not follow symbolic links to subdirectories on
250 current working directory between resumptions of walk. walk never
258 for root, dirs, files in os.walk('python/Lib/email'):
269 # get a list of the files the directory contains. os.path.walk
294 for x in walk(new_path, topdown, onerror, followlinks)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_parser.py 267 def walk(tree): function in function:RoundtripLegalSyntaxTestCase.test_position
272 for x in walk(elt):
277 terminals = list(walk(st2))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os.py 209 def walk(top, topdown=True, onerror=None, followlinks=False): function
231 (e.g., via del or slice assignment), and walk will only recurse into the
241 report the error to continue with the walk, or raise the exception
242 to abort the walk. Note that the filename is available as the
245 By default, os.walk does not follow symbolic links to subdirectories on
250 current working directory between resumptions of walk. walk never
258 for root, dirs, files in os.walk('python/Lib/email'):
269 # get a list of the files the directory contains. os.path.walk
294 for x in walk(new_path, topdown, onerror, followlinks)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_parser.py 267 def walk(tree): function in function:RoundtripLegalSyntaxTestCase.test_position
272 for x in walk(elt):
277 terminals = list(walk(st2))
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
NodeTest.java 357 e.walk(n -> b.append(n.toString()));
365 e.walk(IntegerLiteralExpr.class, n -> b.append(n.toString()));
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 107 // Start at a root value and walk its use-def chain to mark calls that use the
110 void walk(Value *Root) { function in struct:__anon28121::AllocaDerivedValueTracker
194 Tracker.walk(&Arg);
199 Tracker.walk(AI);
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_image.h 121 * When the walk type is ILO_IMAGE_WALK_LAYER, there is only a slice in each
161 enum ilo_image_walk_type walk; member in struct:ilo_image
280 switch (img->walk) {
294 assert(!"no single stride to walk across slices");
328 switch (img->walk) {
350 assert(!"unknown img walk type");
  /external/python/cpython2/Lib/plat-mac/
bundlebuilder.py 607 def walk(top): function in function:AppBuilder.stripBinaries
613 walk(path)
628 walk(self.bundlepath)
    [all...]
  /external/python/cpython3/Lib/
os.py 277 def walk(top, topdown=True, onerror=None, followlinks=False): function
299 (e.g., via del or slice assignment), and walk will only recurse into the
310 report the error to continue with the walk, or raise the exception
311 to abort the walk. Note that the filename is available as the
314 By default, os.walk does not follow symbolic links to subdirectories on
319 current working directory between resumptions of walk. walk never
327 for root, dirs, files in os.walk('python/Lib/email'):
341 # get a list of the files the directory contains. os.walk
409 yield from walk(new_path, topdown, onerror, followlinks
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
bundlebuilder.py 607 def walk(top): function in function:AppBuilder.stripBinaries
613 walk(path)
628 walk(self.bundlepath)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
walk.go 18 func walk(fn *Node) { func
64 s := fmt.Sprintf("after walk %v", Curfn.Func.Nname.Sym)
371 // walk the whole tree of the body of an
478 Dump("walk-before", n)
496 Dump("walk", n)
1118 // If it was a ODIV/OMOD walk might rewrite it.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
walk.go 18 func walk(fn *Node) { func
64 s := fmt.Sprintf("after walk %v", Curfn.Func.Nname.Sym)
371 // walk the whole tree of the body of an
478 Dump("walk-before", n)
496 Dump("walk", n)
1118 // If it was a ODIV/OMOD walk might rewrite it.
    [all...]

Completed in 501 milliseconds

1 2 34 5 6 7 8