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

1 2

  /external/droiddriver/src/io/appium/droiddriver/finders/
By.java 35 private static final MatchFinder ANY = new MatchFinder(null);
40 public static MatchFinder any() {
47 public static MatchFinder is(Attribute attribute) {
48 return new MatchFinder(Predicates.attributeTrue(attribute));
54 public static MatchFinder not(Attribute attribute) {
55 return new MatchFinder(Predicates.attributeFalse(attribute));
61 public static MatchFinder resourceId(int resourceId) {
70 public static MatchFinder resourceId(String resourceId) {
71 return new MatchFinder(Predicates.attributeEquals(Attribute.RESOURCE_ID, resourceId))
    [all...]
MatchFinder.java 29 public class MatchFinder implements Finder {
32 public MatchFinder(Predicate<? super UiElement> predicate) {
64 * {@link By#anyOf(MatchFinder...)}.
  /external/clang/include/clang/Tooling/
RefactoringCallbacks.h 19 // MatchFinder Finder;
41 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/v8/tools/clang/blink_gc_plugin/
BadPatternFinder.cpp 25 class UniquePtrGarbageCollectedMatcher : public MatchFinder::MatchCallback {
30 void Register(MatchFinder& match_finder) {
44 void run(const MatchFinder::MatchResult& result) {
55 class OptionalGarbageCollectedMatcher : public MatchFinder::MatchCallback {
60 void Register(MatchFinder& match_finder) {
74 void run(const MatchFinder::MatchResult& result) {
89 MatchFinder match_finder;
  /external/clang/unittests/Analysis/
CFGTest.cpp 31 class CFGCallback : public ast_matchers::MatchFinder::MatchCallback {
35 void run(const ast_matchers::MatchFinder::MatchResult &Result) override {
47 ast_matchers::MatchFinder Finder;
  /external/v8/tools/clang/empty_string/
EmptyStringConverter.cpp 30 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) {
110 void ConstructorCallback::run(const MatchFinder::MatchResult& result) {
124 void InitializerCallback::run(const MatchFinder::MatchResult& result)
    [all...]
  /external/v8/tools/clang/value_cleanup/
ValueRewriter.h 22 void RegisterMatchers(clang::ast_matchers::MatchFinder* match_finder);
26 : public clang::ast_matchers::MatchFinder::MatchCallback {
33 const clang::ast_matchers::MatchFinder::MatchResult& result) override;
ValueRewriter.cpp 20 const MatchFinder::MatchResult& result) {
45 void ValueRewriter::RegisterMatchers(MatchFinder* match_finder) {
ValueCleanup.cpp 43 MatchFinder match_finder;
  /external/clang/unittests/AST/
DeclTest.cpp 22 MatchFinder Finder;
MatchVerifier.h 42 class MatchVerifier : public MatchFinder::MatchCallback {
69 void run(const MatchFinder::MatchResult &Result) override;
70 virtual void verify(const MatchFinder::MatchResult &Result,
93 MatchFinder Finder;
138 MatchFinder Finder;
150 void MatchVerifier<NodeType>::run(const MatchFinder::MatchResult &Result) {
163 const MatchFinder::MatchResult &Result) {
188 void verify(const MatchFinder::MatchResult &Result,
228 void verify(const MatchFinder::MatchResult &Result,
267 void verify(const MatchFinder::MatchResult &Result
    [all...]
NamedDeclPrinterTest.cpp 31 class PrintMatch : public MatchFinder::MatchCallback {
40 void run(const MatchFinder::MatchResult &Result) override {
69 MatchFinder Finder;
StmtPrinterTest.cpp 40 class PrintMatch : public MatchFinder::MatchCallback {
47 void run(const MatchFinder::MatchResult &Result) override {
74 MatchFinder Finder;
  /external/clang/unittests/ASTMatchers/
ASTMatchersInternalTest.cpp 103 TEST(MatchFinder, CheckProfiling) {
104 MatchFinder::MatchFinderOptions Options;
107 MatchFinder Finder(std::move(Options));
109 struct NamedCallback : public MatchFinder::MatchCallback {
110 void run(const MatchFinder::MatchResult &Result) override {}
122 class VerifyStartOfTranslationUnit : public MatchFinder::MatchCallback {
125 void run(const MatchFinder::MatchResult &Result) override {
132 TEST(MatchFinder, InterceptsStartOfTranslationUnit) {
133 MatchFinder Finder;
148 class VerifyEndOfTranslationUnit : public MatchFinder::MatchCallback
    [all...]
ASTMatchersTest.h 38 class VerifyMatch : public MatchFinder::MatchCallback {
43 void run(const MatchFinder::MatchResult &Result) override {
68 MatchFinder Finder;
179 MatchFinder Finder;
231 MatchFinder Finder;
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 22 // class HandleMatch : public MatchFinder::MatchCallback {
24 // virtual void Run(const MatchFinder::MatchResult &Result) {
33 // MatchFinder finder;
55 /// After creation, you can add multiple matchers to the MatchFinder via
64 /// were added to the MatchFinder.
69 class MatchFinder {
73 /// Every time a match is found, the MatchFinder will invoke the registered
96 /// \brief Called on every match by the \c MatchFinder.
138 MatchFinder(MatchFinderOptions Options = MatchFinderOptions());
139 ~MatchFinder();
    [all...]
  /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/v8/tools/clang/pass_to_move/
PassToMove.cpp 31 class RewriterCallback : public MatchFinder::MatchCallback {
35 virtual void run(const MatchFinder::MatchResult& result) override;
41 void RewriterCallback::run(const MatchFinder::MatchResult& result) {
85 MatchFinder match_finder;
  /external/v8/tools/clang/rewrite_scoped_refptr/
RewriteScopedRefptr.cpp 67 const MatchFinder::MatchResult& result,
138 Replacement RewriteRawPtrToScopedRefptr(const MatchFinder::MatchResult& result,
157 class GetRewriterCallback : public MatchFinder::MatchCallback {
161 virtual void run(const MatchFinder::MatchResult& result) override;
167 void GetRewriterCallback::run(const MatchFinder::MatchResult& result) {
175 class VarRewriterCallback : public MatchFinder::MatchCallback {
179 virtual void run(const MatchFinder::MatchResult& result) override;
185 void VarRewriterCallback::run(const MatchFinder::MatchResult& result) {
209 class FunctionRewriterCallback : public MatchFinder::MatchCallback {
213 virtual void run(const MatchFinder::MatchResult& result) override
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 35 typedef MatchFinder::MatchCallback MatchCallback;
296 MatchASTVisitor(const MatchFinder::MatchersByType *Matchers,
297 const MatchFinder::MatchFinderOptions &Options)
700 MatchFinder::MatchCallback* Callback)
705 Callback->run(MatchFinder::MatchResult(BoundNodesView, Context));
710 MatchFinder::MatchCallback* Callback;
734 const MatchFinder::MatchersByType *Matchers;
747 const MatchFinder::MatchFinderOptions &Options;
869 MatchASTConsumer(MatchFinder *Finder,
870 MatchFinder::ParsingDoneTestCallback *ParsingDone
    [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/v8/tools/clang/traffic_annotation_extractor/
traffic_annotation_extractor.cpp 132 class NetworkAnnotationTagCallback : public MatchFinder::MatchCallback {
140 virtual void run(const MatchFinder::MatchResult& result) override {
157 void GetInstanceLocation(const MatchFinder::MatchResult& result,
187 const MatchFinder::MatchResult& result) {
217 const MatchFinder::MatchResult& result) {
229 const MatchFinder::MatchResult& result) {
240 void AddAnnotation(const MatchFinder::MatchResult& result) {
290 MatchFinder match_finder;
  /external/v8/tools/clang/base_bind_rewriters/
BaseBindRewriters.cpp 61 class PassedToMoveRewriter : public MatchFinder::MatchCallback,
77 void run(const MatchFinder::MatchResult& result) override {
144 class BindOnceRewriter : public MatchFinder::MatchCallback, public Rewriter {
168 void run(const MatchFinder::MatchResult& result) override {
192 class PassByValueRewriter : public MatchFinder::MatchCallback, public Rewriter {
205 void run(const MatchFinder::MatchResult& result) override {
242 class AddStdMoveRewriter : public MatchFinder::MatchCallback, public Rewriter {
403 void run(const MatchFinder::MatchResult& result) override {
592 class AdaptCallbackForRepeatingRewriter : public MatchFinder::MatchCallback,
619 void run(const MatchFinder::MatchResult& result) override
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzFindMt.h 89 CMatchFinder *MatchFinder;
  /external/lzma/C/
LzFindMt.h 89 CMatchFinder *MatchFinder;

Completed in 626 milliseconds

1 2