Searched defs:split (Results 1 - 25 of 137) sorted by relevance

123456

/external/chromium_org/v8/test/message/
H A Doverwritten-builtins.js28 String.prototype.split = function() { return "SPLIT ERROR"; };
/external/v8/test/message/
H A Doverwritten-builtins.js28 String.prototype.split = function() { return "SPLIT ERROR"; };
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_swizzles.c37 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])
H A Dr300_fragprog_swizzle.c150 struct rc_swizzle_split * split)
152 split->NumPhases = 0;
191 split->Phase[split->NumPhases++] = best_matchmask;
148 r300_swizzle_split( struct rc_src_register src, unsigned int mask, struct rc_swizzle_split * split) argument
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_swizzles.c37 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java273 public static String[] split(String input, char delimiter) method in class:Strings
/external/llvm/lib/MC/
H A DMCAtom.cpp57 MCDataAtom *MCDataAtom::split(uint64_t SplitPt) { function in class:MCDataAtom
94 MCTextAtom *MCTextAtom::split(uint64_t SplitPt) { function in class:MCTextAtom
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextUtils.java68 public static String[] split(String text, String expression) { method in class:ShadowTextUtils
73 return text.split(expression);
/external/skia/tests/
H A DPathOpsQuadParameterizationTest.cpp30 // split large quadratic
34 SkDQuadPair split = test.chopAt(0.5); local
37 &test, &midThird, &split.first(), &split.second()
/external/v8/test/benchmarks/
H A Dtestcfg.py31 from os.path import join, split namespace
44 super(BenchmarkTestCase, self).__init__(context, split(path), mode)
/external/chromium/chrome/browser/tab_contents/
H A Dweb_drag_dest_gtk.cc196 size_t split = netscape_url.find_first_of('\n'); local
197 if (split != std::string::npos) {
198 drop_data_->url = GURL(netscape_url.substr(0, split));
199 if (split < netscape_url.size() - 1)
200 drop_data_->url_title = UTF8ToUTF16(netscape_url.substr(split + 1));
/external/chromium-libpac/src/
H A Dnet_util.cc66 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/third_party/opus/src/src/
H A Drepacketizer_demo.c67 int merge = 1, split=0; local
85 } else if (strcmp(argv[i], "-split")==0)
86 split = 1;
153 if (!split)
/external/chromium_org/ui/views/controls/
H A Dsingle_split_view_unittest.cc16 static void VerifySplitViewLayout(const views::SingleSplitView& split) { argument
17 ASSERT_EQ(2, split.child_count());
19 const views::View* leading = split.child_at(0);
20 const views::View* trailing = split.child_at(1);
22 if (split.bounds().IsEmpty()) {
32 if (split.orientation() == views::SingleSplitView::HORIZONTAL_SPLIT) {
33 EXPECT_EQ(leading->bounds().height(), split.bounds().height());
34 EXPECT_EQ(trailing->bounds().height(), split.bounds().height());
36 split.bounds().width());
37 } else if (split
[all...]
/external/clang/utils/
H A Dtoken-delta.py46 return self.delta(changes, self.split(changes))
48 def split(self, S): member in class:DeltaAlgorithm
49 """split(set) -> [sets]
54 # There are many ways to split, we could do a better job with more
76 refined = sum(map(list, map(self.split, sets)), [])
86 return self.delta(S, self.split(S))
118 for ln in err.split('\n'):
/external/libvpx/libvpx/vp8/decoder/
H A Ddboolhuff.h62 unsigned int split; local
67 split = 1 + (((br->range - 1) * probability) >> 8);
75 bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8);
77 range = split;
81 range = br->range - split;
/external/libvpx/libvpx/vp8/encoder/
H A Dboolhuff.h64 unsigned int split; local
81 split = 1 + (((range - 1) * probability) >> 8);
83 range = split;
87 lowvalue += split;
88 range = br->range - split;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_dboolhuff.h47 unsigned int split = ((br->range * probability) + (256 - probability)) >> 8; local
55 bigsplit = (VP9_BD_VALUE)split << (BD_VALUE_SIZE - 8);
57 range = split;
60 range = br->range - split;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_boolhuff.h45 unsigned int split; local
62 split = 1 + (((range - 1) * probability) >> 8);
64 range = split;
67 lowvalue += split;
68 range = br->range - split;
/external/skia/dm/
H A DDMWriteTask.cpp16 SkTArray<SkString> split; local
17 SkStrSplit(name, "_", &split);
21 out->push_back(split[split.count()-i-1]);
/external/chromium_org/chrome/browser/resources/file_manager/common/js/
H A Dpath_util.js132 PathUtil.split = function(path) {
139 var components = path.split('/');
251 var components = PathUtil.split(path);
/external/chromium_org/chrome/common/extensions/features/
H A Dbase_feature_provider.cc105 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...]
/external/chromium_org/chrome/tools/convert_dict/
H A Ddic_reader.cc23 // We split the line on a slash not preceded by a backslash. A slash at the
72 std::vector<std::string> split; local
73 SplitDicLine(line, &split);
74 if (split.empty() || split.size() > 2) {
85 utf8word = split[0];
86 } else if (!aff_reader->EncodingToUTF8(split[0], &utf8word)) {
94 if (split.size() == 2) {
99 size_t split1_tab_offset = split[1].find('\t');
101 split[
[all...]
/external/chromium_org/content/browser/devtools/
H A Ddevtools_tracing_handler.cc113 std::vector<std::string> split; local
117 base::SplitString(options, ',', &split);
118 for (iter = split.begin(); iter != split.end(); ++iter) {
/external/chromium_org/content/browser/web_contents/
H A Dweb_drag_dest_gtk.cc230 size_t split = netscape_url.find_first_of('\n'); local
231 if (split != std::string::npos) {
232 drop_data_->url = GURL(netscape_url.substr(0, split));
233 if (split < netscape_url.size() - 1)
234 drop_data_->url_title = UTF8ToUTF16(netscape_url.substr(split + 1));

Completed in 793 milliseconds

123456