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

1 2 3

  /external/llvm/utils/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;
  /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 \arg 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 112 std::pair<StringRef, StringRef> Split = Repl.split('\\');
115 Res += Split.first;
118 if (Split.second.empty()) {
119 if (Repl.size() != Split.first.size() &&
126 Repl = Split.second;
  /external/llvm/lib/Target/
TargetData.cpp 165 std::pair<StringRef, StringRef> Split = Desc.split('-');
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(':')
    [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...]
  /external/clang/lib/Rewrite/
DeltaTree.cpp 57 SourceDelta Split;
104 /// split the node, populate InsertRes with info about the split, and return
138 Values[0] = IR.Split;
139 FullDelta = IR.LHS->getFullDelta()+IR.RHS->getFullDelta()+IR.Split.Delta;
180 /// split the node, populate InsertRes with info about the split, and return
216 // Otherwise, if this is leaf is full, split the node at its median, insert
221 if (InsertRes->Split.FileLoc > FileIndex)
233 // Okay, this split the subtree, producing a new value and two children t
    [all...]
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 41 static const uint64_t Split = 1ULL << 10;
81 bool isSplit() const { return Flags & Split; }
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 76 foreach (string line in trace.Split('\n', '\r')) {
StringTokenizer.cs 48 _tokens = str.Split( separator.ToCharArray(), StringSplitOptions.None );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 85 foreach ( string line in trace.Split( '\n', '\r' ) )
StringTokenizer.cs 49 _tokens = str.Split( separator.ToCharArray(), StringSplitOptions.None );
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 225 // 'invoke', then we want to split the landing pad.
226 bool Split = false;
232 Split = true;
237 if (!Split) continue;
  /external/harfbuzz/src/
harfbuzz-indic.cpp 484 Split,
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, None, Post, Above
1091 const unsigned short *split = split_matras; local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.8-3.js 24 ECMA Section: 15.5.4.8 String.prototype.split( separator )
33 As a special case, if the separator is the empty string, the string is split
40 When the split method is called with one argument separator, the following steps are taken:
72 Note that the split function is intentionally generic; it does not require that its this value be a String
82 var TITLE = "String.prototype.split";
99 "var s = new String(); s.split().length",
101 eval("var s = new String(); s.split().length") );
104 "var s = new String(); s.split()[0]",
106 eval("var s = new String(); s.split()[0]") );
111 "var s = new String(); s.split('').length"
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 256 std::pair<StringRef, StringRef> Split = CompilerPath.split(':');
257 PrefixDirs.push_back(Split.first);
258 CompilerPath = Split.second;
300 std::pair<StringRef, StringRef> Split = Cur.split(',');
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
    [all...]
  /external/llvm/lib/MC/
SubtargetFeature.cpp 66 /// 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) {
179 Split(Features, Initial);
  /external/v8/src/arm/
full-codegen-arm.cc 696 Split(ne, if_true, if_false, fall_through);
700 void FullCodeGenerator::Split(Condition cond,
786 Split(eq, if_true, if_false, NULL);
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 674 Split(not_zero, if_true, if_false, fall_through);
678 void FullCodeGenerator::Split(Condition cc,
760 Split(equal, if_true, if_false, NULL);
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 703 Split(ne, v0, Operand(at), if_true, if_false, fall_through);
707 void FullCodeGenerator::Split(Condition cc,
793 Split(eq, a0, Operand(t0), if_true, if_false, NULL);
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 615 Split(not_zero, if_true, if_false, fall_through);
619 void FullCodeGenerator::Split(Condition cc,
700 Split(equal, if_true, if_false, NULL);
    [all...]
  /cts/tests/SignatureTest/
Android.mk 97 # Split up config/api/1.xml by "package" and save the files as the
  /external/openfst/src/include/fst/
minimize.h 212 // - loop over states in fst and split on final, creating two blocks
220 // initial split (F, S - F)
232 void Split(ClassId C) {
242 // Now pop arc iterator from queue, split entering equivalence class
280 // split on C, all labels in C
281 Split(C);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
minimize.h 199 // - loop over states in fst and split on final, creating two blocks
207 // initial split (F, S - F)
219 void Split(ClassId C) {
229 // Now pop arc iterator from queue, split entering equivalence class
267 // split on C, all labels in C
268 Split(C);

Completed in 562 milliseconds

1 2 3