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

1 2 3 4 5 6

  /external/chromium_org/third_party/re2/re2/testing/
exhaustive1_test.cc 16 vector<string> ops = Split(" ",
28 vector<string> ops = Split(" ",
32 ExhaustiveTest(3, 2, Split(" ", "a (a) b"), ops,
37 ExhaustiveTest(4, 3, Split(" ", "a (a)"), ops,
exhaustive2_test.cc 17 ExhaustiveTest(2, 2, Split(" ", "(?:) a"),
19 5, Split("", "ab"), "", "");
36 ExhaustiveTest(2, 2, Split(" ", "(?:^) (?:$) . a \\n (?:\\A) (?:\\z)"),
64 // ExhaustiveTest(1, 1, Split(" ", "\\n . a [^a]"),
exhaustive3_test.cc 14 vector<string> atoms = Split(" ",
22 vector<string> atoms = Split(" ",
67 vector<string> atoms = Split(" ",
80 vector<string> atoms = Split(" ",
random_test.cc 60 RandomTest(5, 5, Split(" ", "a (b) ."), RegexpGenerator::EgrepOps(),
68 RandomTest(10, 10, Split(" ", "a (b) ."), RegexpGenerator::EgrepOps(),
78 vector<string> ops = Split(" ",
86 vector<string> atoms = Split(" ",
  /external/regex-re2/re2/testing/
exhaustive1_test.cc 16 vector<string> ops = Split(" ",
28 vector<string> ops = Split(" ",
32 ExhaustiveTest(3, 2, Split(" ", "a (a) b"), ops,
37 ExhaustiveTest(4, 3, Split(" ", "a (a)"), ops,
exhaustive2_test.cc 17 ExhaustiveTest(2, 2, Split(" ", "(?:) a"),
19 5, Split("", "ab"), "", "");
36 ExhaustiveTest(2, 2, Split(" ", "(?:^) (?:$) . a \\n (?:\\A) (?:\\z)"),
64 // ExhaustiveTest(1, 1, Split(" ", "\\n . a [^a]"),
exhaustive3_test.cc 14 vector<string> atoms = Split(" ",
22 vector<string> atoms = Split(" ",
67 vector<string> atoms = Split(" ",
80 vector<string> atoms = Split(" ",
random_test.cc 60 RandomTest(5, 5, Split(" ", "a (b) ."), RegexpGenerator::EgrepOps(),
68 RandomTest(10, 10, Split(" ", "a (b) ."), RegexpGenerator::EgrepOps(),
78 vector<string> ops = Split(" ",
86 vector<string> atoms = Split(" ",
  /external/clang/lib/Format/
BreakableToken.h 36 /// \brief Contains starting character index and length of split.
37 typedef std::pair<StringRef::size_type, unsigned> Split;
57 virtual Split getSplit(unsigned LineIndex, unsigned TailOffset,
60 /// \brief Emits the previously retrieved \p Split via \p Whitespaces.
61 virtual void insertBreak(unsigned LineIndex, unsigned TailOffset, Split Split,
64 /// \brief Replaces the whitespace range described by \p Split with a single
67 Split Split,
125 Split getSplit(unsigned LineIndex, unsigned TailOffset
    [all...]
BreakableToken.cpp 42 static BreakableToken::Split getCommentSplit(StringRef Text,
48 return BreakableToken::Split(StringRef::npos, 0);
71 // If the comment is only whitespace, we cannot split.
72 return BreakableToken::Split(StringRef::npos, 0);
79 return BreakableToken::Split(BeforeCut.size(),
82 return BreakableToken::Split(StringRef::npos, 0);
85 static BreakableToken::Split
90 return BreakableToken::Split(StringRef::npos, 0);
92 return BreakableToken::Split(StringRef::npos, 0);
124 return BreakableToken::Split(SpaceOffset + 1, 0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_swizzle.h 51 * Determine how to split access to the masked channels of the
54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_swizzle.h 51 * Determine how to split access to the masked channels of the
54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.h 50 StringArray_t Split() const;
58 static StringArray_t Split(const std::string& paths);
62 bool operator==(const Path& other) { return Split() == other.Split(); }
path.cc 40 StringArray_t paths = Split(path);
56 StringArray_t paths = Split(path);
72 StringArray_t paths = Split(path);
99 StringArray_t Path::Split() const {
183 StringArray_t Path::Split(const std::string& path) {
  /frameworks/base/tests/Split/
Android.mk 21 LOCAL_PACKAGE_NAME := Split
  /hardware/qcom/display/msm8974/libqdutils/
mdp_version.h 79 struct Split {
82 Split() : mLeft(0), mRight(0){}
117 Split mSplit;
  /external/llvm/lib/TableGen/
StringMatcher.cpp 57 std::pair<StringRef, StringRef> Split = Code.split('\n');
58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n";
60 Code = Split.second;
62 Split = Code.split('\n');
63 OS << Indent << Split.first << "\n";
64 Code = Split.second;
  /hardware/qcom/display/msm8226/libqdutils/
mdp_version.h 86 struct Split {
89 Split() : mLeft(0), mRight(0){}
160 Split mSplit;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
ExceptionExtensions.cs 44 foreach ( string line in trace.Split( '\n', '\r' ) )
  /external/llvm/include/llvm/ADT/
DeltaAlgorithm.h 55 /// Split - Partition a set of changes \p S into one or two subsets.
56 void Split(const changeset_ty &S, changesetlist_ty &Res);
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 28 void DeltaAlgorithm::Split(const changeset_ty &S, changesetlist_ty &Res) {
62 Split(*it, SplitSets);
78 Split(*it, Sets);
111 Split(Changes, Sets);
Regex.cpp 116 std::pair<StringRef, StringRef> Split = Repl.split('\\');
119 Res += Split.first;
122 if (Split.second.empty()) {
123 if (Repl.size() != Split.first.size() &&
130 Repl = Split.second;
  /art/runtime/
utils_test.cc 237 TEST_F(UtilsTest, Split) {
244 Split("", ':', actual);
248 Split(":", ':', actual);
255 Split(":foo", ':', actual);
259 Split("foo:", ':', actual);
263 Split(":foo:", ':', actual);
269 Split("foo:bar", ':', actual);
273 Split(":foo:bar", ':', actual);
277 Split("foo:bar:", ':', actual);
281 Split(":foo:bar:", ':', actual)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 54 Split split; local
55 if ((split = split(line, "=")) != null) {
57 output.setValue(createFullPath(context, split.left), split.right);
58 } else if ((split = split(line, "<<")) != null) {
63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right))
120 private Split split(String line, String delimiter) { method in class:DefaultHdfParser
    [all...]
  /hardware/qcom/display/msm8084/libqdutils/
mdp_version.h 86 struct Split {
89 Split() : mLeft(0), mRight(0){}
168 Split mSplit;
173 //Additional property on top of source split

Completed in 2279 milliseconds

1 2 3 4 5 6