Searched defs:split (Results 51 - 75 of 182) sorted by relevance

12345678

/external/bsdiff/
H A Dbsdiff.c43 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h) function
96 if(jj>start) split(I,V,start,jj-start,h);
101 if(start+len>kk) split(I,V,kk,start+len-kk,h);
131 split(I,V,i,len,h);
/external/chromium_org/chrome/browser/themes/
H A Dtheme_properties.cc140 std::vector<std::string> split; local
141 base::SplitStringAlongWhitespace(alignment, &split);
144 for (std::vector<std::string>::iterator component(split.begin());
145 component != split.end(); ++component) {
/external/chromium_org/chrome/tools/convert_dict/
H A Daff_reader.cc313 std::vector<std::string> split; local
314 split.push_back(utf8rule.substr(0, space_index));
315 split.push_back(utf8rule.substr(space_index + 1));
319 std::replace(split[0].begin(), split[0].end(), '_', ' ');
320 std::replace(split[1].begin(), split[1].end(), '_', ' ');
322 replacements_.push_back(std::make_pair(split[0], split[1]));
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dfull_wallet.cc321 size_t split = kPanSize - kBinSize; local
322 cvn_ = card_info.substr(split);
323 pan_ = iin_ + card_info.substr(0, split);
/external/chromium_org/content/browser/devtools/
H A Ddevtools_tracing_handler.cc94 std::vector<std::string> split; local
98 base::SplitString(options, ',', &split);
99 for (iter = split.begin(); iter != split.end(); ++iter) {
/external/chromium_org/net/tools/flip_server/
H A Dflip_in_mem_edsm_server.cc18 #include "net/tools/balsa/split.h"
55 std::vector<std::string>& split(const std::string& s, function
66 std::vector<std::string> split(const std::string& s, char delim) { function
68 return split(s, delim, elems);
305 std::vector<std::string> valueArgs = split(value, ',');
333 std::vector<std::string> valueArgs = split(value, ',');
359 std::vector<std::string> valueArgs = split(value, ',');
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp58 void split(QuadraticBezier& left, QuadraticBezier& right) const function in struct:blink::QuadraticBezier
100 void split(CubicBezier& left, CubicBezier& right) const function in struct:blink::CubicBezier
146 curve.split(leftCurve, rightCurve);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem.py266 def split(self, path): member in class:FileSystem
268 return os.path.split(path)
/external/chromium_org/third_party/icu/source/common/
H A Drbbisetb.cpp180 // 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/i18n/
H A Drepattrn.cpp575 // split
578 int32_t RegexPattern::split(const UnicodeString &input, function in class:RegexPattern
591 r = m.split(input, dest, destCapacity, status);
597 // split, UText mode
599 int32_t RegexPattern::split(UText *input, function in class:RegexPattern
612 r = m.split(input, dest, destCapacity, status);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcpdtrtst.cpp248 UnicodeString *array=split(ID, 0x003b, count);
262 array=split(ID2, 0x003b, count);
321 UnicodeString* CompoundTransliteratorTest::split(const UnicodeString& str, UChar seperator, int32_t& count) { function in class:CompoundTransliteratorTest
H A Dfldset.cpp68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function
80 int32_t split = 0; local
84 src.extractBetween(start, end, result[split++]);
88 src.extractBetween(start, src.length(), result[split]);
103 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount);
107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddetokenize.c61 int split = (br->range + 1) >> 1; local
62 VP8_BD_VALUE bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8);
70 br->range = split;
75 br->range = br->range-split;
/external/chromium_org/third_party/libwebp/utils/
H A Dbit_writer.c109 const int split = (bw->range_ * prob) >> 8; local
111 bw->value_ += split + 1;
112 bw->range_ -= split + 1;
114 bw->range_ = split;
127 const int split = bw->range_ >> 1; local
129 bw->value_ += split + 1;
130 bw->range_ -= split + 1;
132 bw->range_ = split;
/external/chromium_org/third_party/markupsafe/
H A D__init__.py111 def split(self, *args, **kwargs): member in class:Markup
112 return list(map(self.__class__, text_type.split(self, *args, **kwargs)))
113 split.__doc__ = text_type.split.__doc__
153 stripped = u' '.join(_striptags_re.sub('', self).split())
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog.c245 struct rc_swizzle_split * split)
257 split->NumPhases = 0;
263 split->Phase[split->NumPhases++] = negatebase[i];
244 r500_swizzle_split(struct rc_src_register src, unsigned int usemask, struct rc_swizzle_split * split) argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dopt_array_splitting.cpp28 * split it apart into its elements, making it more amenable to other
52 this->split = true;
65 /** Whether this array should be split or not. */
66 bool split; member in class:opt_array_splitting::variable_entry
85 * variables that could be split by looking to see if they are arrays
128 /* If the array hasn't been sized yet, we can't split it. After
164 * (see the visit_continue_with_parent below), so we can't split
168 entry->split = false;
183 * know which split variable this dereference should go to.
186 entry->split
[all...]
/external/chromium_org/third_party/power_gadget/
H A DPowerGadgetLib.cpp38 static bool split(const wstring& s, wstring &path) function
/external/deqp/framework/egl/
H A DtcuEgl.cpp101 static void split (vector<string>& dst, const string& src) function in namespace:tcu::egl
121 split(dst, extStr);
/external/deqp/framework/opengl/
H A DgluContextInfo.cpp149 static void split (vector<string>& dst, const string& src) function in namespace:glu
174 split(extensions, string(result));
/external/deqp/modules/egl/
H A DteglTestCase.cpp48 void split (std::vector<std::string>& dst, const std::string& src) function in namespace:deqp::egl::__anon19848
127 split(apis, clientAPIs);
/external/eigen/bench/btl/generic_bench/
H A Dbtl.hh86 std::vector<BtlString> split( const BtlString& delims = "\t\n ") const function in class:BtlString
157 std::vector<BtlString> elements = this->split("/\\");
178 std::vector<BtlString> config = BtlString(_config).split(" \t\n");
188 Instance.m_selectedActionNames = config[i+1].split(":");
/external/icu/icu4c/source/common/
H A Drbbisetb.cpp180 // 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/icu/icu4c/source/i18n/
H A Drepattrn.cpp575 // split
578 int32_t RegexPattern::split(const UnicodeString &input, function in class:RegexPattern
591 r = m.split(input, dest, destCapacity, status);
597 // split, UText mode
599 int32_t RegexPattern::split(UText *input, function in class:RegexPattern
612 r = m.split(input, dest, destCapacity, status);
/external/icu/icu4c/source/test/intltest/
H A Dcpdtrtst.cpp248 UnicodeString *array=split(ID, 0x003b, count);
262 array=split(ID2, 0x003b, count);
321 UnicodeString* CompoundTransliteratorTest::split(const UnicodeString& str, UChar seperator, int32_t& count) { function in class:CompoundTransliteratorTest

Completed in 545 milliseconds

12345678