Searched refs:char_count (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/pdf/pdfium/ |
D | pdfium_range.cc | 12 PDFiumRange::PDFiumRange(PDFiumPage* page, int char_index, int char_count) in PDFiumRange() argument 15 char_count_(char_count), in PDFiumRange() 22 void PDFiumRange::SetCharCount(int char_count) { in SetCharCount() argument 23 char_count_ = char_count; in SetCharCount() 42 int char_count = char_count_; in GetScreenRects() local 43 if (char_count < 0) { in GetScreenRects() 44 char_count *= -1; in GetScreenRects() 45 char_index -= char_count - 1; in GetScreenRects() 48 int count = FPDFText_CountRects(page_->GetTextPage(), char_index, char_count); in GetScreenRects()
|
D | pdfium_range.h | 20 PDFiumRange(PDFiumPage* page, int char_index, int char_count); 25 void SetCharCount(int char_count); 29 int char_count() const { return char_count_; } in char_count() function
|
D | pdfium_page.cc | 137 int char_count = in GetTextBoxAsValue() local 139 if (char_count > 0) { in GetTextBoxAsValue() 141 WriteInto(&text_utf16, char_count + 1)); in GetTextBoxAsValue() 144 data, char_count); in GetTextBoxAsValue()
|
/external/ppp/pppd/plugins/ |
D | winbind.c | 213 int char_count = 0; in base64_encode() local 222 char_count++; in base64_encode() 223 if (char_count == 3) { in base64_encode() 229 char_count = 0; in base64_encode() 234 if (char_count != 0) { in base64_encode() 235 bits <<= 16 - (8 * char_count); in base64_encode() 238 if (char_count == 1) { in base64_encode()
|
/external/chromium_org/chrome/test/chromedriver/ |
D | keycode_text_conversion_mac.mm | 53 UniCharCount char_count = 0; 64 &char_count, 66 if (status == noErr && char_count == 1 && !std::iscntrl(character)) {
|
/external/chromium_org/v8/src/ |
D | disassembler.h | 30 static int Decode(FILE* f, byte* pc, int* char_count);
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
D | error_fixer.py | 430 char_count = 0 433 char_count += len(token.string) 437 if char_count > 80 and token.line_number in self._file_changed_lines: 441 char_count = 0
|
/external/chromium_org/third_party/closure_linter/closure_linter/ |
D | error_fixer.py | 430 char_count = 0 433 char_count += len(token.string) 437 if char_count > 80 and token.line_number in self._file_changed_lines: 441 char_count = 0
|
/external/kernel-headers/original/uapi/linux/ |
D | cyclades.h | 74 unsigned long char_count; member
|
/external/chromium_org/ui/views/controls/textfield/ |
D | textfield_unittest.cc | 1662 const uint32 char_count = 10UL; in TEST_F() local 1672 gfx::Rect char_rect_in_screen_coord[char_count]; in TEST_F() 1674 for (uint32 i = 0; i < char_count; ++i) { in TEST_F() 1689 for (uint32 i = 0; i < char_count; ++i) { in TEST_F() 1697 EXPECT_FALSE(client->GetCompositionCharacterBounds(char_count, &rect)); in TEST_F() 1698 EXPECT_FALSE(client->GetCompositionCharacterBounds(char_count + 1, &rect)); in TEST_F() 1699 EXPECT_FALSE(client->GetCompositionCharacterBounds(char_count + 100, &rect)); in TEST_F()
|
/external/pdfium/core/src/fpdftext/ |
D | fpdf_text_int.cpp | 2493 int char_count = endPos - startPos + 1; local 2494 if(char_count < 1) { 2497 if (char_count == 1 && csPageText.GetAt(startPos) > 255) { 2503 if(startPos + char_count < csPageText.GetLength()) { 2504 char_right = csPageText.GetAt(startPos + char_count); 2517 if (char_count > 0) {
|