/external/chromium_org/third_party/libjingle/source/talk/ |
main.scons | 632 CPPPATH = os.environ.get("CPPPATH").split(':'), 636 LIBPATH = os.environ.get("LIBPATH").split(':'), 640 CFLAGS = os.environ.get("CFLAGS").split(' '), 644 CCFLAGS = os.environ.get("CCFLAGS").split(' '), 648 CXXFLAGS = os.environ.get("CXXFLAGS").split(' '), 652 _LIBFLAGS = os.environ.get("LIBFLAGS").split(' '), 656 LINKFLAGS = os.environ.get("LINKFLAGS").split(' '),
|
/external/clang/utils/ |
FindSpecRefs | 607 section,name = name.split(' ',1) 609 section,name = name.split(' ',1) 683 secs = str[1:str.index(']')].split('.') 692 secs = str.split('.') 695 secs[-1],p = secs[-1].split('p',1) 768 for ln in p.stdout.read(1024).split('\n'): 770 return ln.split(':',1)[1].strip() [all...] |
/external/tremolo/Tremolo/ |
framing.c | 226 /* split a reference into two references; 'return' is a reference to 228 split. If pos is at or past the end of the passed in segment, 235 b) the fragment that needs split somewhere in the middle */ 251 /* exact split, or off the end? */ 254 /* a split */ 266 /* split within a fragment */ 1109 /* split the body contents off */
|
/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...] |
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
EventRecurrence.java | 561 * (1) Split the string at ';' boundaries to get an array of rule "parts". 596 parts = recur.toUpperCase().split(";"); 598 parts = recur.split(";"); 709 // Common case: only one entry, skip split() overhead. 713 String[] valueStrs = listStr.split(","); 808 /* only one entry, skip split() overhead */ 814 String[] wdays = value.split(","); [all...] |
/ndk/build/gmsl/ |
gmsl-tests | 447 $(call start_test,split) 448 $(call test_assert,$(call split,$c,comma$cseparated$cstring),comma separated string) 449 $(call test_assert,$(call split,*,star*field*record),star field record) 450 $(call test_assert,$(call split,*,star*),star) 451 $(call test_assert,$(call split,*,star*field),star field) 452 $(call test_assert,$(call split,*,star****field),star field) 453 $(call test_assert,$(call split,*,),)
|
/ndk/ |
ndk-gdb.py | 42 PATHS = extra_paths+os.environ['PATH'].split(os.pathsep) 430 columns = output.pop(0).split() 436 columns = output.pop().split() 555 APP_ABIS = get_build_var('APP_ABI').split(' ') 557 ALL_ABIS = get_build_var('NDK_ALL_ABIS').split(' ') 583 CPU_ABIS = CPU_ABI1.split(',')+CPU_ABI2.split(',')
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/ |
HtmlTree.java | 226 // Do a best effort attempt to not split apart certain elements (as of now, 227 // just the <textarea>). We cannot guarantee that they will not be split 355 // Split up the block [start, end) into one or more blocks that 691 // We're in a <pre> block. Split the text into lines, and append 693 String[] lines = text.split("[\\r\\n]", -1); 695 // split() will always return an array with at least one element. 714 * newlines, or split the text up into separate lines and handle new lines
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlTree.java | 259 // Do a best effort attempt to not split apart certain elements (as of now, 260 // just the <textarea>). We cannot guarantee that they will not be split 388 // Split up the block [start, end) into one or more blocks that 725 // We're in a <pre> block. Split the text into lines, and append 727 String[] lines = text.split("[\\r\\n]", -1); 729 // split() will always return an array with at least one element. 748 * newlines, or split the text up into separate lines and handle new lines
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
config.py | 86 name = name.split('.') 109 flist = flist.split(",") 138 hlist = hlist.split(",") 181 llist = llist.split(",") 195 hlist = hlist.split(",") 247 hlist = hlist.split(",") 394 name = s.split('.') [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
config.py | 86 name = name.split('.') 109 flist = flist.split(",") 138 hlist = hlist.split(",") 181 llist = llist.split(",") 195 hlist = hlist.split(",") 247 hlist = hlist.split(",") 394 name = s.split('.') [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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_re.py | 219 self.assertEqual(re.split(":", ":a:b::c"), ['', 'a', 'b', '', 'c']) 220 self.assertEqual(re.split(":*", ":a:b::c"), ['', 'a', 'b', 'c']) 221 self.assertEqual(re.split("(:*)", ":a:b::c"), 223 self.assertEqual(re.split("(?::*)", ":a:b::c"), ['', 'a', 'b', 'c']) 224 self.assertEqual(re.split("(:)*", ":a:b::c"), 226 self.assertEqual(re.split("([b:]+)", ":a:b::c"), 228 self.assertEqual(re.split("(b)|(:+)", ":a:b::c"), 231 self.assertEqual(re.split("(?:b)|(?::+)", ":a:b::c"), 235 self.assertEqual(re.split(":", ":a:b::c", 2), ['', 'a', 'b::c']) 236 self.assertEqual(re.split(':', 'a:b:c:d', 2), ['a', 'b', 'c:d'] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_re.py | 219 self.assertEqual(re.split(":", ":a:b::c"), ['', 'a', 'b', '', 'c']) 220 self.assertEqual(re.split(":*", ":a:b::c"), ['', 'a', 'b', 'c']) 221 self.assertEqual(re.split("(:*)", ":a:b::c"), 223 self.assertEqual(re.split("(?::*)", ":a:b::c"), ['', 'a', 'b', 'c']) 224 self.assertEqual(re.split("(:)*", ":a:b::c"), 226 self.assertEqual(re.split("([b:]+)", ":a:b::c"), 228 self.assertEqual(re.split("(b)|(:+)", ":a:b::c"), 231 self.assertEqual(re.split("(?:b)|(?::+)", ":a:b::c"), 235 self.assertEqual(re.split(":", ":a:b::c", 2), ['', 'a', 'b::c']) 236 self.assertEqual(re.split(':', 'a:b:c:d', 2), ['a', 'b', 'c:d'] [all...] |
/external/chromium_org/ppapi/generators/ |
idl_parser.py | 337 words = p[2].split() 339 lines = p[2].split('\n') 896 for line in name.split('\n'): 902 for line in name[:-2].split('\n'): 1004 args = tok.value[3:-3].split() [all...] |
idl_thunk.py | 67 path, name = os.path.split(filenode.GetProperty('NAME')) 74 path, name = os.path.split(filenode.GetProperty('NAME')) 85 path = os.path.split(filenode.GetProperty('NAME'))[0] 155 parts = interface.GetName().split('_')[1:] 573 idldir = os.path.split(sys.argv[0])[0]
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
flakiness_dashboard.js | 62 return suffix.split('.')[0] 251 this._addTest(test.split('/'), this._trie); 259 var splitPath = startingTriePath.split('/'); 322 return tests.split(','); 503 return '/steps/' + g_history.crossDashboardState.testType + '/logs/' + testName.split('.')[1] 677 return headerText.split(' ', 1)[0]; [all...] |
/external/chromium_org/third_party/icu/source/common/ |
rbbisetb.cpp | 180 // the start of the range from the unicode set, split the range list range 183 // Then continue the loop; the post-split current range will then be skipped 186 rlRange->split(inputSetRangeBegin, *fStatus); 195 // the end of the range from the unicode set, split the range list 196 // range in two. The first part of the split range will be 199 rlRange->split(inputSetRangeEnd+1, *fStatus); 630 // RangeDesriptor::split() 633 void RangeDescriptor::split(UChar32 where, UErrorCode &status) { function in class:RangeDescriptor 645 // Only need to update those that are different after the split.
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
regextst.cpp | [all...] |
/external/icu4c/common/ |
rbbisetb.cpp | 180 // the start of the range from the unicode set, split the range list range 183 // Then continue the loop; the post-split current range will then be skipped 186 rlRange->split(inputSetRangeBegin, *fStatus); 195 // the end of the range from the unicode set, split the range list 196 // range in two. The first part of the split range will be 199 rlRange->split(inputSetRangeEnd+1, *fStatus); 630 // RangeDesriptor::split() 633 void RangeDescriptor::split(UChar32 where, UErrorCode &status) { function in class:RangeDescriptor 645 // Only need to update those that are different after the split.
|
/external/llvm/lib/Transforms/Utils/ |
InlineFunction.cpp | 83 /// split the landing pad block after the landingpad instruction and jump 109 // Split the landing pad. 142 /// branch. When there is more than one predecessor, we need to split the 199 // Convert this function call into an invoke instruction. First, split the 201 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc"); 209 InvokeInst *II = InvokeInst::Create(CI->getCalledValue(), Split, 220 Split->getInstList().pop_front(); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
gensuitemodule.py | 72 split = a.split('=') 73 if len(split) != 2: 75 edit_modnames.append(split) 458 packagename = os.path.split(os.path.normpath(pathname))[1] 463 dirname, basepkgname = os.path.split(os.path.normpath(basepkgname)) 593 self.modname = os.path.splitext(os.path.split(self.pathname)[1])[0] 704 modshortname = string.split(self.basemodule.__name__, '.')[-1] [all...] |
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
closurizednamespacesinfo.py | 140 base_namespace = namespace.split('.', 1)[0] 169 base_namespace = namespace.split('.', 1)[0] 184 parts = namespace.split('.') 258 pieces = identifier.split('.') 462 parts = identifier.split('.')
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
NetworkRequest.js | 560 var firstLine = this.requestHeadersText.split(/\r\n/)[0]; 656 var queryString = this.url.split("?", 2)[1]; 659 this._queryString = queryString.split("#", 2)[0]; 710 var splitPair = pair.split("=", 2); 713 return queryString.split("&").map(parseNameValue);
|