/external/markdown/markdown/extensions/ |
tables.py | 25 rows = block.split('\n') 32 block = blocks.pop(0).split('\n') 77 """ split a row of text into list of cells. """ 83 return row.split('|')
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PAssertedServiceParser.java | 72 String serviceID = urn.split(ParameterNamesIms.SERVICE_ID_LABEL+".")[1]; 82 pps.setSubserviceIdentifiers(urn.split(ParameterNamesIms.SERVICE_ID_LABEL)[1]); 86 String appID = urn.split(ParameterNamesIms.APPLICATION_ID_LABEL+".")[1]; 94 pps.setApplicationIdentifiers(urn.split(ParameterNamesIms.APPLICATION_ID_LABEL)[1]);
|
/external/oprofile/ |
opev.py | 35 fields = line.split(None, 1) 37 first = fields[0].split(':', 1) 49 fields = line.split(None, 1) 56 ctrs = s.split(',')
|
/external/qemu-pc-bios/bochs/bios/ |
makesym.perl | 22 @F = split (/\s+/);
|
/external/regex-re2/re2/testing/ |
exhaustive3_test.cc | 14 vector<string> atoms = Split(" ", 22 vector<string> atoms = Split(" ", 67 vector<string> atoms = Split(" ", 80 vector<string> atoms = Split(" ",
|
random_test.cc | 60 RandomTest(5, 5, Split(" ", "a (b) ."), RegexpGenerator::EgrepOps(), 68 RandomTest(10, 10, Split(" ", "a (b) ."), RegexpGenerator::EgrepOps(), 78 vector<string> ops = Split(" ", 86 vector<string> atoms = Split(" ",
|
/external/tcpdump/ |
atime.awk | 10 n = split ($1,t,":")
|
stime.awk | 10 n = split ($1,t,":")
|
/external/webp/src/utils/ |
bit_reader.h | 212 static WEBP_INLINE int VP8BitUpdate(VP8BitReader* const br, range_t split) { 217 split |= (MASK); 218 if (br->value_ > split) { 219 br->range_ -= split + 1; 220 br->value_ -= split + 1; 223 br->range_ = split; 230 if (value > split) { 231 br->range_ -= split + 1; 232 br->value_ -= (bit_t)(split + 1) << pos; 235 br->range_ = split; 261 const range_t split = local 279 const range_t split = (br->range_ >> 1); local [all...] |
/frameworks/base/core/java/android/net/ |
PacProxySelector.java | 85 String[] split = response.split(";"); local 87 for (String s : split) { 92 String[] hostPort = trimmed.substring(6).split(":");
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
Folder.java | 780 // TextUtils.split call would also fail. Return null. 783 final String[] split = TextUtils.split(inString, SPLITTER_REGEX); local 784 if (split.length < 20) { 785 LogUtils.e(LOG_TAG, "split.length %d", split.length); 790 f.folderUri = new FolderUri(Folder.getValidUri(split[index++])); 791 f.name = split[index++]; 792 f.hasChildren = Integer.parseInt(split[index++]) != 0; 793 f.capabilities = Integer.parseInt(split[index++]) [all...] |
/packages/inputmethods/PinyinIME/jni/include/ |
splparser.h | 39 // If splstr starts with a character not in ['a'-z'] (it is a split char), 41 // Split char can only appear in the middle of the string or at the end. 86 // If splstr starts with a character not in [a-zA-Z] (it is a split char), 88 // Split char can only appear in the middle of the string or at the end.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/ |
nfnetlink.h | 35 /* netfilter netlink message types are split in two pieces:
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
nfnetlink.h | 35 /* netfilter netlink message types are split in two pieces:
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
nfnetlink.h | 35 /* netfilter netlink message types are split in two pieces:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
string_tests.py | 333 self.checkequal(['this', 'is', 'the', 'split', 'function'], 334 'this is the split function', 'split') 337 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d ', 'split') 338 self.checkequal(['a', 'b c d'], 'a b c d', 'split', None, 1) 339 self.checkequal(['a', 'b', 'c d'], 'a b c d', 'split', None, 2) 340 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d', 'split', None, 3) 341 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d', 'split', None, 4) 342 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d', 'split', None, 344 self.checkequal(['a b c d'], 'a b c d', 'split', None, 0 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
string_tests.py | 333 self.checkequal(['this', 'is', 'the', 'split', 'function'], 334 'this is the split function', 'split') 337 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d ', 'split') 338 self.checkequal(['a', 'b c d'], 'a b c d', 'split', None, 1) 339 self.checkequal(['a', 'b', 'c d'], 'a b c d', 'split', None, 2) 340 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d', 'split', None, 3) 341 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d', 'split', None, 4) 342 self.checkequal(['a', 'b', 'c', 'd'], 'a b c d', 'split', None, 344 self.checkequal(['a b c d'], 'a b c d', 'split', None, 0 [all...] |
/external/llvm/test/CodeGen/X86/ |
coalesce-implicitdef.ll | 52 while.condthread-pre-split: ; preds = %label.loopexit, %while.condthread-pre-split.lr.ph.lr.ph, %for.inc27.backedge 53 %0 = phi i32 [ %inc28, %for.inc27.backedge ], [ %inc285863, %while.condthread-pre-split.lr.ph.lr.ph ], [ %inc2858, %label.loopexit ] 54 %inc2060 = phi i32 [ %inc20, %for.inc27.backedge ], [ %a.promoted.pre, %while.condthread-pre-split.lr.ph.lr.ph ], [ %inc20, %label.loopexit ] 57 while.cond: ; preds = %while.condthread-pre-split, %while.cond 58 %p2.1.in = phi i32* [ %pi.3.ph, %while.cond ], [ %i, %while.condthread-pre-split ] 71 br i1 %tobool17, label %for.inc27.if.end30.loopexit56_crit_edge, label %while.condthread-pre-split 83 br i1 %tobool1759, label %if.end30, label %while.condthread-pre-split 118 br i1 %tobool175964, label %if.end30, label %while.condthread-pre-split.lr.ph.lr.ph 120 while.condthread-pre-split.lr.ph.lr.ph: ; preds = %label.preheade [all...] |
/dalvik/vm/mterp/ |
config-mips | 21 # Need to specify split-ops to generate alt-ops at the end after 23 split-ops
|
/external/chromium/chrome/browser/resources/net_internals/ |
topmidbottomview.js | 41 // Calculate the vertical split points. 46 // Position the boxes using calculated split points.
|
/external/chromium_org/content/test/data/media/ |
player.html | 46 var url_parts = window.location.href.split('?'); 50 var query_parts = url_parts[1].split('=');
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
path.h | 52 StringArray_t Split() const; 59 static StringArray_t Split(const std::string& paths);
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
DatabaseBackendContext.h | 37 // for the split out of the DatabaseContext backend to be done later. This 39 // DatabaseBackendContext to do so before the proper backend split is
|
DatabaseBackendSync.h | 37 // for the split out of the DatabaseSync backend to be done later. This 39 // DatabaseBackendSync to do so before the proper backend split is
|
/external/chromium_org/tools/git/ |
mass-rename.py | 32 parts = line.split('\t') 37 if attrs.split()[4].startswith('R'):
|