Searched defs:line_count (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/ui/views/widget/
H A Dtooltip_manager.cc28 int* line_count,
33 *line_count = 0;
48 *line_count = static_cast<int>(lines.size());
26 TrimTooltipToFit(string16* text, int* max_width, int* line_count, int x, int y, gfx::NativeView context) argument
H A Dtooltip_manager_win.cc349 int line_count; local
350 TrimTooltipToFit(&tooltip_text, &tooltip_width, &line_count,
370 line_count * tooltip_height_ };
/external/chromium_org/ui/views/corewm/
H A Dtooltip_controller_test_helper.cc55 int* line_count) {
56 TooltipController::TrimTooltipToFit(max_width, text, width, line_count);
52 TrimTooltipToFit(int max_width, string16* text, int* width, int* line_count) argument
H A Dtooltip_controller_unittest.cc218 int width, line_count, expect_lines; local
230 width = line_count = -1;
236 max_width, &tooltip, &width, &line_count);
238 EXPECT_EQ(expect_lines, line_count);
243 width = line_count = -1;
248 max_width, &tooltip, &width, &line_count);
250 EXPECT_EQ(max_lines, line_count);
254 width = line_count = -1;
261 max_width, &tooltip, &width, &line_count);
263 EXPECT_EQ(expect_lines, line_count);
[all...]
H A Dtooltip_controller.cc115 int max_width, line_count; local
119 &line_count);
356 int* line_count) {
358 *line_count = 0;
409 *line_count = result_lines.size();
353 TrimTooltipToFit(int max_width, string16* text, int* width, int* line_count) argument
/external/chromium_org/base/debug/
H A Dtrace_event_memory.cc312 size_t line_count = Tokenize(input_string, "\n", &lines); local
313 if (line_count == 0) {
323 for (size_t i = 1; i < line_count; ++i) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_transfer.c109 int line_count = height > 2047 ? 2047 : height; local
123 src_ofst += line_count * src->pitch;
129 dst_ofst += line_count * dst->pitch;
134 PUSH_DATA (push, line_count);
138 height -= line_count;
139 sy += line_count;
140 dy += line_count;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_transfer.c72 int line_count = height > 2047 ? 2047 : height; local
87 src_ofst += line_count * src->pitch;
94 dst_ofst += line_count * dst->pitch;
99 PUSH_DATA (push, line_count);
103 height -= line_count;
104 sy += line_count;
105 dy += line_count;
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_transfer.c109 int line_count = height > 2047 ? 2047 : height; local
123 src_ofst += line_count * src->pitch;
129 dst_ofst += line_count * dst->pitch;
134 PUSH_DATA (push, line_count);
138 height -= line_count;
139 sy += line_count;
140 dy += line_count;
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_transfer.c72 int line_count = height > 2047 ? 2047 : height; local
87 src_ofst += line_count * src->pitch;
94 dst_ofst += line_count * dst->pitch;
99 PUSH_DATA (push, line_count);
103 height -= line_count;
104 sy += line_count;
105 dy += line_count;
/external/chromium/third_party/libevent/
H A Devent_rpcgen.py17 line_count = 0 variable
37 self._tags[entry.Tag()], line_count)
1093 entry, line_count)
1152 newentry.SetLineCount(line_count)
1162 newentry.SetLineCount(line_count)
1193 global line_count
1207 line_count += 1
1244 line_count, line)
1259 line_count )
/external/chromium_org/chrome/browser/chromeos/
H A Dswap_metrics.cc269 size_t line_count = Tokenize(file_content, "\n", &lines); local
270 if (line_count < 2) {
274 for (size_t i = 0; i < line_count; ++i) {
/external/chromium_org/third_party/libevent/
H A Devent_rpcgen.py17 line_count = 0 variable
37 self._tags[entry.Tag()], line_count)
1093 entry, line_count)
1152 newentry.SetLineCount(line_count)
1162 newentry.SetLineCount(line_count)
1193 global line_count
1207 line_count += 1
1244 line_count, line)
1259 line_count )
/external/chromium_org/chrome/browser/feedback/
H A Dfeedback_util.cc241 const size_t line_count = std::count(content.begin(), content.end(), '\n'); local
242 if (line_count > kFeedbackMaxLineCount)
/external/chromium_org/v8/src/
H A Dhandles.cc462 int line_count = line_ends.length(); local
463 Handle<FixedArray> array = isolate->factory()->NewFixedArray(line_count);
464 for (int i = 0; i < line_count; i++) {
/external/srec/tools/grxmlcompile/
H A Dgrxmlcompile.cpp129 int line_count = 0; local
132 if(line_count++ == line_num) break;
/external/v8/src/
H A Dhandles.cc469 int line_count = line_ends.length(); local
470 Handle<FixedArray> array = isolate->factory()->NewFixedArray(line_count);
471 for (int i = 0; i < line_count; i++) {
/external/chromium_org/ash/system/user/
H A Dtray_user.cc553 int line_count = lines.size(); local
554 if (!too_narrow && line_count == 3 &&
557 ++line_count;
559 if (too_narrow || line_count > 3)
569 int line_count = lines.size(); local
572 ++line_count;
579 line_count * line_height + link_extra_height + insets.height());

Completed in 396 milliseconds