Home
last modified time | relevance | path

Searched refs:MatchFinder (Results 1 – 25 of 33) sorted by relevance

12

/external/droiddriver/src/io/appium/droiddriver/finders/
DBy.java35 private static final MatchFinder ANY = new MatchFinder(null);
40 public static MatchFinder any() { in any()
47 public static MatchFinder is(Attribute attribute) { in is()
48 return new MatchFinder(Predicates.attributeTrue(attribute)); in is()
54 public static MatchFinder not(Attribute attribute) { in not()
55 return new MatchFinder(Predicates.attributeFalse(attribute)); in not()
61 public static MatchFinder resourceId(int resourceId) { in resourceId()
70 public static MatchFinder resourceId(String resourceId) { in resourceId()
71 return new MatchFinder(Predicates.attributeEquals(Attribute.RESOURCE_ID, resourceId)); in resourceId()
77 public static MatchFinder packageName(String name) { in packageName()
[all …]
DMatchFinder.java29 public class MatchFinder implements Finder { class
32 public MatchFinder(Predicate<? super UiElement> predicate) { in MatchFinder() method in MatchFinder
/external/v8/tools/clang/value_cleanup/
DListValueRewriter.h22 void RegisterMatchers(clang::ast_matchers::MatchFinder* match_finder);
26 : public clang::ast_matchers::MatchFinder::MatchCallback {
32 const clang::ast_matchers::MatchFinder::MatchResult& result) override;
44 const clang::ast_matchers::MatchFinder::MatchResult& result) override;
53 const clang::ast_matchers::MatchFinder::MatchResult& result) override;
62 const clang::ast_matchers::MatchFinder::MatchResult& result) override;
71 const clang::ast_matchers::MatchFinder::MatchResult& result) override;
75 : public clang::ast_matchers::MatchFinder::MatchCallback {
81 const clang::ast_matchers::MatchFinder::MatchResult& result) override;
88 : public clang::ast_matchers::MatchFinder::MatchCallback {
[all …]
DListValueRewriter.cpp159 const MatchFinder::MatchResult& result) { in run()
181 const MatchFinder::MatchResult& result) { in run()
197 const MatchFinder::MatchResult& result) { in run()
213 const MatchFinder::MatchResult& result) { in run()
229 const MatchFinder::MatchResult& result) { in run()
246 const MatchFinder::MatchResult& result) { in run()
273 const MatchFinder::MatchResult& result) { in run()
349 void ListValueRewriter::RegisterMatchers(MatchFinder* match_finder) { in RegisterMatchers()
DValueCleanup.cpp43 MatchFinder match_finder; in main()
/external/v8/tools/clang/empty_string/
DEmptyStringConverter.cpp30 class ConstructorCallback : public MatchFinder::MatchCallback {
35 virtual void run(const MatchFinder::MatchResult& result) override;
43 class InitializerCallback : public MatchFinder::MatchCallback {
48 virtual void run(const MatchFinder::MatchResult& result) override;
57 class TemporaryCallback : public MatchFinder::MatchCallback {
61 virtual void run(const MatchFinder::MatchResult& result) override;
74 void SetupMatchers(MatchFinder* match_finder);
82 void EmptyStringConverter::SetupMatchers(MatchFinder* match_finder) { in SetupMatchers()
110 void ConstructorCallback::run(const MatchFinder::MatchResult& result) { in run()
124 void InitializerCallback::run(const MatchFinder::MatchResult& result) { in run()
[all …]
/external/clang/unittests/ASTMatchers/
DASTMatchersInternalTest.cpp103 TEST(MatchFinder, CheckProfiling) { in TEST() argument
104 MatchFinder::MatchFinderOptions Options; in TEST()
107 MatchFinder Finder(std::move(Options)); in TEST()
109 struct NamedCallback : public MatchFinder::MatchCallback { in TEST()
110 void run(const MatchFinder::MatchResult &Result) override {} in TEST()
122 class VerifyStartOfTranslationUnit : public MatchFinder::MatchCallback {
125 void run(const MatchFinder::MatchResult &Result) override { in run()
132 TEST(MatchFinder, InterceptsStartOfTranslationUnit) { in TEST() argument
133 MatchFinder Finder; in TEST()
148 class VerifyEndOfTranslationUnit : public MatchFinder::MatchCallback {
[all …]
DASTMatchersTest.h38 class VerifyMatch : public MatchFinder::MatchCallback {
43 void run(const MatchFinder::MatchResult &Result) override { in run()
68 MatchFinder Finder;
179 MatchFinder Finder; in matchesConditionallyWithCuda()
231 MatchFinder Finder; in matchAndVerifyResultConditionally()
/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp35 typedef MatchFinder::MatchCallback MatchCallback;
296 MatchASTVisitor(const MatchFinder::MatchersByType *Matchers, in MatchASTVisitor()
297 const MatchFinder::MatchFinderOptions &Options) in MatchASTVisitor()
700 MatchFinder::MatchCallback* Callback) in MatchVisitor()
705 Callback->run(MatchFinder::MatchResult(BoundNodesView, Context)); in visitMatch()
710 MatchFinder::MatchCallback* Callback;
734 const MatchFinder::MatchersByType *Matchers;
747 const MatchFinder::MatchFinderOptions &Options;
869 MatchASTConsumer(MatchFinder *Finder, in MatchASTConsumer()
870 MatchFinder::ParsingDoneTestCallback *ParsingDone) in MatchASTConsumer()
[all …]
/external/v8/tools/clang/rewrite_scoped_refptr/
DRewriteScopedRefptr.cpp67 const MatchFinder::MatchResult& result, in RewriteImplicitToExplicitConversion()
138 Replacement RewriteRawPtrToScopedRefptr(const MatchFinder::MatchResult& result, in RewriteRawPtrToScopedRefptr()
157 class GetRewriterCallback : public MatchFinder::MatchCallback {
161 virtual void run(const MatchFinder::MatchResult& result) override;
167 void GetRewriterCallback::run(const MatchFinder::MatchResult& result) { in run()
175 class VarRewriterCallback : public MatchFinder::MatchCallback {
179 virtual void run(const MatchFinder::MatchResult& result) override;
185 void VarRewriterCallback::run(const MatchFinder::MatchResult& result) { in run()
209 class FunctionRewriterCallback : public MatchFinder::MatchCallback {
213 virtual void run(const MatchFinder::MatchResult& result) override;
[all …]
/external/clang/unittests/AST/
DMatchVerifier.h42 class MatchVerifier : public MatchFinder::MatchCallback {
69 void run(const MatchFinder::MatchResult &Result) override;
70 virtual void verify(const MatchFinder::MatchResult &Result, in verify()
93 MatchFinder Finder; in match()
138 MatchFinder Finder; in match()
150 void MatchVerifier<NodeType>::run(const MatchFinder::MatchResult &Result) { in run()
163 const MatchFinder::MatchResult &Result) { in run()
188 void verify(const MatchFinder::MatchResult &Result, in verify()
228 void verify(const MatchFinder::MatchResult &Result, in verify()
267 void verify(const MatchFinder::MatchResult &Result, in verify()
[all …]
DNamedDeclPrinterTest.cpp31 class PrintMatch : public MatchFinder::MatchCallback {
40 void run(const MatchFinder::MatchResult &Result) override { in run()
69 MatchFinder Finder; in PrintedNamedDeclMatches()
DStmtPrinterTest.cpp40 class PrintMatch : public MatchFinder::MatchCallback {
47 void run(const MatchFinder::MatchResult &Result) override { in run()
74 MatchFinder Finder; in PrintedStmtMatches()
DDeclTest.cpp22 MatchFinder Finder; in TEST()
/external/clang/include/clang/ASTMatchers/
DASTMatchFinder.h69 class MatchFinder {
138 MatchFinder(MatchFinderOptions Options = MatchFinderOptions());
139 ~MatchFinder();
270 class CollectMatchesCallback : public MatchFinder::MatchCallback {
272 void run(const MatchFinder::MatchResult &Result) override { in run()
284 MatchFinder Finder; in match()
300 MatchFinder Finder; in match()
/external/clang/include/clang/Tooling/
DRefactoringCallbacks.h41 class RefactoringCallback : public ast_matchers::MatchFinder::MatchCallback {
55 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
67 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
80 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
/external/lzma/Java/SevenZip/
DLzmaAlone.java27 public int MatchFinder = 1; field in LzmaAlone.CommandLine
58 MatchFinder = 0; in ParseSwitch()
60 MatchFinder = 1; in ParseSwitch()
62 MatchFinder = 2; in ParseSwitch()
186 if (params.MatchFinder > 1) in main()
210 if (!encoder.SetMatchFinder(params.MatchFinder)) in main()
/external/clang/unittests/Analysis/
DCFGTest.cpp31 class CFGCallback : public ast_matchers::MatchFinder::MatchCallback { in TEST()
35 void run(const ast_matchers::MatchFinder::MatchResult &Result) override { in TEST()
47 ast_matchers::MatchFinder Finder; in TEST()
/external/v8/tools/clang/pass_to_move/
DPassToMove.cpp31 class RewriterCallback : public MatchFinder::MatchCallback {
35 virtual void run(const MatchFinder::MatchResult& result) override;
41 void RewriterCallback::run(const MatchFinder::MatchResult& result) { in run()
85 MatchFinder match_finder; in main()
/external/clang/lib/Tooling/
DRefactoringCallbacks.cpp41 const ast_matchers::MatchFinder::MatchResult &Result) { in run()
54 const ast_matchers::MatchFinder::MatchResult &Result) { in run()
67 const ast_matchers::MatchFinder::MatchResult &Result) { in run()
/external/v8/tools/clang/base_bind_rewriters/
DBaseBindRewriters.cpp42 class ScopedRefptrGetRewriter : public MatchFinder::MatchCallback {
59 void run(const MatchFinder::MatchResult& result) override { in run()
87 MatchFinder match_finder; in main()
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaAlone.cs72 MatchFinder, enumerator
181 if (parser[(int)Key.MatchFinder].ThereIs) in Main2()
182 mf = (string)parser[(int)Key.MatchFinder].PostStrings[0]; in Main2()
280 CoderPropID.MatchFinder, in Main2()
/external/v8/tools/clang/rewrite_to_chrome_style/
DRewriteToChromeStyle.cpp875 class RewriterBase : public MatchFinder::MatchCallback {
880 const TargetNode& GetTargetNode(const MatchFinder::MatchResult& result) { in GetTargetNode()
887 bool GenerateReplacement(const MatchFinder::MatchResult& result, in GenerateReplacement()
942 const MatchFinder::MatchResult& result) { in GetTargetLoc()
946 void AddReplacement(const MatchFinder::MatchResult& result, in AddReplacement()
979 void run(const MatchFinder::MatchResult& result) override { in run()
1050 const MatchFinder::MatchResult& result) override { in GetTargetLoc()
1162 void run(const MatchFinder::MatchResult& result) override { in run()
1282 MatchFinder match_finder; in main()
/external/lzma/CS/7zip/
DICoder.cs119 MatchFinder, enumerator
/external/lzma/C/
DLzFindMt.c170 CMatchFinder *mf = mt->MatchFinder; in HashThreadFunc()
477 CMatchFinder *mf = p->MatchFinder; in MatchFinderMt_Create()
501 CMatchFinder *mf = p->MatchFinder; in MatchFinderMt_Init()
776 switch (p->MatchFinder->numHashBytes)
791 p->GetHeadsFunc = p->MatchFinder->bigHash ? GetHeads4b : GetHeads4;

12