HomeSort by relevance Sort by last modified time
    Searched refs:StringMatcher (Results 26 - 50 of 66) sorted by null

12 3

  /external/proguard/src/proguard/classfile/visitor/
ClassNameFilter.java 37 private final StringMatcher regularExpressionMatcher;
78 public ClassNameFilter(StringMatcher regularExpressionMatcher,
MemberDescriptorFilter.java 36 private final StringMatcher regularExpressionMatcher;
61 public MemberDescriptorFilter(StringMatcher regularExpressionMatcher,
MemberNameFilter.java 36 private final StringMatcher regularExpressionMatcher;
61 public MemberNameFilter(StringMatcher regularExpressionMatcher,
  /external/proguard/src/proguard/util/
ExtensionMatcher.java 24 * This StringMatcher tests whether strings end in a given extension, ignoring
29 public class ExtensionMatcher implements StringMatcher
35 * Creates a new StringMatcher.
44 // Implementations for StringMatcher.
VariableStringMatcher.java 24 * This StringMatcher tests whether strings start with a specified variable
25 * string and then match another given StringMatcher.
29 public class VariableStringMatcher implements StringMatcher
35 private final StringMatcher nextMatcher;
42 StringMatcher nextMatcher)
51 // Implementations for StringMatcher.
  /external/clang/utils/TableGen/
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"
62 std::vector<StringMatcher::StringPair> Matches;
68 Matches.push_back(StringMatcher::StringPair(Name, Return));
73 StringMatcher("Name", Matches, OS).Emit();
  /external/llvm/lib/TableGen/
Android.mk 7 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/chromium_org/third_party/icu/source/i18n/
rbt_rule.cpp 118 anteContext = new StringMatcher(pattern, 0, anteContextLength,
129 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength,
141 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(),
180 anteContext = (StringMatcher*) other.anteContext->clone();
183 key = (StringMatcher*) other.key->clone();
186 postContext = (StringMatcher*) other.postContext->clone();
363 ((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 530 StringMatcher* m =
531 new StringMatcher(buf, bufSegStart, buf.length(),
667 new StringMatcher(buf, qstart, qlimit, 0, *parser.curData);
    [all...]
  /external/icu4c/i18n/
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/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationTypeFilter.java 39 private final StringMatcher regularExpressionMatcher;
  /external/proguard/src/proguard/classfile/util/
WarningPrinter.java 36 private final StringMatcher classFilter;
DynamicMemberReferenceInitializer.java 31 import proguard.util.StringMatcher;
208 private final StringMatcher noteFieldExceptionMatcher;
209 private final StringMatcher noteMethodExceptionMatcher;
292 StringMatcher noteFieldExceptionMatcher,
293 StringMatcher noteMethodExceptionMatcher)
464 StringMatcher noteExceptionMatcher = isField ?
DynamicClassReferenceInitializer.java 30 import proguard.util.StringMatcher;
182 private final StringMatcher noteExceptionMatcher;
228 StringMatcher noteExceptionMatcher)
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeNameFilter.java 27 import proguard.util.StringMatcher;
39 private final StringMatcher stringMatcher;
45 * @param stringMatcher the string matcher that will check the attribute
50 public AttributeNameFilter(StringMatcher stringMatcher,
53 this.stringMatcher = stringMatcher;
343 return stringMatcher.matches(attribute.getAttributeName(clazz));
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 20 #include "llvm/TableGen/StringMatcher.h"
173 std::vector<StringMatcher::StringPair> MatchTable;
193 StringMatcher("NameR", MatchTable, OS).Emit(1);
696 std::vector<StringMatcher::StringPair> Results;
702 Results.push_back(StringMatcher::StringPair(I->first, ResultCode));
705 StringMatcher("BuiltinName", Results, OS).Emit();
AsmMatcherEmitter.cpp 112 #include "llvm/TableGen/StringMatcher.h"
    [all...]
  /external/proguard/src/proguard/
Initializer.java 334 private StringMatcher createClassNoteExceptionMatcher(List noteExceptions)
374 private StringMatcher createClassMemberNoteExceptionMatcher(List noteExceptions,
  /external/proguard/src/proguard/gui/
OptimizationsDialog.java 191 StringMatcher filter = optimizations != null && optimizations.length() > 0 ?
  /external/proguard/src/proguard/obfuscate/
ClassObfuscator.java 53 private final StringMatcher keepPackageNamesMatcher;

Completed in 328 milliseconds

12 3