/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/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/ |
J3MLoader.java | 88 String[] split = statement.split(":"); local 89 if (split.length != 2){ 92 String[] typeAndLang = split[0].split(whitespacePattern); 98 vertName = split[1].trim(); 100 fragName = split[1].trim(); 106 String[] split = statement.split(whitespacePattern); local 107 if (split.length != 2) 116 String[] split = statement.split(whitespacePattern); local 162 String[] split = value.trim().split(whitespacePattern); local 212 String[] split = statement.split(":"); local 265 String[] split = statement.split(":", 2); local 308 String[] split = statement.split(whitespacePattern); local 354 String[] split = statement.split(":"); local 373 String[] split = statement.getLine().split("[ \\\\{]"); local 393 String[] split = statement.split(whitespacePattern); local 401 String[] split = techStat.getLine().split(whitespacePattern); local 451 String[] split = materialName.split(":", 2); local [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
set_sys_path.py | 42 sys.path.insert(0, os.path.join(os.path.split(__file__)[0], '..'))
|
/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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/ |
SrtParser.java | 41 long startTime = parse(timeString.split("-->")[0]); 42 long endTime = parse(timeString.split("-->")[1]); 51 long hours = Long.parseLong(in.split(":")[0].trim()); 52 long minutes = Long.parseLong(in.split(":")[1].trim()); 53 long seconds = Long.parseLong(in.split(":")[2].split(",")[0].trim()); 54 long millies = Long.parseLong(in.split(":")[2].split(",")[1].trim());
|
/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/clang/utils/analyzer/ |
SumTimerInfo.py | 39 s = line.split() 45 s = line.split() 48 s = line.split() 51 s = line.split() 54 s = line.split() 57 s = line.split() 61 s = line.split() 64 s = line.split() 66 if (("The # of times we split the path due to imprecise dynamic dispatch info" in line) and (Mode == 1)) : 67 s = line.split() [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/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/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/ |
MaterialLoader.java | 76 String[] split = content.split("\\s"); local 79 color.r = Float.parseFloat(split[0]); 80 color.g = Float.parseFloat(split[1]); 81 color.b = Float.parseFloat(split[2]); 82 if (split.length >= 4){ 83 color.a = Float.parseFloat(split[3]); 158 String[] split = statement.getLine().split(" ", 2); local 159 String keyword = split[0] 189 String[] split = statement.getLine().split(" ", 2); local 211 String[] split = statement.getLine().split(" ", 2); local 274 String[] split = statement.getLine().split(" ", 2); local 290 String[] split = statement.getLine().split(" ", 2); local 450 String[] split = statement.getLine().split(" ", 2); local [all...] |
/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/guava/guava-tests/test/com/google/common/base/ |
SplitterTest.java | 45 COMMA_SPLITTER.split(null); 53 Iterable<String> letters = COMMA_SPLITTER.split(simple); 59 Iterable<String> letters = Splitter.on('.').split(simple); 65 Iterable<String> letters = COMMA_SPLITTER.split(doubled); 71 Iterable<String> letters = COMMA_SPLITTER.split(doubled); 77 Iterable<String> letters = COMMA_SPLITTER.split(trailing); 83 Iterable<String> letters = COMMA_SPLITTER.split(leading); 88 Iterable<String> testCharacteringMotto = Splitter.on('-').split( 97 .split("Testing\nrocks\tDebugging sucks"); 105 .omitEmptyStrings().split(doubled) [all...] |
/external/dropbear/libtomcrypt/ |
parsenames.pl | 7 @a = split(" ", $ARGV[1]);
|