/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
merge.h | 40 /** @brief Merge routine being able to merge only the @c max_length 50 * @param max_length Maximum number of elements to merge. 61 _DifferenceTp max_length, Comparator comp) 64 while (begin1 != end1 && begin2 != end2 && max_length > 0) 71 --max_length; 76 target = std::copy(begin1, begin1 + max_length, target); 77 begin1 += max_length; 81 target = std::copy(begin2, begin2 + max_length, target); 82 begin2 += max_length; 87 /** @brief Merge routine being able to merge only the @c max_length [all...] |
/external/clang/test/CXX/class.access/class.access.nest/ |
p1.cpp | 10 static const unsigned long max_length; member in struct:test0::A::C 14 const unsigned long A::C::max_length = sizeof(B); member in class:test0::A::C
|
/external/chromium/webkit/glue/ |
form_field.cc | 27 : max_length(0), 35 : max_length(0), 47 max_length = input_element.size(); 70 int max_length, 76 max_length(max_length), 89 max_length == field.max_length); 101 max_length == field.max_length); [all...] |
form_field.h | 34 int max_length, 53 int max_length; member in struct:webkit_glue::FormField
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.stdcvt/ |
codecvt_utf16_max_length.pass.cpp | 20 // int max_length() const throw(); 30 int r = c.max_length(); 36 int r = c.max_length(); 42 int r = c.max_length(); 48 int r = c.max_length(); 54 int r = c.max_length(); 60 int r = c.max_length();
|
codecvt_utf8_max_length.pass.cpp | 20 // int max_length() const throw(); 30 int r = c.max_length(); 36 int r = c.max_length(); 42 int r = c.max_length(); 48 int r = c.max_length(); 54 int r = c.max_length(); 60 int r = c.max_length();
|
codecvt_utf8_utf16_max_length.pass.cpp | 20 // int max_length() const throw(); 30 int r = c.max_length(); 36 int r = c.max_length(); 42 int r = c.max_length(); 48 int r = c.max_length(); 54 int r = c.max_length(); 60 int r = c.max_length();
|
/external/llvm/test/CodeGen/X86/ |
2008-03-10-RegAllocInfLoop.ll | 6 define x86_stdcallcc i32 @parse_backslash(i8** inreg %word, i32* inreg %word_length, i32* inreg %max_length) nounwind { 11 %tmp26 = call fastcc i8* @w_addchar( i8* null, i32* %word_length, i32* %max_length, i8 signext %tmp6 ) nounwind ; <i8*> [#uses=1]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERConstructedOctetString.java | 14 private static final int MAX_LENGTH = 1000; 109 for (int i = 0; i < string.length; i += MAX_LENGTH) 113 if (i + MAX_LENGTH > string.length) 119 end = i + MAX_LENGTH;
|
BEROctetString.java | 11 private static final int MAX_LENGTH = 1000; 95 for (int i = 0; i < string.length; i += MAX_LENGTH) 99 if (i + MAX_LENGTH > string.length) 105 end = i + MAX_LENGTH;
|
/external/oprofile/libdb/ |
db_stat.c | 30 size_t max_length = 0; local 58 if (cur_length > max_length) 59 max_length = cur_length; 67 result->max_list_length = max_length;
|
/external/wpa_supplicant_8/src/utils/ |
radiotap_iter.h | 27 * @max_length: length of radiotap header in cpu byte ordering 38 int max_length; member in struct:ieee80211_radiotap_iterator 51 int max_length);
|
/hardware/qcom/power/ |
power.c | 34 #define MAX_LENGTH 50 65 char data[MAX_LENGTH]; 75 snprintf(data, MAX_LENGTH, "2:%d", client); 78 snprintf(data, MAX_LENGTH, "3:%d", client); 117 char data[MAX_LENGTH]; 126 snprintf(data, MAX_LENGTH, "1:%d", client);
|
/external/openfst/src/include/fst/script/ |
randgen.h | 46 ropts(arc_selector, opts.max_length, 52 ropts(arc_selector, opts.max_length, 58 ropts(arc_selector, opts.max_length,
|
randequivalent.h | 62 ropts(arc_selector, opts.max_length, opts.npath); 69 ropts(arc_selector, opts.max_length, opts.npath); 76 ropts(arc_selector, opts.max_length, opts.npath);
|
/external/llvm/utils/lint/ |
common_lint.py | 7 def VerifyLineLength(filename, lines, max_length): 14 max_length: maximum acceptable line length as number 24 if length > max_length: 26 'Line exceeds %d chars (%d)' % (max_length, length)))
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
char16_t_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 4);
|
char32_t_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 4);
|
char_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 1);
|
wchar_t_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 1);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
Romkan.java | 148 private static final int MAX_LENGTH = 4; 169 StrSegment[] str = new StrSegment[MAX_LENGTH]; 170 int start = MAX_LENGTH; 171 int checkLength = Math.min(cursor, MAX_LENGTH); 173 str[MAX_LENGTH - i] = text.getStrSegment(1, cursor - i); 178 while (start < MAX_LENGTH) { 179 for (int i = start; i < MAX_LENGTH; i++) { 191 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 192 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 196 str[start].from, str[MAX_LENGTH - 1].to - 1) [all...] |
RomkanFullKatakana.java | 144 private static final int MAX_LENGTH = 4; 173 StrSegment[] str = new StrSegment[MAX_LENGTH]; 174 int start = MAX_LENGTH; 175 int checkLength = Math.min(cursor, MAX_LENGTH); 177 str[MAX_LENGTH - i] = text.getStrSegment(1, cursor - i); 182 while (start < MAX_LENGTH) { 183 for (int i = start; i < MAX_LENGTH; i++) { 195 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 196 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 200 str[start].from, str[MAX_LENGTH - 1].to - 1) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/email_this_page/ |
background.html | 55 var max_length = 1024; 56 if (info.selection.length > max_length) 57 info.selection = info.selection.substring(0, max_length);
|
/frameworks/base/media/mca/filterfw/native/core/ |
geometry.cpp | 107 bool Rect::ScaleWithLengthLimit(float factor, float max_length) { 113 if (current_length >= max_length) { 118 if (current_length * f > max_length) { 119 f *= max_length / (current_length * f);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/trie_policy/ |
prefix_search_node_update_imp.hpp | 127 size_type max_length = 0; local 136 if (common_range_length > max_length) 140 max_length = common_range_length;
|