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

12

/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/llvm/utils/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.cpp112 std::pair<StringRef, StringRef> Split = Repl.split('\\'); local
115 Res += Split.first;
118 if (Split.second.empty()) {
119 if (Repl.size() != Split.first.size() &&
126 Repl = Split.second;
/external/llvm/lib/Target/
H A DTargetData.cpp165 std::pair<StringRef, StringRef> Split = Desc.split('-'); local
166 StringRef Token = Split.first;
167 Desc = Split.second;
172 Split = Token.split(':');
173 StringRef Specifier = Split.first;
174 Token = Split.second;
189 Split = Token.split(':');
190 int PointerMemSizeBits = getInt(Split.first);
197 Split = Split
[all...]
/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 );
H A DExceptionExtensions.cs76 foreach (string line in trace.Split('\n', '\r')) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringTokenizer.cs49 _tokens = str.Split( separator.ToCharArray(), StringSplitOptions.None );
H A DExceptionExtensions.cs85 foreach ( string line in trace.Split( '\n', '\r' ) )
/external/llvm/include/llvm/ADT/
H A DDeltaAlgorithm.h55 /// Split - Partition a set of changes \arg S into one or two subsets.
56 void Split(const changeset_ty &S, changesetlist_ty &Res);
/external/clang/lib/Rewrite/
H A DDeltaTree.cpp57 SourceDelta Split; member in struct:__anon3242::DeltaTreeNode::InsertResult
138 Values[0] = IR.Split;
139 FullDelta = IR.LHS->getFullDelta()+IR.RHS->getFullDelta()+IR.Split.Delta;
221 if (InsertRes->Split.FileLoc > FileIndex)
247 Values[i] = InsertRes->Split;
257 SourceDelta SubSplit = InsertRes->Split;
264 if (SubSplit.FileLoc < InsertRes->Split.FileLoc)
293 /// DoSplit - Split the currently full node (which has 2*WidthFactor-1 values)
331 InsertRes.Split = Values[WidthFactor-1];
/external/llvm/include/llvm/Target/
H A DTargetCallingConv.h41 static const uint64_t Split = 1ULL << 10; member in struct:llvm::ISD::ArgFlagsTy
81 bool isSplit() const { return Flags & Split; }
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
H A D15.5.4.8-3.js181 function Split( string, separator ) { function
/external/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp226 bool Split = false; local
232 Split = true;
237 if (!Split) continue;
/external/harfbuzz/src/
H A Dharfbuzz-indic.cpp484 Split, enumerator in enum:Position
556 Pre, None, None, Split,
557 Split, Below, None, None,
679 Split, None, None, Split,
680 Split, None, None, None,
720 Pre, None, Split, Split,
721 Split, Halant, None, None,
761 Split, Non
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dblitzbasic.php28 * * Split to BlitzBasic 2D and BlitzBasic 3D.
H A Dhtml4strict.php30 * * Split to several files - html4trans, xhtml1 etc
H A Drebol.php31 * * Split to several files - php4, php5 etc
H A Dsql.php30 * * Split this to several sql files - mysql-sql, ansi-sql etc
H A Dphp.php31 * * Split to several files - php4, php5 etc
/external/clang/lib/Driver/
H A DDriver.cpp256 std::pair<StringRef, StringRef> Split = CompilerPath.split(':'); local
257 PrefixDirs.push_back(Split.first);
258 CompilerPath = Split.second;
300 std::pair<StringRef, StringRef> Split = Cur.split(','); local
302 if (!Split.first.empty()) {
304 llvm::Triple(Split.first, "", "").getArch();
307 Diag(clang::diag::err_drv_invalid_arch_name) << Split.first;
312 Cur = Split.second;
1424 std::pair<StringRef, StringRef> Split = Name.split('.'); local
1426 GetTemporaryPath(Split
1461 std::pair<StringRef, StringRef> Split = Name.split('.'); local
[all...]
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp66 /// Split - Splits a string of comma separated items in to a vector of strings.
68 static void Split(std::vector<std::string> &V, const StringRef S) { function
179 Split(Features, Initial);
/external/v8/src/arm/
H A Dfull-codegen-arm.cc696 Split(ne, if_true, if_false, fall_through);
700 void FullCodeGenerator::Split(Condition cond, function in class:v8::internal::FullCodeGenerator
786 Split(eq, if_true, if_false, NULL);
2498 Split(eq, if_true, if_false, fall_through);
2519 Split(eq, if_true, if_false, fall_through);
2552 Split(le, if_true, if_false, fall_through);
2574 Split(ge, if_true, if_false, fall_through);
2598 Split(ne, if_true, if_false, fall_through);
2706 Split(eq, if_true, if_false, fall_through);
2728 Split(e
[all...]
/external/v8/src/ia32/
H A Dfull-codegen-ia32.cc674 Split(not_zero, if_true, if_false, fall_through);
678 void FullCodeGenerator::Split(Condition cc, function in class:v8::internal::FullCodeGenerator
760 Split(equal, if_true, if_false, NULL);
2437 Split(zero, if_true, if_false, fall_through);
2458 Split(zero, if_true, if_false, fall_through);
2490 Split(below_equal, if_true, if_false, fall_through);
2512 Split(above_equal, if_true, if_false, fall_through);
2536 Split(not_zero, if_true, if_false, fall_through);
2642 Split(equal, if_true, if_false, fall_through);
2664 Split(equa
[all...]

Completed in 1364 milliseconds

12