/ndk/tests/build/awk-trailing-r/jni/ |
Android.mk | 3 LOCAL_MODULE := awk-trailing-r 4 LOCAL_SRC_FILES := awk-trailing-r.c
|
/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/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/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/net/data/proxy_resolver_v8_unittest/ |
ends_with_comment.js | 5 // We end the script with a comment (and no trailing newline).
|
/external/chromium-libpac/test/js-unittest/ |
ends_with_comment.js | 5 // We end the script with a comment (and no trailing newline).
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
ends_with_comment.js | 5 // We end the script with a comment (and no trailing newline).
|
/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(),
|
single_split_view.h | 30 View* trailing, 67 // changes. The default is true. A value of false results in the trailing 73 // Calculates ideal leading and trailing view bounds according to the given
|
/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++;
|
/ndk/tests/build/issue42841-LOCAL_PATH/jni/ |
Android.mk | 1 # Note that the line LOCAL_PATH ends with trailing space and
|
/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...] |
/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/ |
BasicNfcEeTest.java | 62 byte[] trailing = Arrays.copyOfRange(out, 65 assertByteArrayEquals(SELECT_CARD_MANAGER_RESPONSE, trailing); 80 byte[] trailing = Arrays.copyOfRange(out,
|
/art/test/ |
run-test | 265 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null 284 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null 310 diff --strip-trailing-cr -u "$expected" "$output"
|
/dalvik/tests/ |
run-test | 226 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null 247 diff --strip-trailing-cr -u "$expected" "$output"
|
/external/chromium_org/tools/grit/grit/extern/ |
tclib.py | 80 # phrwr fields, as a result of that, the trailing spaces 83 # trailing spaces during equivalence comparison. 148 # Strips leading and trailing whitespace, and returns a tuple 149 # containing the leading and trailing space that was removed. 151 leading = trailing = '' 162 trailing = s0[len(s):] 164 return leading, trailing 375 # Strips leading and trailing whitespace, and returns a tuple 376 # containing the leading and trailing space that was removed. 378 leading = trailing = ' [all...] |
/build/core/ |
multi_prebuilt.mk | 52 $(error $(LOCAL_PATH): Leading or trailing colons in "$(1)")) \
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tabnanny.py | 144 # the normal form as a pair (count, trailing), where: 148 # trailing 149 # the number of trailing spaces in raw[:n] 181 count, trailing = self.norm 182 return max(len(count)-1, trailing) 192 # il = trailing + sum (i/ts + 1)*ts*count[i] = 193 # trailing + ts * sum (i/ts + 1)*count[i] = 194 # trailing + ts * sum i/ts*count[i] + count[i] = 195 # trailing + ts * [(sum i/ts*count[i]) + (sum count[i])] = 196 # trailing + ts * [(sum i/ts*count[i]) + num_tabs [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tabnanny.py | 144 # the normal form as a pair (count, trailing), where: 148 # trailing 149 # the number of trailing spaces in raw[:n] 181 count, trailing = self.norm 182 return max(len(count)-1, trailing) 192 # il = trailing + sum (i/ts + 1)*ts*count[i] = 193 # trailing + ts * sum (i/ts + 1)*count[i] = 194 # trailing + ts * sum i/ts*count[i] + count[i] = 195 # trailing + ts * [(sum i/ts*count[i]) + (sum count[i])] = 196 # trailing + ts * [(sum i/ts*count[i]) + num_tabs [all...] |
/external/chromium_org/tools/grit/grit/format/ |
html_inline.py | 26 # Matches beginning of an "if" block with trailing spaces. 212 trailing = str[end_if.end():] 215 str = leading + CheckConditionalElements(content) + trailing 217 str = leading + trailing
|
/external/clang/test/Parser/ |
cxx0x-attributes.cpp | 135 auto trailing() -> [[]] const int; // expected-error {{an attribute list cannot appear here}} 136 auto trailing() -> const [[]] int; // expected-error {{an attribute list cannot appear here}} 137 auto trailing() -> const int [[]];
|
/external/chromium_org/ash/system/tray/ |
tray_background_view.cc | 174 const gfx::ImageSkia* trailing = trailing_images_[orientation][state]; local 182 trailing_location = gfx::Point(bounds.width() - trailing->width(), 0); 186 bounds.width() - (leading->width() + trailing->width()), 190 trailing_location = gfx::Point(0, bounds.height() - trailing->height()); 195 bounds.height() - (leading->height() + trailing->height())); 202 canvas->DrawImageInt(*trailing,
|
/external/chromium_org/ui/gfx/ |
render_text_pango.cc | 108 int caret_pos = 0, trailing = 0; local 110 &caret_pos, &trailing); 112 DCHECK_GE(trailing, 0); 113 if (trailing > 0) { 115 trailing) - layout_text_; 120 (trailing > 0) ? CURSOR_BACKWARD : CURSOR_FORWARD);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
text_file.py | 19 leading and/or trailing whitespace. All of these are optional 46 strip trailing whitespace (including line terminator!) from 63 Note that since 'rstrip_ws' can strip the trailing newline, the 205 # Have to preserve the trailing newline, because it's 209 # and has no trailing newline, we will think that it's 259 # trailing, or one or the other, or neither)
|