/external/clang/utils/TableGen/ |
ClangCommentHTMLTagsEmitter.cpp | 17 #include "llvm/TableGen/StringMatcher.h" 25 std::vector<StringMatcher::StringPair> Matches; 28 Matches.push_back(StringMatcher::StringPair(Spelling, "return true;")); 34 StringMatcher("Name", Matches, OS).Emit(); 42 std::vector<StringMatcher::StringPair> MatchesEndTagOptional; 43 std::vector<StringMatcher::StringPair> MatchesEndTagForbidden; 46 StringMatcher::StringPair Match(Spelling, "return true;"); 56 StringMatcher("Name", MatchesEndTagOptional, OS).Emit(); 61 StringMatcher("Name", MatchesEndTagForbidden, OS).Emit();
|
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp | 19 #include "llvm/TableGen/StringMatcher.h" 53 std::vector<StringMatcher::StringPair> NameToUTF8; 70 StringMatcher::StringPair Match(Spelling, CLiteral.str()); 79 StringMatcher("Name", NameToUTF8, OS).Emit();
|
ClangCommentCommandInfoEmitter.cpp | 16 #include "llvm/TableGen/StringMatcher.h" 63 std::vector<StringMatcher::StringPair> Matches; 69 Matches.push_back(StringMatcher::StringPair(Name, Return)); 74 StringMatcher("Name", Matches, OS).Emit();
|
ClangAttrEmitter.cpp | 20 #include "llvm/TableGen/StringMatcher.h" [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
strmatch.cpp | 23 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher) 25 StringMatcher::StringMatcher(const UnicodeString& theString, 38 StringMatcher::StringMatcher(const StringMatcher& o) : 53 StringMatcher::~StringMatcher() { 59 UnicodeFunctor* StringMatcher::clone() const { 60 return new StringMatcher(*this) [all...] |
rbt_rule.h | 24 class StringMatcher; 69 StringMatcher *anteContext; 74 StringMatcher *key; 80 StringMatcher *postContext; 101 * StringMatcher. In the future we may generalize this, but for 102 * now we sometimes cast down to StringMatcher. 299 friend class StringMatcher;
|
strmatch.h | 35 * A StringMatcher may represent a segment, in which case it has a 39 * A StringMatcher that is not a segment should not be used as a 42 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer { 58 StringMatcher(const UnicodeString& string, 68 StringMatcher(const StringMatcher& o); 73 virtual ~StringMatcher();
|
rbt_rule.cpp | 119 anteContext = new StringMatcher(pattern, 0, anteContextLength, 130 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength, 142 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(), 181 anteContext = (StringMatcher*) other.anteContext->clone(); 184 key = (StringMatcher*) other.key->clone(); 187 postContext = (StringMatcher*) other.postContext->clone(); 364 ((StringMatcher*) segments[i])->resetMatch();
|
rbt_pars.h | 32 class StringMatcher; 90 * to StringMatcher object segmentObjects.elementAt(0), etc. 95 * Vector of StringMatcher objects for segments. Used during the 98 * to StringMatcher object segmentObjects.elementAt(0), etc. 295 * @param adopted the StringMatcher to be adopted. 297 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
|
rbt_pars.cpp | 536 StringMatcher* m = 537 new StringMatcher(buf, bufSegStart, buf.length(), 673 new StringMatcher(buf, qstart, qlimit, 0, *parser.curData); [all...] |
/external/icu/icu4c/source/i18n/ |
strmatch.cpp | 23 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher) 25 StringMatcher::StringMatcher(const UnicodeString& theString, 38 StringMatcher::StringMatcher(const StringMatcher& o) : 53 StringMatcher::~StringMatcher() { 59 UnicodeFunctor* StringMatcher::clone() const { 60 return new StringMatcher(*this) [all...] |
rbt_rule.h | 24 class StringMatcher; 69 StringMatcher *anteContext; 74 StringMatcher *key; 80 StringMatcher *postContext; 101 * StringMatcher. In the future we may generalize this, but for 102 * now we sometimes cast down to StringMatcher. 299 friend class StringMatcher;
|
strmatch.h | 35 * A StringMatcher may represent a segment, in which case it has a 39 * A StringMatcher that is not a segment should not be used as a 42 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer { 58 StringMatcher(const UnicodeString& string, 68 StringMatcher(const StringMatcher& o); 73 virtual ~StringMatcher();
|
rbt_rule.cpp | 119 anteContext = new StringMatcher(pattern, 0, anteContextLength, 130 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength, 142 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(), 181 anteContext = (StringMatcher*) other.anteContext->clone(); 184 key = (StringMatcher*) other.key->clone(); 187 postContext = (StringMatcher*) other.postContext->clone(); 364 ((StringMatcher*) segments[i])->resetMatch();
|
rbt_pars.h | 32 class StringMatcher; 90 * to StringMatcher object segmentObjects.elementAt(0), etc. 95 * Vector of StringMatcher objects for segments. Used during the 98 * to StringMatcher object segmentObjects.elementAt(0), etc. 295 * @param adopted the StringMatcher to be adopted. 297 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
|
rbt_pars.cpp | 536 StringMatcher* m = 537 new StringMatcher(buf, bufSegStart, buf.length(), 673 new StringMatcher(buf, qstart, qlimit, 0, *parser.curData); [all...] |
/external/llvm/include/llvm/TableGen/ |
StringMatcher.h | 1 //===- StringMatcher.h - Generate a matcher for input strings ---*- C++ -*-===// 10 // This file implements the StringMatcher class. 25 /// StringMatcher - Given a list of strings and code to execute when they match, 31 class StringMatcher { 41 StringMatcher(StringRef strVariableName,
|
/external/llvm/lib/TableGen/ |
Android.mk | 8 StringMatcher.cpp \
|
StringMatcher.cpp | 1 //===- StringMatcher.cpp - Generate a matcher for input strings -----------===// 10 // This file implements the StringMatcher class. 14 #include "llvm/TableGen/StringMatcher.h" 24 StringMatcher::StringPair*> &Matches) { 43 bool StringMatcher:: 124 void StringMatcher::Emit(unsigned Indent) const {
|
/external/llvm/utils/TableGen/ |
IntrinsicEmitter.cpp | 21 #include "llvm/TableGen/StringMatcher.h" 165 std::vector<StringMatcher::StringPair> MatchTable; 185 StringMatcher("NameR", MatchTable, OS).Emit(1); 729 std::vector<StringMatcher::StringPair> Results; 735 Results.push_back(StringMatcher::StringPair(I->first, ResultCode)); 738 StringMatcher("BuiltinName", Results, OS).Emit();
|
AsmMatcherEmitter.cpp | 110 #include "llvm/TableGen/StringMatcher.h" [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
uobjtest.cpp | 426 TESTCLASSID_CTOR(StringMatcher, (UnicodeString("x"), 0,0,0,TransliterationRuleData(status)));
|
/external/icu/icu4c/source/test/intltest/ |
uobjtest.cpp | 426 TESTCLASSID_CTOR(StringMatcher, (UnicodeString("x"), 0,0,0,TransliterationRuleData(status)));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar | |
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar | |