/external/chromium_org/chrome/tools/convert_dict/ |
aff_reader.cc | 313 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/ |
full_wallet.cc | 305 size_t split = kPanSize - kBinSize; local 306 cvn_ = card_info.substr(split); 307 pan_ = iin_ + card_info.substr(0, split);
|
/external/chromium_org/content/browser/devtools/ |
devtools_tracing_handler.cc | 113 std::vector<std::string> split; local 117 base::SplitString(options, ',', &split); 118 for (iter = split.begin(); iter != split.end(); ++iter) {
|
/external/chromium_org/net/tools/flip_server/ |
flip_in_mem_edsm_server.cc | 18 #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/ |
PathTraversalState.cpp | 54 void split(QuadraticBezier& left, QuadraticBezier& right) const function in struct:WebCore::QuadraticBezier 87 void split(CubicBezier& left, CubicBezier& right) const function in struct:WebCore::CubicBezier 130 curve.split(leftCurve, rightCurve);
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
stringencode.cc | 626 size_t split(const std::string& source, char delimiter, function in namespace:talk_base
|
/external/chromium_org/third_party/libwebp/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...] |
bit_writer.c | 107 const int split = (bw->range_ * prob) >> 8; local 109 bw->value_ += split + 1; 110 bw->range_ -= split + 1; 112 bw->range_ = split; 125 const int split = bw->range_ >> 1; local 127 bw->value_ += split + 1; 128 bw->range_ -= split + 1; 130 bw->range_ = split;
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
opt_array_splitting.cpp | 28 * 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 = false [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_split_inplace.c | 63 static void flush_vertex( struct split_context *split ) 65 struct gl_context *ctx = split->ctx; 70 if (!split->dstprim_nr) 73 if (split->ib) { 74 ib = *split->ib; 76 ib.count = split->max_index - split->min_index + 1; 78 split->min_index * _mesa_sizeof_type(ib.type)); 81 for (i = 0; i < split->dstprim_nr; i++) 82 split->dstprim[i].start -= split->min_index 274 struct split_context split; local [all...] |
/external/eigen/bench/btl/generic_bench/ |
btl.hh | 86 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/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/ |
MaterialExtensionLoader.java | 70 String[] split = statement.getLine().split(" ", 3); local 71 String aliasName = split[1]; 72 String texturePath = split[2]; 94 String[] split = statement.getLine().split(" ", 2); local 95 String[] subsplit = split[1].split(":");
|
/external/libvpx/libvpx/vp8/decoder/ |
detokenize.c | 61 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/mesa3d/src/glsl/ |
opt_array_splitting.cpp | 28 * 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 = false [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_split_inplace.c | 63 static void flush_vertex( struct split_context *split ) 65 struct gl_context *ctx = split->ctx; 70 if (!split->dstprim_nr) 73 if (split->ib) { 74 ib = *split->ib; 76 ib.count = split->max_index - split->min_index + 1; 78 split->min_index * _mesa_sizeof_type(ib.type)); 81 for (i = 0; i < split->dstprim_nr; i++) 82 split->dstprim[i].start -= split->min_index 274 struct split_context split; local [all...] |
/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...] |
bit_writer.c | 107 const int split = (bw->range_ * prob) >> 8; local 109 bw->value_ += split + 1; 110 bw->range_ -= split + 1; 112 bw->range_ = split; 125 const int split = bw->range_ >> 1; local 127 bw->value_ += split + 1; 128 bw->range_ -= split + 1; 130 bw->range_ = split;
|
/frameworks/base/core/java/com/android/internal/net/ |
VpnConfig.java | 78 String[] routes = routesStr.trim().split(" "); 81 String[] split = route.split("/"); local 83 (InetAddress.parseNumericAddress(split[0]), Integer.parseInt(split[1])), null); 92 String[] addresses = addressesStr.trim().split(" "); 95 String[] split = address.split("/"); local 96 LinkAddress addr = new LinkAddress(InetAddress.parseNumericAddress(split[0]), 97 Integer.parseInt(split[1])) [all...] |
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsGOT.cpp | 199 void MipsGOT::split() function in class:MipsGOT 250 split(); 270 split();
|
/libcore/luni/src/main/java/java/util/regex/ |
Pattern.java | 26 * {@link String#split String.split} will be preferable, but if you need to do a lot of work 35 * String[] fields = s.split(":"); 328 public String[] split(CharSequence input, int limit) { method in class:Pattern 329 return Splitter.split(this, pattern, input.toString(), limit); 333 * Equivalent to {@code split(input, 0)}. 335 public String[] split(CharSequence input) { method in class:Pattern 336 return split(input, 0);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameLookupBuilder.java | 163 mSplitter.split(name, fullName, fullNameStyle);
|
PostalSplitter.java | 25 * Split and join {@link StructuredPostal} fields. 70 public void split(Postal postal, String formattedAddress) { method in class:PostalSplitter 89 // TODO: split off to handle various locales
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
PostalSplitterForJapaneseTest.java | 117 mPostalSplitter.split(postal, formattedPostal);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ |
debug_map_base.hpp | 110 split(const_key_reference, Cmp_Fn, PB_DS_CLASS_C_DEC&); 315 split(const_key_reference r_key, Cmp_Fn cmp_fn, PB_DS_CLASS_C_DEC& other) function in class:__gnu_pbds::detail::PB_DS_CLASS_C_DEC
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
multiway_mergesort.h | 119 /** @brief Split consistently. */ 126 /** @brief Split by exact splitting. */ 182 /** @brief Split by sampling. */ 450 difference_type split = n % num_threads; local 455 pos += (i < split) ? (chunk_length + 1) : chunk_length;
|