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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/testing/gmock/scripts/generator/cpp/
keywords.py 36 TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split())
37 TYPE_MODIFIERS = set('auto register const inline extern static virtual volatile mutable'.split())
38 ACCESS = set('public protected private friend'.split())
40 CASTS = set('static_cast const_cast dynamic_cast reinterpret_cast'.split())
42 OTHERS = set('true false asm class namespace using explicit this operator sizeof'.split())
43 OTHER_TYPES = set('new delete typedef struct union enum typeid typename template'.split())
45 CONTROL = set('case switch default if else return goto'.split())
46 EXCEPTION = set('try catch throw'.split())
47 LOOP = set('while do for break continue'.split())
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
array_split_1.js 24 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(',')).length )
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
SplitTest.java 13 String[] results = p.split("have/you/done/it/right");
20 assertArraysEqual(new String[0], "hello".split("."));
21 assertArraysEqual(new String[] { "1", "2" }, "1:2:".split(":"));
23 assertArraysEqual(new String[0], ":".split(":"));
25 assertArraysEqual(new String[] { "1", "2", "" }, "1:2:".split(":", -1));
28 assertArraysEqual(new String[] { "", "", "o" }, "hello".split(".."));
31 assertArraysEqual(new String[] { "hello" }, "hello".split("not-present-in-test"));
34 assertArraysEqual(new String[] { "" }, "".split("not-present-in-test"));
35 assertArraysEqual(new String[] { "" }, "".split("A?"));
42 assertArraysEqual(new String[] { "a", "b", "c" }, "a,b,c".split(",", 0))
    [all...]
  /external/v8/test/mjsunit/
string-split.js 29 result = "A<B>bold</B>and<CODE>coded</CODE>".split(/<(\/)?([^<>]+)>/);
33 assertArrayEquals(["a", "b"], "ab".split(/a*?/));
35 assertArrayEquals(["", "b"], "ab".split(/a*/));
37 assertArrayEquals(["a"], "ab".split(/a*?/, 1));
39 assertArrayEquals([""], "ab".split(/a*/, 1));
41 assertArrayEquals(["as","fas","fas","f"], "asdfasdfasdf".split("d"));
43 assertArrayEquals(["as","fas","fas","f"], "asdfasdfasdf".split("d", -1));
45 assertArrayEquals(["as", "fas"], "asdfasdfasdf".split("d", 2));
47 assertArrayEquals([], "asdfasdfasdf".split("d", 0));
49 assertArrayEquals(["as","fas","fas",""], "asdfasdfasd".split("d"))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
string_split.js 24 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(/X/)"
    [all...]
  /dalvik/dx/tests/086-ssa-edge-split/
run 18 dx --dump --width=1000 --ssa-blocks --ssa-step=edge-split Blort.class
  /external/openssl/crypto/des/t/
test 9 @a=split(//,$ks);
16 @a=split(//,$key);
21 @a=split(//,$k1);
24 @a=split(//,$k2);
  /external/tcpdump/
atime.awk 10 n = split ($1,t,":")
stime.awk 10 n = split ($1,t,":")
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
split-001.js 2 * 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(separator).constructor == Array )
    [all...]
split-003.js 2 * 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(separator).constructor == Array )
    [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/ipsec-tools/src/racoon/
stats.pl 7 ($a, $a, $a, $a, $a, $b) = split(/\s+/, $_, 6);
8 ($a, $c) = split(/:/, $b, 2);
  /external/webkit/LayoutTests/http/tests/resources/
post-and-verify.cgi 12 @list = split(/&/, $ENV{'QUERY_STRING'});
14 ($key, $value) = split(/=/, $element);
  /external/openssl/crypto/lhash/
num.pl 9 @a=split;
  /external/webp/src/dec/
bits.h 62 static inline uint32_t VP8BitUpdate(VP8BitReader* const br, uint32_t split) {
64 const uint32_t value_split = (split + 1) << 8;
72 br->range_ -= split + 1;
75 br->range_ = split;
89 const uint32_t split = (br->range_ * prob) >> 8; local
90 const uint32_t bit = VP8BitUpdate(br, split);
98 const uint32_t split = br->range_ >> 1; local
99 const uint32_t bit = VP8BitUpdate(br, split);
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
SplitTest.java 33 String[] results = p.split("have/you/done/it/right");
47 tokens = p.split(input, 1);
50 tokens = p.split(input, 2);
54 tokens = p.split(input, 5);
58 tokens = p.split(input, -2);
62 tokens = p.split(input, 0);
66 tokens = p.split(input);
73 tokens = p.split(input, 1);
76 tokens = p.split(input, 2);
80 tokens = p.split(input, 5)
    [all...]
  /development/tools/axl/
chewperf.py 13 rawLines = f.split('\n')
17 line = rawLines[x].split()
20 ts = int(rawLines[x - 1].split()[-1])
29 rawLines = f.split('\r\n')
36 chewed = [int(line.split()[5]), int(line.split()[7])]
47 rawLines = f.split('\n')
50 sidx = lines[0].split().index("Pulled")
52 chewed = [[int(x.split()[sidx + 2]), int(x.split()[sidx + 4])] for x in lines
    [all...]
  /external/llvm/utils/Target/ARM/
analyze-match-table.py 8 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(",")]
  /external/strace/strace/linux/sparc/
gen.pl 7 ($i1, $i2, $i3, $syscall, $syscall_name) = split;
14 ($i1, $n, $pr, $syscall) = split;
22 ($i1, $n, $pr, $syscall) = split;
  /external/dropbear/libtomcrypt/
parsenames.pl 7 @a = split(" ", $ARGV[1]);
  /external/e2fsprogs/
wordwrap.pl 12 split;
  /frameworks/base/opengl/libs/GLES2_dbg/
generate_caller_cpp.py 46 parameters = parameterList.split(',')
75 paramType = parameter.split(' ')[0]
76 paramName = parameter.split(' ')[1]
81 inout = paramType.split(":")[2]
82 annotation = paramType.split(":")[1]
83 paramType = paramType.split(":")[0]
87 count = int(annotation.split("*")[0])
88 countArg = annotation.split("*")[1]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
53 base_type::split(pred, other);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
53 base_type::split(pred, other);

Completed in 919 milliseconds

1 2 3 4 5 6 7 8 91011>>