HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 126 - 150 of 2976) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow_swizzles.c 37 struct rc_swizzle_split split; local
47 c->SwizzleCaps->Split(inst->U.I.SrcReg[src], usemask, &split);
49 for(unsigned int phase = 0; phase < split.NumPhases; ++phase) {
57 mov->U.I.DstReg.WriteMask = split.Phase[phase];
63 if (!GET_BIT(split.Phase[phase], chan))
71 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate;
74 else if (masked_negate == split.Phase[phase])
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow_swizzles.c 37 struct rc_swizzle_split split; local
47 c->SwizzleCaps->Split(inst->U.I.SrcReg[src], usemask, &split);
49 for(unsigned int phase = 0; phase < split.NumPhases; ++phase) {
57 mov->U.I.DstReg.WriteMask = split.Phase[phase];
63 if (!GET_BIT(split.Phase[phase], chan))
71 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate;
74 else if (masked_negate == split.Phase[phase])
  /external/chromium_org/chrome/common/extensions/features/
base_feature_provider.cc 105 std::vector<std::string> split; local
106 base::SplitString(iter.key(), '.', &split);
114 while (!split.empty()) {
115 std::string parent_name = JoinString(split, '.');
116 split.pop_back();
214 std::vector<std::string> split;
215 base::SplitString(feature->name(), '.', &split);
216 if (split.size() < 2)
218 split.pop_back();
219 return GetFeature(JoinString(split, '.'))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macpath.py 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
58 def split(s): function
59 """Split a pathname into two parts: the directory leading up to the final
78 """Split a pathname into a drive specification and the rest of the
87 # Short interfaces to split()
89 def dirname(s): return split(s)[0]
90 def basename(s): return split(s)[1]
95 components = split(s)
138 comps = s.split(":")
205 components = path.split(':'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macpath.py 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
58 def split(s): function
59 """Split a pathname into two parts: the directory leading up to the final
78 """Split a pathname into a drive specification and the rest of the
87 # Short interfaces to split()
89 def dirname(s): return split(s)[0]
90 def basename(s): return split(s)[1]
95 components = split(s)
138 comps = s.split(":")
205 components = path.split(':'
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
print-stale-test-expectations-entries 56 parsed_time = datetime.datetime.strptime(last_updated.split(".")[0]+"UTC", "%Y-%m-%dT%H:%M:%S%Z")
75 parts = line.split(' ')
78 bug_number = part.split('/')[1]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
phystokens.py 43 if "\n" in ttext and ttext.split('\n', 1)[0][-1] == '\\':
49 ccol = len(last_line.split("\n")[-2]) - 1
84 for part in re.split('(\n)', ttext):
  /external/chromium_org/tools/win/split_link/
install_split_link.py 20 fpath, _ = os.path.split(program)
25 for path in os.environ['PATH'].split(os.pathsep):
53 link_backup = os.path.join(os.path.split(link)[0], 'link.exe.split_link.exe')
  /external/srec/tools/cmd/
pht_to_short.pl 18 ($trash,$lph,$sph,$num_states) = split(/\s+/);
56 ($word, $pron) = split(/\s*\t\s*/, $_, 2);
58 @lphlist = split(/\s+/, $pron);
  /external/zlib/src/
zlib2ansi 59 split /\s*,\s*/, $param_list;
62 my @params = split /\s*;\s*/, $params;
68 my @bits = split /\s*,\s*/, $p;
  /external/chromium-libpac/src/
net_util.cc 66 unsigned int split = cidr_literal.find('/'); local
67 if (split == std::string::npos)
69 parts.push_back(cidr_literal.substr(0, split));
70 parts.push_back(cidr_literal.substr(split + 1));
  /external/chromium_org/build/android/gyp/
ant.py 30 stdout = stdout.strip().split('\n')
  /external/chromium_org/chrome/test/pyautolib/
prefs_info.py 96 for part in path.split('.'): # Narrow down to the requested prefs path.
  /external/chromium_org/chrome/tools/
inconsistent-eol.py 37 split = text.split(str)
38 logging.debug(len(split) - 1)
39 return len(split) - 1
  /external/chromium_org/components/test/data/autofill/merge/tools/
reserialize_profiles_from_query.py 32 values = line.split("|")
  /external/chromium_org/third_party/WebKit/Source/platform/clipboard/
ClipboardUtilities.cpp 51 uriList.split('\n', items);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
compatibility.py 20 start_list = os.path.abspath(start).split(os.path.sep)
21 path_list = os.path.abspath(path).split(os.path.sep)
50 start_list = os.path.abspath(start).split(os.path.sep)
51 path_list = os.path.abspath(path).split(os.path.sep)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/
run-test.rb 34 lines = output.split("\n").map { |line| line.sub(/\'(.*)?\/(.*)?\.framework/, "'--stripped--/\\2.framework") }
  /external/chromium_org/third_party/icu/source/test/intltest/
cpdtrtst.h 49 UnicodeString* split(const UnicodeString& str, UChar seperator, int32_t& count);
  /external/chromium_org/tools/gyp/test/intermediate_dir/src/
script.py 15 sys.argv[2], fourth = shlex.split(sys.argv[2].replace('\\', '\\\\'))
  /external/chromium_org/tools/json_schema_compiler/
schema_util.py 34 for part in full_name.split("."):
  /external/icu4c/test/intltest/
cpdtrtst.h 49 UnicodeString* split(const UnicodeString& str, UChar seperator, int32_t& count);
  /external/libvorbis/vq/
make_residue_books.pl 50 my($name,$datafile,$bookname,$interval,$range)=split(' ',$1);
80 my($namedata,$dim,$seqp,$vals)=split(',',$1);
81 my($name,$datafile)=split(' ',$namedata);
87 foreach my$val (split(' ',$vals)){
  /external/skia/dm/
DMWriteTask.cpp 16 SkTArray<SkString> split; local
17 SkStrSplit(name, "_", &split);
21 out->push_back(split[split.count()-i-1]);

Completed in 998 milliseconds

1 2 3 4 56 7 8 91011>>