HomeSort by relevance Sort by last modified time
    Searched defs:Split (Results 1 - 23 of 23) sorted by null

  /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/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/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/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/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/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/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/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/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);
  /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/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /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/llvm/lib/Transforms/Utils/
InlineFunction.cpp 83 /// split the landing pad block after the landingpad instruction and jump
108 // Split the landing pad.
141 /// branch. When there is more than one predecessor, we need to split the
186 // Convert this function call into an invoke instruction. First, split the
188 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc");
196 InvokeInst *II = InvokeInst::Create(CI->getCalledValue(), Split,
207 Split->getInstList().pop_front();
766 // Split the basic block. This guarantees that no PHI nodes will have to be
773 // If this is a call instruction, we need to split the basic block that
    [all...]
  /external/llvm/include/llvm/Analysis/
Dominators.h 236 // NewBB is split and now it has one successor. Update dominator tree to
239 void Split(DominatorTreeBase<typename GraphT::NodeType>& DT,
535 /// splitBlock - BB is split and now it has one successor. Update dominator
539 this->Split<Inverse<NodeT*>, GraphTraits<Inverse<NodeT*> > >(*this, NewBB);
541 this->Split<NodeT*, GraphTraits<NodeT*> >(*this, NewBB);
837 /// splitBlock - BB is split and now it has one successor. Update dominator
  /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...]
  /external/clang/lib/Serialization/
ASTReader.cpp 201 std::pair<StringRef,StringRef> Split =
202 StringRef(PP.getPredefines()).split(PCHInclude.str());
203 StringRef Left = Split.first, Right = Split.second;
223 Buffers[I].Data.split(PCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
226 Left.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
233 Right.split(AfterPCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
    [all...]
  /external/v8/src/
jsregexp.cc     [all...]

Completed in 1303 milliseconds