Searched refs:Split (Results 1 - 25 of 109) sorted by relevance

12345

/external/chromium_org/third_party/re2/re2/testing/
H A Dexhaustive1_test.cc16 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,
H A Dexhaustive2_test.cc17 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]"),
H A Dexhaustive3_test.cc14 vector<string> atoms = Split(" ",
22 vector<string> atoms = Split(" ",
67 vector<string> atoms = Split(" ",
80 vector<string> atoms = Split(" ",
H A Drandom_test.cc60 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(" ",
H A Dregexp_generator.h66 vector<string> Split(const StringPiece& sep, const StringPiece& s);
/external/regex-re2/re2/testing/
H A Dexhaustive1_test.cc16 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,
H A Dexhaustive2_test.cc17 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]"),
H A Dexhaustive3_test.cc14 vector<string> atoms = Split(" ",
22 vector<string> atoms = Split(" ",
67 vector<string> atoms = Split(" ",
80 vector<string> atoms = Split(" ",
H A Drandom_test.cc60 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/
H A DBreakableToken.h37 typedef std::pair<StringRef::size_type, unsigned> Split; typedef in class:clang::format::BreakableToken
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,
127 void insertBreak(unsigned LineIndex, unsigned TailOffset, Split Spli
[all...]
H A DBreakableToken.cpp42 static BreakableToken::Split getCommentSplit(StringRef Text,
48 return BreakableToken::Split(StringRef::npos, 0);
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);
126 return BreakableToken::Split(SlashOffse
170 insertBreak(unsigned LineIndex, unsigned TailOffset, Split Split, WhitespaceManager &Whitespaces) argument
223 insertBreak(unsigned LineIndex, unsigned TailOffset, Split Split, WhitespaceManager &Whitespaces) argument
231 replaceWhitespace(unsigned LineIndex, unsigned TailOffset, Split Split, WhitespaceManager &Whitespaces) argument
377 insertBreak(unsigned LineIndex, unsigned TailOffset, Split Split, WhitespaceManager &Whitespaces) argument
397 replaceWhitespace(unsigned LineIndex, unsigned TailOffset, Split Split, WhitespaceManager &Whitespaces) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_swizzle.h54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split); member in struct:rc_swizzle_caps
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_swizzle.h54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split); member in struct:rc_swizzle_caps
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpath_util_test.py8 from path_util import SplitParent, Split, Segment namespace
28 self.assertEqual(['p1/', 'p2/', 'p3'], Split('p1/p2/p3'))
29 self.assertEqual(['p1/', 'p2/', 'p3/'], Split('p1/p2/p3/'))
30 self.assertEqual([''], Split(''))
31 self.assertEqual(['p1/'], Split('p1/'))
32 self.assertEqual(['p1'], Split('p1'))
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
H A DExceptionExtensions.cs44 foreach ( string line in trace.Split( '\n', '\r' ) )
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.h50 StringArray_t Split() const;
58 static StringArray_t Split(const std::string& paths);
62 bool operator==(const Path& other) { return Split() == other.Split(); }
H A Dpath.cc40 StringArray_t paths = Split(path);
56 StringArray_t paths = Split(path);
72 StringArray_t paths = Split(path);
99 StringArray_t Path::Split() const { function in class:nacl_io::Path
183 StringArray_t Path::Split(const std::string& path) { function in class:nacl_io::Path
/external/llvm/lib/TableGen/
H A DStringMatcher.cpp57 std::pair<StringRef, StringRef> Split = Code.split('\n'); local
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;
/external/llvm/lib/Support/
H A DDeltaAlgorithm.cpp28 void DeltaAlgorithm::Split(const changeset_ty &S, changesetlist_ty &Res) { function in class:DeltaAlgorithm
62 Split(*it, SplitSets);
78 Split(*it, Sets);
111 Split(Changes, Sets);
H A DRegex.cpp116 std::pair<StringRef, StringRef> Split = Repl.split('\\'); local
119 Res += Split.first;
122 if (Split.second.empty()) {
123 if (Repl.size() != Split.first.size() &&
130 Repl = Split.second;
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDefaultHdfParser.java54 Split split;
118 * Split a line in two, based on a delimiter. If the delimiter is not found, null is returned.
120 private Split split(String line, String delimiter) {
123 Split result = new Split();
132 private static class Split { class in class:DefaultHdfParser
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringTokenizer.cs48 _tokens = str.Split( separator.ToCharArray(), StringSplitOptions.None );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringTokenizer.cs49 _tokens = str.Split( separator.ToCharArray(), StringSplitOptions.None );
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dpage_heap_test.cc32 // Split span 's1' into 's1', 's2'. Delete 's2'
33 tcmalloc::Span* s2 = ph->Split(s1, 128);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dpage_heap_test.cc32 // Split span 's1' into 's1', 's2'. Delete 's2'
33 tcmalloc::Span* s2 = ph->Split(s1, 128);

Completed in 719 milliseconds

12345