Searched refs:split (Results 1 - 25 of 1009) sorted by relevance

1234567891011>>

/macosx-10.10.1/rsync-45/rsync/
H A Dmkproto.awk23 split($0,a,"[,()]")
28 split($0,a,"[,()]")
33 split($0,a,"[,()]")
38 split($0,a,"[,()]")
43 split($0,a,"[,()]")
48 split($0,a,"[,()]")
53 split($0,a,"[,()]")
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/Array/
H A Darray_split_1.js24 ECMA Section: Array.split()
35 var TITLE = "Array.split()";
45 "('a,b,c'.split(',')).length",
47 ('a,b,c'.split(',')).length );
50 "('a,b'.split(',')).length",
52 ('a,b'.split(',')).length );
55 "('a'.split(',')).length",
57 ('a'.split(',')).length );
65 "(''.split(',')).length",
67 (''.split(','))
[all...]
/macosx-10.10.1/vim-55/runtime/doc/
H A Dmaketags.awk3 NR == 1 { nf=split(FILENAME,f,".")
23 nf=split($0,tag," ");
26 n=split($2,w,".");
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A Dstring_split.js24 Description: 'Tests the split method on Strings using regular expressions'
33 var TITLE = 'String: split';
41 // 'a b c de f'.split(/\s/)
42 testcases[count++] = new TestCase ( SECTION, "'a b c de f'.split(/\s/)",
43 String(["a","b","c","de","f"]), String('a b c de f'.split(/\s/)));
45 // 'a b c de f'.split(/\s/,3)
46 testcases[count++] = new TestCase ( SECTION, "'a b c de f'.split(/\s/,3)",
47 String(["a","b","c"]), String('a b c de f'.split(/\s/,3)));
49 // 'a b c de f'.split(/X/)
50 testcases[count++] = new TestCase ( SECTION, "'a b c de f'.split(/
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/String/
H A Dsplit-001.js2 * File Name: String/split-001.js
18 * The [,limit] argument to String.split is new, and not covered in any
21 * String.split cases are covered in ecma/String/15.5.4.8-*.js.
22 * String.split where separator is a RegExp are in
27 var SECTION = "ecma_2/String/split-001.js";
29 var TITLE = "String.prototype.split( regexp, [,limit] )";
43 // if separator is an empty string, split each by character
56 // verify that the result of split is an object of type Array
58 "( " + string + " ).split(" + str_sep +").constructor == Array",
60 string.split(separato
[all...]
H A Dsplit-003.js2 * File Name: String/split-003.js
18 * The [,limit] argument to String.split is new, and not covered in any
21 * String.split cases are covered in ecma/String/15.5.4.8-*.js.
22 * String.split where separator is a RegExp are in
27 var SECTION = "ecma_2/String/split-003.js";
29 var TITLE = "String.prototype.split( regexp, [,limit] )";
36 // if separator is an empty string, split each by character
64 // verify that the result of split is an object of type Array
66 "( " + string + " ).split(" + str_sep +").constructor == Array",
68 string.split(separato
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/des/t/
H A Dtest9 @a=split(//,$ks);
16 @a=split(//,$key);
21 @a=split(//,$k1);
24 @a=split(//,$k2);
/macosx-10.10.1/ruby-106/ruby/template/
H A Dknown_errors.inc.tmpl7 % error_names = ARGF.read.split(/\s+/)
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Datime.awk10 n = split ($1,t,":")
H A Dstime.awk10 n = split ($1,t,":")
/macosx-10.10.1/ruby-106/ruby/ext/json/lib/json/
H A Dversion.rb4 VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dversion.rb5 MAJOR, MINOR, BUILD, = Rake::VERSION.split '.'
/macosx-10.10.1/bc-21/bc/doc/
H A DMakefile.am4 MAKEINFO = makeinfo --no-split
/macosx-10.10.1/ruby-106/ruby/lib/rss/
H A Dutils.rb7 name.split(/[_\-]/).collect do |part|
13 file, line, = caller[i].split(':')
72 value = value.strip.split(/\s*,\s*/)
/macosx-10.10.1/ruby-106/ruby/sample/
H A Doccur.rb5 for word in line.split(/\W+/)
H A Doccur2.rb5 for word in line.split(/\W+/)
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/tools/
H A Dfindinpath7 set path [split $env(PATH) :]
/macosx-10.10.1/vim-55/runtime/tools/
H A Dmve.awk14 split($4,s," ")
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Derrnames1.awk15 split(etail, tmp)
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-mlspl.el36 (defvar gnus-group-split-updated-hook nil
37 "Hook called just after nnmail-split-fancy is updated by
38 gnus-group-split-update.")
40 (defvar gnus-group-split-default-catch-all-group "mail.misc"
41 "Group name (or arbitrary fancy split) with default splitting rules.
42 Used by gnus-group-split and gnus-group-split-update as a fallback
43 split, in case none of the group-based splits matches.")
46 (defun gnus-group-split-setup (&optional auto-update catch-all)
47 "Set up the split fo
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/utils/Target/ARM/
H A Danalyze-match-table.py8 lines = data[start:end].split("\n")[1:]
13 ln = ln.split("{", 1)[1]
15 a,bc = ln.split("{", 1)
16 b,c = bc.split("}", 1)
18 for s in a.split(",")]
19 items = [s.strip() for s in b.split(",")]
20 _,features = [s.strip() for s in c.split(",")]
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DMatchResult.h45 } split; member in union:MatchResult::u
48 start = value.split.start;
49 end = value.split.end;
/macosx-10.10.1/emacs-93/
H A Dfilearch.rb8 fields = line.split(/\s+/).delete_if {|f| f.empty?}
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/rc_binomial_heap_/
H A Dsplit_join_fn_imps.hpp51 split(Pred pred, PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
59 base_type::split(pred, other);
/macosx-10.10.1/ntp-92/scripts/
H A Dchecktime.in22 ($addr,$host,$aliases)=split(/\s+/,$line,3);
38 @dargs=split(/\s+/,$i);
71 @af=split(/\s+/,$a);
72 @bf=split(/\s+/,$b);

Completed in 324 milliseconds

1234567891011>>