HomeSort by relevance Sort by last modified time
    Searched refs:WildcardPattern (Results 1 - 18 of 18) sorted by null

  /frameworks/compile/mclinker/lib/Script/
WildcardPattern.cpp 1 //===- WildcardPattern.cpp ------------------------------------------------===//
9 #include <mcld/Script/WildcardPattern.h>
17 typedef GCFactory<WildcardPattern,
22 // WildcardPattern
24 WildcardPattern::WildcardPattern()
29 WildcardPattern::WildcardPattern(const std::string& pPattern,
39 WildcardPattern::~WildcardPattern()
    [all...]
InputSectDesc.cpp 10 #include <mcld/Script/WildcardPattern.h>
41 if (m_Spec.file().sortPolicy() == WildcardPattern::SORT_BY_NAME)
62 WildcardPattern* wildcard = llvm::cast<WildcardPattern>(*it);
65 case WildcardPattern::SORT_BY_NAME:
68 case WildcardPattern::SORT_BY_ALIGNMENT:
71 case WildcardPattern::SORT_BY_NAME_ALIGNMENT:
74 case WildcardPattern::SORT_BY_ALIGNMENT_NAME:
83 if (wildcard->sortPolicy() != WildcardPattern::SORT_NONE)
90 if (m_Spec.file().sortPolicy() == WildcardPattern::SORT_BY_NAME
    [all...]
ScriptParser.yy 20 #include <mcld/Script/WildcardPattern.h>
75 WildcardPattern* wildcard;
490 WildcardPattern::create(*$1, WildcardPattern::SORT_NONE);
503 { $$ = WildcardPattern::create(*$1, WildcardPattern::SORT_NONE); }
505 { $$ = WildcardPattern::create(*$3, WildcardPattern::SORT_BY_NAME); }
527 WildcardPattern::create(*$2, WildcardPattern::SORT_NONE))
    [all...]
Android.mk 33 WildcardPattern.cpp
  /frameworks/compile/mclinker/include/mcld/Script/
WildcardPattern.h 1 //===- WildcardPattern.h --------------------------------------------------===//
20 /** \class WildcardPattern
24 class WildcardPattern : public StrToken
37 friend class Chunk<WildcardPattern, MCLD_SYMBOLS_PER_INPUT>;
38 WildcardPattern();
39 WildcardPattern(const std::string& pPattern, SortPolicy pPolicy);
42 ~WildcardPattern();
56 static WildcardPattern* create(const std::string& pPattern,
58 static void destroy(WildcardPattern*& pToken);
InputSectDesc.h 19 class WildcardPattern;
36 const WildcardPattern& file() const {
70 WildcardPattern* m_pWildcardFile;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 83 p = pytree.WildcardPattern([[a] for a in alts], min=1, max=1)
90 p = pytree.WildcardPattern([units], min=1, max=1)
133 pattern = pytree.WildcardPattern([[pattern]], min=min, max=max)
171 return pytree.WildcardPattern([[subpattern]], min=0, max=1)
pytree.py 461 - WildcardPattern matches a sequence of nodes of variable length.
605 if isinstance(item, WildcardPattern):
639 class WildcardPattern(BasePattern):
699 if (self.min <= 1 and isinstance(subpattern, WildcardPattern) and
701 return WildcardPattern(subpattern.content,
refactor.py 67 if isinstance(pat, pytree.WildcardPattern):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 83 p = pytree.WildcardPattern([[a] for a in alts], min=1, max=1)
90 p = pytree.WildcardPattern([units], min=1, max=1)
133 pattern = pytree.WildcardPattern([[pattern]], min=min, max=max)
171 return pytree.WildcardPattern([[subpattern]], min=0, max=1)
pytree.py 461 - WildcardPattern matches a sequence of nodes of variable length.
605 if isinstance(item, WildcardPattern):
639 class WildcardPattern(BasePattern):
699 if (self.min <= 1 and isinstance(subpattern, WildcardPattern) and
701 return WildcardPattern(subpattern.content,
refactor.py 67 if isinstance(pat, pytree.WildcardPattern):
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 11 #include <mcld/Script/WildcardPattern.h>
41 WildcardPattern::create("*", WildcardPattern::SORT_NONE);
46 WildcardPattern::create(pName, WildcardPattern::SORT_NONE));
319 if (matched(llvm::cast<WildcardPattern>(**file), pInputFile)) {
328 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) {
337 bool SectionMap::matched(const WildcardPattern& pPattern,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 246 node = WildcardPattern.new( wildcard_payload )
304 =begin rdoc ANTLR3::AST::Wizard::WildcardPattern
311 class WildcardPattern < Pattern; end
406 if pattern.nil? or pattern.flat_list? or pattern.is_a?( WildcardPattern )
424 unless pattern.is_a? WildcardPattern
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 202 bool matched(const WildcardPattern& pPattern, const std::string& pName) const;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 433 pw = pytree.WildcardPattern([[pn], [pl, pl]], name="pw")
468 pw = pytree.WildcardPattern([[pa, pb, pc], [pd, pe],
486 pytree.WildcardPattern(name="args"),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 433 pw = pytree.WildcardPattern([[pn], [pl, pl]], name="pw")
468 pw = pytree.WildcardPattern([[pa, pb, pc], [pd, pe],
486 pytree.WildcardPattern(name="args"),
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-tree-wizard.rb 131 assert_instance_of( Wizard::WildcardPattern, tree )

Completed in 1090 milliseconds