HomeSort by relevance Sort by last modified time
    Searched full:truncated (Results 1 - 25 of 1574) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/tests/data/viewport/
viewport-warnings-4.html 2 <title>Truncated value.</title>
  /external/chromium_org/ui/
ui_unittests.isolate 9 'base/test/data/data_pack_unittest/truncated-header.pak',
  /external/clang/test/SemaCXX/
bitfield-layout.cpp 8 char c : 9; // expected-warning {{size of bit-field 'c' (9 bits) exceeds the size of its type; value will be truncated to 8 bits}}
14 char c : 16; // expected-warning {{size of bit-field 'c' (16 bits) exceeds the size of its type; value will be truncated to 8 bits}}
20 char c : 32; // expected-warning {{size of bit-field 'c' (32 bits) exceeds the size of its type; value will be truncated to 8 bits}}
26 char c : 64; // expected-warning {{size of bit-field 'c' (64 bits) exceeds the size of its type; value will be truncated to 8 bits}}
  /external/valgrind/main/memcheck/tests/
long-supps.c 2 // truncated and so not matching. This 200 char limit is easily overcome with
long_namespace_xml.cpp 2 /* Check that very long function names are safely truncated in
  /frameworks/base/wifi/java/android/net/wifi/
BatchedScanResult.java 35 public boolean truncated; field in class:BatchedScanResult
45 truncated = source.truncated;
54 append("truncated: ").append(String.valueOf(truncated)).
70 dest.writeInt(truncated ? 1 : 0);
82 result.truncated = (in.readInt() == 1);
  /external/chromium_org/sync/engine/
traffic_recorder.cc 25 bool truncated,
29 truncated(truncated),
35 truncated(false) {
66 if (truncated) {
70 value->SetBoolean("truncated", true);
119 bool truncated = false; local
123 truncated = true;
128 TrafficRecord record(message, type, truncated, GetTime());
traffic_recorder.h 38 // truncated. For now the entire message is omitted if it is too big.
40 bool truncated; member in struct:syncer::TrafficRecorder::TrafficRecord
44 bool truncated,
  /external/skia/bench/
BenchTimer.h 22 * platform specific Timer with a simple interface. The truncated
24 * its rendering. It should always be <= the un-truncated system
  /external/valgrind/main/massif/tests/
long-names.c 3 // This function name is long enough to get truncated. Nb: we need multiple
5 // result in a different number of chars from this name being truncated.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DefiniteLengthInputStream.java 54 throw new EOFException("DEF length " + _originalLength + " object truncated by " + _remaining);
78 throw new EOFException("DEF length " + _originalLength + " object truncated by " + _remaining);
100 throw new EOFException("DEF length " + _originalLength + " object truncated by " + _remaining);
  /libcore/luni/src/main/java/java/sql/
DataTruncation.java 25 * (resulting in an error). The {@code SQLState} error code for truncated data
58 * truncated.
60 * {@code true} if it was a parameter value that was truncated,
66 * the original size of the truncated data.
87 * truncated
89 * true if it was a Parameter value that was truncated, false
95 * the original size of the truncated data
125 * Gets the index of the column or of the parameter that was truncated.
134 * Gets whether the value truncated was a parameter value or a column value.
136 * @return {@code true} if the value truncated was a parameter value
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
RootInputStream.java 28 * can also be truncated. When truncated the stream will appear to have
39 private boolean truncated = false; field in class:RootInputStream
67 this.truncated = true;
74 if (truncated) {
91 if (truncated) {
  /external/clang/test/CodeGen/
2008-01-07-UnusualIntSize.c 9 // This should have %0 and %1 truncated to 33 bits before any operation.
  /external/openssh/regress/
brokenkeys.sh 12 # Truncated key
  /external/chromium_org/third_party/WebKit/ManualTests/
autofill-popup-width-and-item-direction.html 11 If the submitted input text is longer, it will be truncated to fit in the
18 truncated to fit in.
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
raw_printer_test.cc 35 TEST(RawPrinter, Truncated) {
56 RUN_TEST(RawPrinter, Truncated);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
raw_printer_test.cc 35 TEST(RawPrinter, Truncated) {
56 RUN_TEST(RawPrinter, Truncated);
  /external/chromium/base/
string_util_unittest.cc 59 bool Truncated(const std::string& input, const size_t byte_size,
72 EXPECT_FALSE(Truncated("", 0, &output));
74 EXPECT_TRUE(Truncated("\xe1\x80\xbf", 0, &output));
76 EXPECT_FALSE(Truncated("\xe1\x80\xbf", -1, &output));
77 EXPECT_FALSE(Truncated("\xe1\x80\xbf", 4, &output));
80 EXPECT_TRUE(Truncated("abc", 2, &output));
82 EXPECT_TRUE(Truncated("\xc2\x81\xc2\x81", 2, &output));
84 EXPECT_TRUE(Truncated("\xc2\x81\xc2\x81", 3, &output));
86 EXPECT_FALSE(Truncated("\xc2\x81\xc2\x81", 4, &output));
92 EXPECT_TRUE(Truncated(array_string, 4, &output))
    [all...]
  /external/chromium_org/base/strings/
string_util_unittest.cc 60 bool Truncated(const std::string& input, const size_t byte_size,
73 EXPECT_FALSE(Truncated(std::string(), 0, &output));
75 EXPECT_TRUE(Truncated("\xe1\x80\xbf", 0, &output));
77 EXPECT_FALSE(Truncated("\xe1\x80\xbf", -1, &output));
78 EXPECT_FALSE(Truncated("\xe1\x80\xbf", 4, &output));
81 EXPECT_TRUE(Truncated("abc", 2, &output));
83 EXPECT_TRUE(Truncated("\xc2\x81\xc2\x81", 2, &output));
85 EXPECT_TRUE(Truncated("\xc2\x81\xc2\x81", 3, &output));
87 EXPECT_FALSE(Truncated("\xc2\x81\xc2\x81", 4, &output));
93 EXPECT_TRUE(Truncated(array_string, 4, &output))
    [all...]
  /external/icu4c/samples/uresb/
en.txt 17 "Truncated char found",
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
PhoneNumberTestService.java 97 String truncated = ""; local
105 truncated = util.format(pn, format);
110 + ") = " + formatted + " / truncated = " + truncated
  /external/chromium_org/third_party/icu/source/i18n/unicode/
uldnames.h 128 * greater than maxResultSize, the returned name will be truncated.
148 * greater than maxResultSize, the returned name will be truncated.
166 * greater than maxResultSize, the returned name will be truncated.
184 * greater than maxResultSize, the returned name will be truncated.
202 * greater than maxResultSize, the returned name will be truncated.
220 * greater than maxResultSize, the returned name will be truncated.
238 * greater than maxResultSize, the returned name will be truncated.
257 * greater than maxResultSize, the returned name will be truncated.
  /external/icu4c/i18n/unicode/
uldnames.h 129 * greater than maxResultSize, the returned name will be truncated.
149 * greater than maxResultSize, the returned name will be truncated.
167 * greater than maxResultSize, the returned name will be truncated.
185 * greater than maxResultSize, the returned name will be truncated.
203 * greater than maxResultSize, the returned name will be truncated.
221 * greater than maxResultSize, the returned name will be truncated.
239 * greater than maxResultSize, the returned name will be truncated.
258 * greater than maxResultSize, the returned name will be truncated.
  /external/oprofile/events/mips/vr5432/
events 5 event:0x1 counters:0,1 um:zero minimum:500 name:INSTRUCTIONS_EXECUTED : (Instructions executed)/2 and truncated
9 event:0x5 counters:0,1 um:zero minimum:500 name:FP_INSTRUCTIONS : (FP instruction execution) / 2 and truncated excluding cp1 loads and stores

Completed in 1070 milliseconds

1 2 3 4 5 6 7 8 91011>>