/external/chromium_org/ui/base/accessibility/ |
accessible_text_utils.cc | 17 size_t text_size = text.size(); local 18 DCHECK(start_offset <= text_size); 21 if (direction == FORWARDS_DIRECTION && start_offset < text_size) 32 return text_size; 51 if (result >= text_size) 52 return text_size; 75 (pos == text_size - 1 || IsWhitespace(text[pos + 1]))) {
|
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
glcpp.c | 48 size_t text_size = 0; local 53 if (total_read + CHUNK + 1 > text_size) { 54 text_size = text_size ? text_size * 2 : CHUNK + 1; 55 text = reralloc_size (ctx, text, text_size);
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp.c | 48 size_t text_size = 0; local 53 if (total_read + CHUNK + 1 > text_size) { 54 text_size = text_size ? text_size * 2 : CHUNK + 1; 55 text = reralloc_size (ctx, text, text_size);
|
/external/chromium/chrome/browser/chromeos/ |
drop_shadow_label.cc | 74 gfx::Size text_size = Label::GetTextSize(); local 75 text_size.SetSize(text_size.width() + drop_shadow_size_, 76 text_size.height() + drop_shadow_size_); 77 return text_size;
|
/external/linux-tools-perf/util/ |
svghelper.c | 133 double text_size; local 140 text_size = (time2pixels(end)-time2pixels(start)); 142 text_size = text_size/2; 143 if (text_size > 1.25) 144 text_size = 1.25; 145 text_size = round_text_size(text_size); 147 if (text_size > MIN_TEXT_SIZE) 149 time2pixels(start), Yslot * SLOT_MULT + SLOT_HEIGHT - 1, text_size, cpu + 1) [all...] |
/external/chromium_org/third_party/libpng/ |
pngpread.c | 1240 png_size_t text_size; local 1248 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local 1340 png_size_t text_size; local 1348 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local 1358 png_size_t text_size, key_size; local 1540 png_size_t text_size; local 1548 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local [all...] |
/external/libpng/ |
pngpread.c | 1240 png_size_t text_size; local 1248 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local 1340 png_size_t text_size; local 1348 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local 1358 png_size_t text_size, key_size; local 1540 png_size_t text_size; local 1548 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngpread.c | 1093 png_size_t text_size; local 1096 text_size = png_ptr->buffer_size; 1099 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local 1191 png_size_t text_size; local 1197 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local 1207 png_size_t text_size, key_size; local 1382 png_size_t text_size; local 1388 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local [all...] |
pngrutil.c | 190 png_size_t text_size; local 200 text_size = 0; 217 text_size = prefix_size + png_sizeof(msg) + 1; 218 text = (png_charp)png_malloc_warn(png_ptr, text_size); 227 text[text_size - 1] = 0x00; 230 text_size = (png_size_t)(chunklength - (text - chunkdata) - 1); 231 text_size = png_sizeof(msg) > text_size ? text_size : 233 png_memcpy(text + prefix_size, msg, text_size + 1) [all...] |
/external/chromium_org/ash/system/ |
tray_caps_lock.cc | 86 const gfx::Size text_size = text_label_->size(); variable 87 text_label_->SetSize(gfx::Size(text_size.width() + new_x - old_x, 88 text_size.height()));
|
/external/chromium_org/ui/views/controls/ |
label.cc | 408 gfx::Size text_size(GetTextSize()); 409 text_size.set_width(std::min(available_rect.width(), text_size.width())); 421 text_origin.Offset((available_rect.width() + 1 - text_size.width()) / 2, 425 text_origin.set_x(available_rect.right() - text_size.width()); 432 std::max(0, (available_rect.height() - text_size.height())) / 2); 433 return gfx::Rect(text_origin, text_size);
|
/external/chromium_org/ui/gfx/ |
render_text_mac.h | 61 SkScalar text_size; member in struct:gfx::RenderTextMac::TextRun
|
render_text_mac.cc | 48 gfx::Font font(runs_[i].font_name, runs_[i].text_size); 170 renderer.SetTextSize(run.text_size); 184 text_size(0), 314 run->text_size = CTFontGetSize(ct_font);
|
render_text.cc | 282 const SkScalar text_size = paint_.getTextSize(); local 283 r.fTop = SkScalarMulAdd(text_size, kUnderlineOffset, y); 284 r.fBottom = r.fTop + SkScalarMul(text_size, kLineThickness); 290 const SkScalar text_size = paint_.getTextSize(); local 291 const SkScalar height = SkScalarMul(text_size, kLineThickness); 292 const SkScalar offset = SkScalarMulAdd(text_size, kStrikeThroughOffset, y); 298 const SkScalar text_size = paint_.getTextSize(); local 299 const SkScalar offset = SkScalarMul(text_size, kDiagonalStrikeMarginOffset); 304 paint.setStrokeWidth(SkScalarMul(text_size, kLineThickness) * 2); 305 canvas_skia_->drawLine(x, y, x + width, y - text_size + offset, paint) [all...] |
/external/chromium_org/chrome/browser/chromeos/input_method/ |
candidate_window_view.cc | 207 gfx::Size text_size = wrapped_shortcut_label->GetPreferredSize(); local 208 shortcut_column_width = std::max(shortcut_column_width, text_size.width()); 210 text_size.height()); 249 gfx::Size text_size = candidate_label->GetPreferredSize(); local 251 text_size.width()); 253 text_size.height()); 283 gfx::Size text_size = annotation_label->GetPreferredSize(); local 285 text_size.width()); 287 text_size.height()); [all...] |
/external/chromium_org/ui/views/controls/button/ |
text_button.cc | 336 gfx::Size text_size; local 337 CalculateTextSize(&text_size, w); 338 int height = text_size.height() + GetInsets().height(); 380 void TextButtonBase::CalculateTextSize(gfx::Size* text_size, int max_width) { 388 text_size->SetSize(w, h);
|
text_button.h | 199 void CalculateTextSize(gfx::Size* text_size, int max_width);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
tokenizer.cc | 1014 const size_t text_size = text.size(); local [all...] |
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_win.cc | 1213 LONG text_size = static_cast<LONG>(text.size()); local 1214 DCHECK((start_offset >= 0 && start_offset <= text_size) || 1220 start_offset = text_size; 1226 if (direction == 1 && start_offset < text_size) 1236 if (result >= text_size) 1237 return text_size; 1259 (pos == text_size - 1 || IsWhitespace(text[pos + 1]))) { [all...] |
/external/valgrind/main/coregrind/m_debuginfo/ |
debuginfo.c | 314 di->text_avma + di->text_size, 352 && curr->text_size > 0 354 || curr->text_avma + curr->text_size - 1 < start)) { [all...] |
readelf.c | 304 && di->text_size > 0 306 && sym_svma < text_svma + di->text_size) { 526 && di->text_size > 0 528 || *sym_avma_out >= di->text_avma + di->text_size); 582 di->text_avma + di->text_size); [all...] |
readmacho.c | 351 || sym_addr >= di->text_avma+di->text_size) { 371 di->text_avma+di->text_size - sym_addr; 799 di->text_size = seg->vmsize; [all...] |
readpdb.c | [all...] |
/external/chromium_org/ui/base/ime/win/ |
tsf_text_store.h | 156 ULONG text_size,
|
/external/chromium_org/win8/metro_driver/ime/ |
text_store.h | 166 ULONG text_size,
|