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

1 2 3

  /external/chromium/testing/gtest/samples/
sample2.h 77 size_t Length() const {
  /external/gtest/samples/
sample2.h 77 size_t Length() const {
  /external/protobuf/gtest/samples/
sample2.h 77 size_t Length() const {
  /external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.h 46 size_t Length() const { return end_ - start_; }
  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase.cc 66 int FileMetadataPropertyIterator::Length() {
  /external/chromium/sdch/open-vcdiff/src/
varint_bigendian.cc 29 // Reads a variable-length integer from **varint_ptr
30 // and returns it in a fixed-length representation. Increments
69 int length = 1; local
77 ++length;
80 return length;
86 const int length = EncodeInternal(v, varint_buf); local
87 memcpy(ptr, &varint_buf[kMaxBytes - length], length);
88 return length;
95 const int length = EncodeInternal(value, varint_buf) local
104 const int length = EncodeInternal(value, varint_buf); local
117 int length = 0; local
    [all...]
  /external/llvm/runtime/libprofile/
CommonProfiling.c 38 unsigned Length, i;
65 for (Length = 0, i = 0; i != (unsigned)argc; ++i)
66 Length += strlen(argv[i])+1;
68 SavedArgs = (char*)malloc(Length);
69 for (Length = 0, i = 0; i != (unsigned)argc; ++i) {
71 memcpy(SavedArgs+Length, argv[i], Len);
72 Length += Len;
73 SavedArgs[Length++] = ' ';
76 SavedArgsLength = Length;
  /external/chromium/base/win/
scoped_bstr.cc 62 size_t ScopedBstr::Length() const {
  /external/clang/test/SemaCXX/
constructor.cpp 41 struct Length {
42 Length l() const { return *this; }
references.cpp 94 unsigned Length;
  /external/llvm/include/llvm/ADT/
ArrayRef.h 20 /// consecutively in memory), i.e. a start pointer and a length. It allows
42 size_type Length;
49 /*implicit*/ ArrayRef() : Data(0), Length(0) {}
53 : Data(&OneElt), Length(1) {}
55 /// Construct an ArrayRef from a pointer and length.
56 /*implicit*/ ArrayRef(const T *data, size_t length)
57 : Data(data), Length(length) {}
61 : Data(begin), Length(end - begin) {}
65 : Data(Vec.data()), Length(Vec.size()) {
    [all...]
StringRef.h 24 /// array and a length, which need not be null terminated.
41 /// The length of the string.
42 size_t Length;
52 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) {
53 if (Length == 0) { return 0; }
54 return ::memcmp(Lhs,Rhs,Length);
62 /*implicit*/ StringRef() : Data(0), Length(0) {}
68 Length = ::strlen(Str); // invoking strlen(NULL) is undefined behavior
71 /// Construct a string ref from a pointer and length.
72 /*implicit*/ StringRef(const char *data, size_t length)
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugAranges.h 25 : LoPC(lo), Length(hi-lo), Offset(off) {}
29 Length = 0;
35 Length = 0;
37 Length = HiPC - LoPC;
40 if (Length)
41 return LoPC + Length;
44 bool isValidRange() const { return Length > 0; }
59 uint32_t Length; // End of address range (not including this address)
DWARFCompileUnit.h 26 uint32_t Length;
58 uint32_t getNextCompileUnitOffset() const { return Offset + Length + 4; }
60 size_t getDebugInfoSize() const { return Length + 4 - getSize(); }
61 uint32_t getLength() const { return Length; }
DWARFDebugArangeSet.h 23 // The total length of the entries for that set, not including the length
25 uint32_t Length;
41 uint64_t Length;
42 uint64_t getEndAddress() const { return Address + Length; }
62 uint32_t getOffsetOfNextEntry() const { return Offset + Header.Length + 4; }
  /external/llvm/lib/Target/
TargetInstrInfo.cpp 146 /// length.
151 /// Variable-length instructions are not handled here; this function
159 unsigned Length = 0;
165 Length += MAI.getMaxInstLength();
173 return Length;
  /system/media/mca/filterpacks/base/native/
vec_types.h 40 T Length() {
geometry.cpp 25 float Point::Length() const {
30 float length = Length(); local
31 if (length == 0.0f) {
34 x_ *= new_length / length;
35 y_ *= new_length / length;
41 return diff.Length();
89 bool Rect::ExpandToMinLength(float length) {
90 if (width <= 0.0f || height <= 0.0f || length <= 0.0f) {
95 if (length > current_length)
    [all...]
  /external/v8/src/
unicode-inl.h 66 int length = T::Convert(c, n, result, &allow_caching); local
68 if (length == 1) {
76 return length;
105 uchar Utf8::ValueOf(const byte* bytes, unsigned length, unsigned* cursor) {
106 if (length <= 0) return kBadChar;
113 return CalculateValue(bytes, length, cursor);
116 unsigned Utf8::Length(uchar c) {
231 Utf8InputBuffer<s>::Utf8InputBuffer(const char* data, unsigned length)
233 length)) {
  /system/media/mca/filterfw/native/core/
geometry.cpp 26 float Point::Length() const {
31 float length = Length(); local
32 if (length == 0.0f) {
35 x_ *= new_length / length;
36 y_ *= new_length / length;
42 return diff.Length();
90 bool Rect::ExpandToMinLength(float length) {
91 if (width <= 0.0f || height <= 0.0f || length <= 0.0f) {
96 if (length > current_length)
    [all...]
  /external/chromium/googleurl/src/
url_parse.cc 191 DCHECK(path.len > 0) << "We should never have 0 length paths";
267 // |spec| is the full spec being parsed, of length |spec_len|.
367 // -1, rather than having a length of 0 (we normally wouldn't care so
434 // -1, rather than having a length of 0
571 int Parsed::Length() const {
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 294 unsigned Length = sizeof(unsigned);
305 Length += sizeof(unsigned);
312 Length += sizeof(void *);
316 return Length;
321 unsigned Length = 0;
323 Length += getLocalDataLength(Qualifier);
324 return Length;
  /external/clang/lib/Driver/
OptTable.cpp 300 // Find the maximum option length.
308 unsigned Length = OptionHelp[i].first.size();
309 if (Length <= 23)
310 OptionFieldWidth = std::max(OptionFieldWidth, Length);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p4.cpp 221 struct Length {
222 explicit constexpr Length(int i = 0) : val(i) { }
  /external/freetype/src/truetype/
ttobjs.c 188 FT_ULong length )
195 if ( FT_FRAME_ENTER( length ) )
198 for ( ; length > 3; length -= 4 )
201 for ( i = 3; length > 0; length --, i-- )
231 face->dir_tables[i].Length );
238 FT_ULong Length;
362 if ( face->dir_tables[i].Length == sfnt_id[j][k].Length )
    [all...]

Completed in 714 milliseconds

1 2 3