HomeSort by relevance Sort by last modified time
    Searched refs:line_count (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/ui/views/corewm/
tooltip_aura_unittest.cc 27 int width, line_count, expect_lines; local
39 width = line_count = -1;
44 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count);
46 EXPECT_EQ(expect_lines, line_count);
51 width = line_count = -1;
55 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count);
57 EXPECT_EQ(max_lines, line_count);
61 width = line_count = -1;
67 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count);
69 EXPECT_EQ(expect_lines, line_count);
    [all...]
tooltip_aura.h 27 // and |line_count| to the number of lines of text in the tooltip. |x| and |y|
33 int* line_count);
tooltip_aura.cc 91 int* line_count) {
93 *line_count = 0;
139 *line_count = result_lines.size();
240 int max_width, line_count; local
243 GetMaxWidth(location), &trimmed_text, &max_width, &line_count); local
  /external/chromium_org/media/tools/layout_tests/
trend_graph_unittest.py 32 line_count = 0
35 line_count += 1
36 self.assertEqual(line_count, 2)
  /external/clang/tools/clang-format/
clang-format-diff.py 34 def getOffsetLength(filename, line_number, line_count):
45 elif line_count > 0:
47 line_count -= 1
57 filename, line_number, line_count = r
63 offset, length = getOffsetLength(filename, line_number, line_count)
104 line_count = 1
106 line_count = int(match.group(3))
107 ranges.append((filename, int(match.group(1)), line_count))
git-clang-format 270 line_count) pairs.
283 line_count = 1
285 line_count = int(match.group(3))
286 if line_count > 0:
287 matches.setdefault(filename, []).append(Range(start_line, line_count))
359 '-lines=%s:%s' % (start_line, start_line+line_count-1)
360 for start_line, line_count in line_ranges])
  /frameworks/compile/slang/
slang-data.c 51 size_t line_count = nread / 16; local
56 for (i = 0; i < line_count; ++i, ptr += 16) {
73 for (i = line_count * 16; i < nread; ++i) {
  /bionic/tests/
stdio_test.cpp 113 const size_t line_count = 5; local
115 for (size_t i = 0; i < line_count; ++i) {
133 ASSERT_EQ(read_line_count, line_count);
  /external/chromium_org/base/debug/
trace_event_memory.cc 325 size_t line_count = Tokenize(input_string, "\n", &lines); local
326 if (line_count == 0) {
336 for (size_t i = 1; i < line_count; ++i) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_transfer.c 109 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/
nvc0_transfer.c 72 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/
nv50_transfer.c 109 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/
nvc0_transfer.c 72 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/chrome/browser/
bug_report_util.cc 241 size_t line_count = 0;
245 line_count++;
246 if (line_count > kMaxLineCount)
  /external/chromium_org/ui/views/widget/
tooltip_manager_win.cc 42 // to the width (in pixels) of the clipped text and |line_count| to the number
49 int* line_count) {
51 *line_count = 0;
60 *line_count = static_cast<int>(lines.size());
  /external/chromium_org/chrome/browser/feedback/
feedback_data.cc 110 const size_t line_count = std::count(content.begin(), content.end(), '\n'); local
111 if (line_count > kFeedbackMaxLineCount)
  /external/opencv/cvaux/include/
cvaux.h     [all...]
  /external/chromium/third_party/libevent/
event_rpcgen.py 17 line_count = 0 variable
37 self._tags[entry.Tag()], line_count)
    [all...]
  /external/chromium_org/third_party/libevent/
event_rpcgen.py 17 line_count = 0 variable
37 self._tags[entry.Tag()], line_count)
    [all...]
  /external/chromium_org/ash/system/user/
tray_user.cc 617 int line_count = lines.size(); local
618 if (!too_narrow && line_count == 3 &&
621 ++line_count;
622 if (too_narrow || line_count > 3)
632 int line_count = lines.size(); local
635 ++line_count;
642 line_count * line_height + link_extra_height + insets.height());
    [all...]
  /external/chromium_org/base/process/
process_metrics_linux.cc 772 size_t line_count = Tokenize(diskinfo_data, "\n", &diskinfo_lines); local
773 if (line_count == 0) {
802 for (size_t i = 0; i < line_count; i++) {
  /external/chromium_org/v8/src/
handles.cc 356 int line_count = line_ends.length(); local
357 Handle<FixedArray> array = isolate->factory()->NewFixedArray(line_count);
358 for (int i = 0; i < line_count; i++) {
  /external/v8/src/
handles.cc 469 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++) {
    [all...]
  /external/srec/tools/grxmlcompile/
grxmlcompile.cpp 129 int line_count = 0; local
132 if(line_count++ == line_num) break;
    [all...]
  /device/asus/flo/camera/
QCamera_Intf.h 827 uint32_t line_count; member in struct:__anon1882

Completed in 241 milliseconds

1 2