HomeSort by relevance Sort by last modified time
    Searched refs:Walker (Results 1 - 25 of 29) sorted by null

1 2

  /external/regex-re2/re2/
walker-inl.h 22 template<typename T> class Regexp::Walker {
24 Walker();
25 virtual ~Walker();
95 DISALLOW_EVIL_CONSTRUCTORS(Walker);
98 template<typename T> T Regexp::Walker<T>::PreVisit(Regexp* re,
104 template<typename T> T Regexp::Walker<T>::PostVisit(Regexp* re,
112 template<typename T> T Regexp::Walker<T>::Copy(T arg) {
132 template<typename T> Regexp::Walker<T>::Walker() {
137 template<typename T> Regexp::Walker<T>::~Walker()
    [all...]
mimics_pcre.cc 27 #include "re2/walker-inl.h"
34 // Walker class to compute whether library handles a regexp
37 class PCREWalker : public Regexp::Walker<bool> {
107 // Walker class to compute whether a Regexp can match an empty string.
114 class EmptyStringWalker : public Regexp::Walker<bool> {
prefilter.cc 9 #include "re2/walker-inl.h"
229 class Walker;
487 class Prefilter::Info::Walker : public Regexp::Walker<Prefilter::Info*> {
489 Walker(bool latin1) : latin1_(latin1) {}
503 DISALLOW_EVIL_CONSTRUCTORS(Walker);
512 Prefilter::Info::Walker w(latin1);
523 Prefilter::Info* Prefilter::Info::Walker::ShortVisit(
530 Prefilter::Info* Prefilter::Info::Walker::PostVisit(
tostring.cc 10 #include "re2/walker-inl.h"
27 // Walker to generate string in s_.
31 class ToStringWalker : public Regexp::Walker<int> {
43 string* t_; // The string the walker appends to.
regexp.h 18 // using Regexp::Walker (see walker-inl.h), not recursively, because deeply nested
214 // Walker to implement Simplify.
405 // Helper traversal class, defined fully in walker-inl.h.
406 template<typename T> class Walker;
simplify.cc 11 #include "re2/walker-inl.h"
99 // Walker subclass used by Simplify.
103 class SimplifyWalker : public Regexp::Walker<Regexp*> {
regexp.cc 11 #include "re2/walker-inl.h"
499 typedef int Ignored; // Walker<void> doesn't exist
501 // Walker subclass to count capturing parens in regexp.
502 class NumCapturesWalker : public Regexp::Walker<Ignored> {
529 // Walker class to build map of named capture groups and their indices.
530 class NamedCapturesWalker : public Regexp::Walker<Ignored> {
573 // Walker class to build map from capture group indices to their names.
574 class CaptureNamesWalker : public Regexp::Walker<Ignored> {
618 // No need for a walker: the regexp must be of the form
compile.cc 14 #include "re2/walker-inl.h"
122 class Compiler : public Regexp::Walker<Frag> {
138 // Interface for Regexp::Walker, which helps traverse the Regexp.
857 // but handles (\A(a|b)). Could use the Walker to write a more exact one.
905 // but handles ((a|b)\z). Could use the Walker to write a more exact one.
    [all...]
  /external/regex-re2/re2/testing/
null_walker.cc 7 #include "re2/walker-inl.h"
11 // Null walker. For benchmarking the walker itself.
13 class NullWalker : public Regexp::Walker<bool> {
  /external/valgrind/memcheck/tests/
vcpu_fbench.stdout.exp 1 Ready to begin John Walker's floating point accuracy
  /prebuilts/go/darwin-x86/doc/play/
tree.go 43 // Walker launches Walk in a new goroutine,
45 func Walker(t *Tree) <-chan int {
58 c1, c2 := Walker(t1), Walker(t2)
  /prebuilts/go/linux-x86/doc/play/
tree.go 43 // Walker launches Walk in a new goroutine,
45 func Walker(t *Tree) <-chan int {
58 c1, c2 := Walker(t1), Walker(t2)
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 125 * A code walker for a StackMap attribute.
127 public static class Walker {
131 * Constructs a walker.
133 public Walker(StackMap sm) {
223 static class Copier extends Walker {
294 static class SimpleCopy extends Walker {
381 static class Shifter extends Walker {
476 static class Printer extends Walker {
AnnotationsAttribute.java 306 static class Walker {
309 Walker(byte[] attrInfo) {
408 static class Renamer extends Walker {
454 static class Copier extends Walker {
562 static class Parser extends Walker {
StackMapTable.java 139 * A code walker for a StackMapTable attribute.
141 public static class Walker {
146 * Constructs a walker.
148 * @param smt the StackMapTable that this walker
151 public Walker(StackMapTable smt) {
156 * Constructs a walker.
163 public Walker(byte[] data) {
356 static class SimpleCopy extends Walker {
693 static class Printer extends Walker {
794 static class Shifter extends Walker {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/api/
goapi.go 211 func (w *Walker) export(pkg *types.Package) {
328 type Walker struct {
337 func NewWalker(context *build.Context, root string) *Walker {
338 return &Walker{
346 func (w *Walker) Features() (fs []string) {
356 func (w *Walker) parseFile(dir, file string) (*ast.File, error) {
417 // Importing is a sentinel taking the place in Walker.imported
421 func (w *Walker) Import(name string) (*types.Package, error) {
510 func (w *Walker) pushScope(name string) (popFunc func()) {
533 func (w *Walker) writeType(buf *bytes.Buffer, typ types.Type)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/api/
goapi.go 211 func (w *Walker) export(pkg *types.Package) {
328 type Walker struct {
337 func NewWalker(context *build.Context, root string) *Walker {
338 return &Walker{
346 func (w *Walker) Features() (fs []string) {
356 func (w *Walker) parseFile(dir, file string) (*ast.File, error) {
417 // Importing is a sentinel taking the place in Walker.imported
421 func (w *Walker) Import(name string) (*types.Package, error) {
510 func (w *Walker) pushScope(name string) (popFunc func()) {
533 func (w *Walker) writeType(buf *bytes.Buffer, typ types.Type)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 642 MapRegionCounters Walker(*RegionCounterMap);
644 Walker.TraverseDecl(const_cast<FunctionDecl *>(FD));
646 Walker.TraverseDecl(const_cast<ObjCMethodDecl *>(MD));
648 Walker.TraverseDecl(const_cast<BlockDecl *>(BD));
650 Walker.TraverseDecl(const_cast<CapturedDecl *>(CD));
651 assert(Walker.NextCounter > 0 && "no entry counter mapped for decl");
652 NumRegionCounters = Walker.NextCounter;
653 FunctionHash = Walker.Hash.finalize();
707 ComputeRegionCounts Walker(*StmtCountMap, *this);
709 Walker.VisitFunctionDecl(FD)
    [all...]
CoverageMappingGen.cpp     [all...]
  /build/blueprint/
context_test.go 22 type Walker interface {
121 if module.(Walker).Walk() {
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 359 til::SCFG *buildCFG(CFGWalker &Walker);
498 void printSCFG(CFGWalker &Walker);
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 737 IvarInvalidationCheckerImpl Walker(Mgr, BR, Filter);
738 Walker.visit(D);
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 77 til::SCFG *SExprBuilder::buildCFG(CFGWalker &Walker) {
78 Walker.walk(*this);
    [all...]
  /external/guice/extensions/struts2/lib/
javassist.jar 
  /external/robolectric/v1/lib/main/
javassist-3.14.0-GA.jar 

Completed in 285 milliseconds

1 2