Searched defs:num_chars (Results 1 - 11 of 11) sorted by path

/external/chromium/testing/gtest/src/
H A Dgtest.cc1496 // Parameter num_chars may additionally limit the number
1504 String WideStringToUtf8(const wchar_t* str, int num_chars) { argument
1505 if (num_chars == -1)
1506 num_chars = static_cast<int>(wcslen(str));
1509 for (int i = 0; i < num_chars; ++i) {
1514 } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/freetype/include/freetype/internal/
H A Dt1types.h56 /* num_chars :: The number of character codes in the encoding. */
71 FT_Int num_chars; member in struct:T1_EncodingRecRec_
/external/gtest/src/
H A Dgtest.cc1496 // Parameter num_chars may additionally limit the number
1504 String WideStringToUtf8(const wchar_t* str, int num_chars) { argument
1505 if (num_chars == -1)
1506 num_chars = static_cast<int>(wcslen(str));
1509 for (int i = 0; i < num_chars; ++i) {
1514 } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) {
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc1496 // Parameter num_chars may additionally limit the number
1504 String WideStringToUtf8(const wchar_t* str, int num_chars) { argument
1505 if (num_chars == -1)
1506 num_chars = static_cast<int>(wcslen(str));
1509 for (int i = 0; i < num_chars; ++i) {
1514 } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) {
/external/ppp/pppd/plugins/
H A Dwinbind.c171 size_t num_chars = 0; local
194 p[num_chars] = (hinybble << 4) | lonybble;
195 num_chars++;
200 return num_chars;
/external/protobuf/gtest/src/
H A Dgtest.cc1481 // Parameter num_chars may additionally limit the number
1489 String WideStringToUtf8(const wchar_t* str, int num_chars) { argument
1490 if (num_chars == -1)
1491 num_chars = static_cast<int>(wcslen(str));
1494 for (int i = 0; i < num_chars; ++i) {
1499 } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) {
/external/srec/srec/crec/
H A Dsrec_context.c331 int wordmap_create(wordmap** pwmap, int num_chars, int num_words, int num_words_to_add) argument
342 Interface->max_chars = num_chars + num_words_to_add * AVG_CHARS_PER_WORD;
376 asr_int32_t num_chars; local
382 for (num_words = 0, num_chars = 0; pfgets(buf, MAX_LINE_LENGTH, fp); num_words++)
385 num_chars += strlen(word);
387 num_chars += num_words * 2; /* for null terminators */
394 wordmap_create(&wmap, num_chars, num_words, num_words_to_add);
/external/v8/src/
H A Dparser.cc214 int num_chars = char_vector.length(); local
215 if (num_chars > 1) {
216 Vector<const uc16> prefix = char_vector.SubVector(0, num_chars - 1);
218 char_vector = char_vector.SubVector(num_chars - 1, num_chars);
/external/webkit/Source/WebKit/android/content/
H A Daddress_detector.cpp326 void AddressDetector::HouseNumberParser::AcceptChars(size_t num_chars) { argument
328 num_chars);
333 void AddressDetector::HouseNumberParser::SkipChars(size_t num_chars) { argument
334 it_ += std::min(static_cast<size_t>(std::distance(it_, end_)), num_chars);
/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.cc219 int num_chars = vfprintf(_id, format, args); local
222 if (num_chars >= 0)
224 return num_chars;

Completed in 794 milliseconds