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

1 2

  /external/clang/include/clang/Tooling/
RefactoringCallbacks.h 19 // MatchFinder Finder;
41 class RefactoringCallback : public ast_matchers::MatchFinder::MatchCallback {
55 virtual void run(const ast_matchers::MatchFinder::MatchResult &Result);
67 virtual void run(const ast_matchers::MatchFinder::MatchResult &Result);
80 virtual void run(const ast_matchers::MatchFinder::MatchResult &Result);
  /external/droiddriver/src/com/google/android/droiddriver/finders/
By.java 184 * preferred, which can combine with other {@link MatchFinder}s in
235 public static MatchFinder allOf(final MatchFinder... finders) {
236 return new MatchFinder() {
239 for (MatchFinder finder : finders) {
262 public static MatchFinder anyOf(final MatchFinder... finders) {
263 return new MatchFinder() {
266 for (MatchFinder finder : finders) {
285 public static MatchFinder withParent(final MatchFinder parentFinder)
    [all...]
ByAttribute.java 25 public class ByAttribute<T> extends MatchFinder {
MatchFinder.java 29 public abstract class MatchFinder implements Finder {
  /external/clang/unittests/AST/
DeclTest.cpp 22 MatchFinder Finder;
MatchVerifier.h 32 class MatchVerifier : public MatchFinder::MatchCallback {
56 virtual void run(const MatchFinder::MatchResult &Result);
57 virtual void verify(const MatchFinder::MatchResult &Result,
80 MatchFinder Finder;
117 void MatchVerifier<NodeType>::run(const MatchFinder::MatchResult &Result) {
141 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) {
180 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) {
StmtPrinterTest.cpp 39 class PrintMatch : public MatchFinder::MatchCallback {
46 virtual void run(const MatchFinder::MatchResult &Result) {
74 MatchFinder Finder;
DeclPrinterTest.cpp 40 class PrintMatch : public MatchFinder::MatchCallback {
47 virtual void run(const MatchFinder::MatchResult &Result) {
75 MatchFinder Finder;
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 22 // class HandleMatch : public MatchFinder::MatchCallback {
24 // virtual void Run(const MatchFinder::MatchResult &Result) {
33 // MatchFinder finder;
52 /// After creation, you can add multiple matchers to the MatchFinder via
61 /// were added to the MatchFinder.
66 class MatchFinder {
70 /// Every time a match is found, the MatchFinder will invoke the registered
93 /// \brief Called on every match by the \c MatchFinder.
114 MatchFinder();
115 ~MatchFinder();
    [all...]
  /external/chromium_org/tools/clang/empty_string/
EmptyStringConverter.cpp 19 using clang::ast_matchers::MatchFinder;
46 class ConstructorCallback : public MatchFinder::MatchCallback {
51 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
59 class InitializerCallback : public MatchFinder::MatchCallback {
64 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
73 class TemporaryCallback : public MatchFinder::MatchCallback {
77 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
90 void SetupMatchers(MatchFinder* match_finder);
98 void EmptyStringConverter::SetupMatchers(MatchFinder* match_finder) {
121 void ConstructorCallback::run(const MatchFinder::MatchResult& result)
    [all...]
  /external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/
RewriteScopedPtrCtorNull.cpp 19 using clang::ast_matchers::MatchFinder;
53 class ConstructorCallback : public MatchFinder::MatchCallback {
58 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
66 class InitializerCallback : public MatchFinder::MatchCallback {
71 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
79 class TemporaryCallback : public MatchFinder::MatchCallback {
83 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
96 void SetupMatchers(MatchFinder* match_finder);
104 void EmptyStringConverter::SetupMatchers(MatchFinder* match_finder) {
123 void ConstructorCallback::run(const MatchFinder::MatchResult& result)
    [all...]
  /external/chromium_org/tools/clang/rewrite_scoped_array/
RewriteScopedArray.cpp 20 using clang::ast_matchers::MatchFinder;
34 class RewriterCallback : public MatchFinder::MatchCallback {
37 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
43 void RewriterCallback::run(const MatchFinder::MatchResult& result) {
75 MatchFinder match_finder;
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 41 const ast_matchers::MatchFinder::MatchResult &Result) {
54 const ast_matchers::MatchFinder::MatchResult &Result) {
67 const ast_matchers::MatchFinder::MatchResult &Result) {
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 34 class VerifyMatch : public MatchFinder::MatchCallback {
39 virtual void run(const MatchFinder::MatchResult &Result) {
58 MatchFinder Finder;
94 MatchFinder Finder;
ASTMatchersTest.cpp     [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 31 typedef MatchFinder::MatchCallback MatchCallback;
573 MatchFinder::MatchCallback* Callback)
578 Callback->run(MatchFinder::MatchResult(BoundNodesView, Context));
583 MatchFinder::MatchCallback* Callback;
748 MatchFinder::ParsingDoneTestCallback *ParsingDone)
765 MatchFinder::ParsingDoneTestCallback *ParsingDone;
771 MatchFinder::MatchResult::MatchResult(const BoundNodes &Nodes,
776 MatchFinder::MatchCallback::~MatchCallback() {}
777 MatchFinder::ParsingDoneTestCallback::~ParsingDoneTestCallback() {}
779 MatchFinder::MatchFinder() : ParsingDone(NULL) {
    [all...]
  /external/lzma/Java/SevenZip/
LzmaAlone.java 27 public int MatchFinder = 1;
58 MatchFinder = 0;
60 MatchFinder = 1;
62 MatchFinder = 2;
186 if (params.MatchFinder > 1)
210 if (!encoder.SetMatchFinder(params.MatchFinder))
  /external/lzma/C/
LzFindMt.h 91 CMatchFinder *MatchFinder;
LzFindMt.c 168 CMatchFinder *mf = mt->MatchFinder;
468 CMatchFinder *mf = p->MatchFinder;
492 CMatchFinder *mf = p->MatchFinder;
518 /* p->MatchFinder->ReleaseStream(); */
765 switch(p->MatchFinder->numHashBytes)
780 p->GetHeadsFunc = p->MatchFinder->bigHash ? GetHeads4b : GetHeads4;
  /external/clang/unittests/Tooling/
RefactoringCallbacksTest.cpp 26 MatchFinder Finder;
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 72 MatchFinder,
181 if (parser[(int)Key.MatchFinder].ThereIs)
182 mf = (string)parser[(int)Key.MatchFinder].PostStrings[0];
280 CoderPropID.MatchFinder,
  /external/lzma/CS/7zip/
ICoder.cs 119 MatchFinder,
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs     [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 259 IMatchFinder matchFinder;
812 p->matchFinder.Skip(p->matchFinderObj, num);
819 p->numAvail = p->matchFinder.GetNumAvailableBytes(p->matchFinderObj);
820 numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches);
835 const Byte *pby = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
964 data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
1217 data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 260 IMatchFinder matchFinder;
813 p->matchFinder.Skip(p->matchFinderObj, num);
820 p->numAvail = p->matchFinder.GetNumAvailableBytes(p->matchFinderObj);
821 numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches);
836 const Byte *pby = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
965 data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
1218 data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
    [all...]

Completed in 684 milliseconds

1 2