HomeSort by relevance Sort by last modified time
    Searched defs:trailing (Results 1 - 24 of 24) sorted by null

  /external/clang/test/CodeGen/
count-builtins.c 3 int leading, trailing, pop; variable
7 trailing = __builtin_ctzs(P);
16 trailing = __builtin_ctz(P);
27 trailing = __builtin_ctzll(P);
mips-count-builtins.c 6 int leading, trailing, pop; variable
10 trailing = __builtin_ctzs(P);
19 trailing = __builtin_ctz(P);
28 trailing = __builtin_ctzll(P);
  /external/chromium_org/ui/views/controls/
single_split_view_unittest.cc 17 const views::View* trailing = split.child_at(1); local
21 EXPECT_TRUE(trailing->bounds().IsEmpty());
26 EXPECT_FALSE(trailing->bounds().IsEmpty());
27 EXPECT_FALSE(leading->bounds().Intersects(trailing->bounds()));
31 EXPECT_EQ(trailing->bounds().height(), split.bounds().height());
32 EXPECT_LT(leading->bounds().width() + trailing->bounds().width(),
36 EXPECT_EQ(trailing->bounds().width(), split.bounds().width());
37 EXPECT_LT(leading->bounds().height() + trailing->bounds().height(),
  /external/chromium_org/third_party/skia/src/views/
SkTextBox.cpp 18 size_t* trailing = NULL)
26 if (trailing) {
27 *trailing = 0;
46 if (trailing) {
47 *trailing = text - prevText;
72 if (trailing) {
73 *trailing = lineBreakSize;
88 if (trailing) {
89 *trailing = lineBreakSize;
227 size_t trailing; local
    [all...]
  /external/chromium_org/ui/views/window/
custom_frame_view_unittest.cc 150 const std::vector<views::FrameButton>& trailing = trailing_buttons(); local
151 EXPECT_EQ(trailing.size(), 3u);
153 EXPECT_EQ(trailing[0], FRAME_BUTTON_MINIMIZE);
154 EXPECT_EQ(trailing[1], FRAME_BUTTON_MAXIMIZE);
155 EXPECT_EQ(trailing[2], FRAME_BUTTON_CLOSE);
185 std::vector<views::FrameButton> trailing; local
187 SetWindowButtonOrder(leading, trailing);
260 std::vector<views::FrameButton> trailing; local
261 trailing.push_back(views::FRAME_BUTTON_MINIMIZE);
262 SetWindowButtonOrder(leading, trailing);
    [all...]
  /external/chromium_org/ash/wm/
system_gesture_event_filter_unittest.cc 148 std::vector<views::FrameButton> trailing; variable
149 trailing.push_back(views::FRAME_BUTTON_MINIMIZE);
150 trailing.push_back(views::FRAME_BUTTON_MAXIMIZE);
151 trailing.push_back(views::FRAME_BUTTON_CLOSE);
153 SetWindowButtonOrder(leading, trailing);
  /external/chromium_org/third_party/icu/source/common/
loclikely.cpp 142 * @param trailing Any trailing data to append to the new tag.
143 * @param trailingLength The length of the trailing data.
158 const char* trailing,
328 if (*trailing != '@' && capacityRemaining > 0) {
340 * Copy the trailing data into the supplied buffer. Use uprv_memmove, since we
348 trailing,
396 * @param trailing Any trailing data to append to the new tag.
397 * @param trailingLength The length of the trailing data
860 const char* trailing = ""; local
967 const char* trailing = ""; local
    [all...]
  /external/doclava/src/com/google/doclava/
SampleTagInfo.java 33 * The @sample tag copies the text from the given file, stripping leading and trailing whitespace,
131 int trailing = 0; local
173 for (int i = 0; i < trailing; i++) {
178 trailing = 1; // add \n next time, maybe
180 trailing++;
209 int trailing = 0; local
231 for (int i = 0; i < trailing; i++) {
242 trailing = 1; // add \n next time, maybe
252 trailing++;
  /external/icu/icu4c/source/common/
loclikely.cpp 142 * @param trailing Any trailing data to append to the new tag.
143 * @param trailingLength The length of the trailing data.
158 const char* trailing,
328 if (*trailing != '@' && capacityRemaining > 0) {
340 * Copy the trailing data into the supplied buffer. Use uprv_memmove, since we
348 trailing,
396 * @param trailing Any trailing data to append to the new tag.
397 * @param trailingLength The length of the trailing data
860 const char* trailing = ""; local
967 const char* trailing = ""; local
    [all...]
  /external/chromium_org/ui/gfx/
render_text_pango.cc 127 int caret_pos = 0, trailing = 0; local
129 &caret_pos, &trailing);
131 DCHECK_GE(trailing, 0);
132 if (trailing > 0) {
134 trailing) - layout_text_;
139 (trailing > 0) ? CURSOR_BACKWARD : CURSOR_FORWARD);
render_text_win.cc 309 // Returns the X coordinate of the leading or |trailing| edge of the glyph
313 bool trailing) {
315 DCHECK_LT(index, run->range.end() + (trailing ? 0 : 1));
319 trailing,
555 int position = 0, trailing = 0; local
564 &trailing);
566 DCHECK_GE(trailing, 0);
568 const size_t cursor = LayoutIndexToTextIndex(position + trailing);
570 return SelectionModel(cursor, trailing ? CURSOR_BACKWARD : CURSOR_FORWARD);
    [all...]
  /external/chromium_org/ash/system/tray/
tray_background_view.cc 183 const gfx::ImageSkia* trailing = trailing_images_[orientation][state]; variable
191 trailing_location = gfx::Point(bounds.width() - trailing->width(), 0);
195 bounds.width() - (leading->width() + trailing->width()),
199 trailing_location = gfx::Point(0, bounds.height() - trailing->height());
204 bounds.height() - (leading->height() + trailing->height()));
211 canvas->DrawImageInt(*trailing,
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.cc 257 string leading, trailing; local
258 input_->NextWithComments(&trailing, NULL, &leading);
265 location->AttachComments(&leading, &trailing);
362 string* leading, string* trailing) const {
369 if (!trailing->empty()) {
370 location_->mutable_trailing_comments()->swap(*trailing);
    [all...]
  /external/chromium_org/third_party/libxml/src/
encoding.c 224 int trailing; local
239 if (d < 0x80) { c= d; trailing= 0; }
241 /* trailing byte in leading position */
245 } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; }
246 else if (d < 0xF0) { c= d & 0x0F; trailing= 2; }
247 else if (d < 0xF8) { c= d & 0x07; trailing= 3; }
255 if (inend - in < trailing) {
259 for ( ; trailing; trailing--) {
397 int trailing; local
576 int trailing; local
818 int trailing; local
    [all...]
HTMLparser.c 1954 int trailing; local
2058 int trailing; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
deep-heap-profile.cc 937 bool trailing = mmap_iter->start_addr < vma_start_addr; local
940 if (trailing)
953 mmap_dump_buffer->AppendString(trailing ? " (" : " ", 0);
955 mmap_dump_buffer->AppendString(trailing ? ")" : " ", 0);
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
SplitterTest.java 76 String trailing = "a,b,c,"; local
77 Iterable<String> letters = COMMA_SPLITTER.split(trailing);
177 String trailing = "a,b,c,"; local
178 Iterable<String> letters = Splitter.on(",").split(trailing);
308 String trailing = "a,b,c,"; local
309 Iterable<String> letters = Splitter.onPattern(",").split(trailing);
  /external/libxml2/
encoding.c 228 int trailing; local
243 if (d < 0x80) { c= d; trailing= 0; }
245 /* trailing byte in leading position */
249 } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; }
250 else if (d < 0xF0) { c= d & 0x0F; trailing= 2; }
251 else if (d < 0xF8) { c= d & 0x07; trailing= 3; }
259 if (inend - in < trailing) {
263 for ( ; trailing; trailing--) {
401 int trailing; local
580 int trailing; local
822 int trailing; local
    [all...]
HTMLparser.c 1994 int trailing; local
2098 int trailing; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 2985 size_t trailing = message->find(delimiter); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 740 milliseconds