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

1 2

  /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);
  /external/chromium_org/ui/views/controls/
single_split_view_unittest.cc 20 const views::View* trailing = split.child_at(1); local
24 EXPECT_TRUE(trailing->bounds().IsEmpty());
29 EXPECT_FALSE(trailing->bounds().IsEmpty());
30 EXPECT_FALSE(leading->bounds().Intersects(trailing->bounds()));
34 EXPECT_EQ(trailing->bounds().height(), split.bounds().height());
35 EXPECT_LT(leading->bounds().width() + trailing->bounds().width(),
39 EXPECT_EQ(trailing->bounds().width(), split.bounds().width());
40 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/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/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,
335 * Copy the trailing data into the supplied buffer. Use uprv_memmove, since we
343 trailing,
391 * @param trailing Any trailing data to append to the new tag.
392 * @param trailingLength The length of the trailing data.
406 const char* trailing,
853 const char* trailing = ""; local
957 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/icu4c/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_linux.cc 117 int caret_pos = 0, trailing = 0; local
119 &caret_pos, &trailing);
121 DCHECK_GE(trailing, 0);
122 if (trailing > 0) {
124 trailing) - layout_text_;
129 (trailing > 0) ? CURSOR_BACKWARD : CURSOR_FORWARD);
render_text_win.cc 178 // Returns the X coordinate of the leading or |trailing| edge of the glyph
182 bool trailing) {
184 DCHECK_LT(index, run->range.end() + (trailing ? 0 : 1));
188 trailing,
245 int position = 0, trailing = 0; local
254 &trailing);
256 DCHECK_GE(trailing, 0);
258 const size_t cursor = LayoutIndexToTextIndex(position + trailing);
260 return SelectionModel(cursor, trailing ? CURSOR_BACKWARD : CURSOR_FORWARD);
    [all...]
  /external/chromium_org/ash/system/tray/
tray_background_view.cc 175 const gfx::ImageSkia* trailing = trailing_images_[orientation][state]; local
183 trailing_location = gfx::Point(bounds.width() - trailing->width(), 0);
187 bounds.width() - (leading->width() + trailing->width()),
191 trailing_location = gfx::Point(0, bounds.height() - trailing->height());
196 bounds.height() - (leading->height() + trailing->height()));
203 canvas->DrawImageInt(*trailing,
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
UniscribeHelper.cpp 307 int trailing; local
311 &trailing);
    [all...]
  /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...]
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 184 size_t trailing = host->size() - colonOffset; local
185 host->erase(colonOffset, trailing);
  /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 907 bool trailing = mmap_iter->start_addr < vma_start_addr; local
910 if (trailing)
921 mmap_dump_buffer->AppendString(trailing ? " (" : " ", 0);
923 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/jmonkeyengine/engine/src/core/com/jme3/input/
ChaseCamera.java 83 protected boolean trailing = false; field in class:ChaseCamera
336 //target moves, start trailing if it has to.
338 trailing = true;
358 //reseting the trailing lerp factor
360 //stop trailing user has the control
361 trailing = false;
365 if (trailingEnabled && trailing) {
383 //if there is an important change in the direction while trailing reset of the lerp factor to avoid jumpy movements
396 trailing = false;
638 * Only has an effect if smoothMotion is set to true and trailing is enabled
    [all...]
  /external/libxml2/
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/pixman/test/
utils.c 335 uint8_t *trailing; member in struct:__anon26250
380 ((info_t *)initial_page)->trailing = trailing_protected;
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
location_bar_view_gtk.cc 1198 GtkRequisition leading, icon, trailing; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
location_bar_view_gtk.cc 1658 GtkRequisition leading, icon, trailing; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 2778 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 

Completed in 440 milliseconds

1 2