Searched defs:Length (Results 26 - 50 of 192) sorted by relevance

12345678

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvreader.cpp86 int MkvReader::Length(long long* total, long long* available) { function in class:mkvparser::MkvReader
/external/chromium_org/third_party/webrtc/base/
H A Dbytebuffer.h41 size_t Length() const { return end_ - start_; } function in class:rtc::ByteBuffer
83 // Clears the contents of the buffer. After this, Length() will be 0.
/external/chromium_org/ui/gfx/geometry/
H A Dvector2d_f.cc35 float Vector2dF::Length() const { function in class:gfx::Vector2dF
H A Dvector3d_f.cc56 float Vector3dF::Length() const { function in class:gfx::Vector3dF
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvreader.cpp95 int MkvReader::Length(long long* total, long long* available) function in class:mkvparser::MkvReader
/external/llvm/lib/DebugInfo/
H A DDWARFDebugArangeSet.h26 uint32_t Length; member in struct:llvm::DWARFDebugArangeSet::Header
42 uint64_t Length; member in struct:llvm::DWARFDebugArangeSet::Descriptor
43 uint64_t getEndAddress() const { return Address + Length; }
H A DDWARFDebugLoc.h62 uint32_t Length; member in struct:llvm::DWARFDebugLocDWO::Entry
H A DDWARFDebugAranges.h37 : LowPC(LowPC), Length(HighPC - LowPC), CUOffset(CUOffset) {}
41 Length = 0;
43 Length = HighPC - LowPC;
46 if (Length)
47 return LowPC + Length;
59 uint32_t Length; // End of address range (not including this address). member in struct:llvm::DWARFDebugAranges::Range
/external/llvm/lib/Support/
H A DStringRef.cpp41 static int ascii_strncasecmp(const char *LHS, const char *RHS, size_t Length) { argument
42 for (size_t I = 0; I < Length; ++I) {
53 if (int Res = ascii_strncasecmp(Data, RHS.Data, min(Length, RHS.Length)))
55 if (Length == RHS.Length)
57 return Length < RHS.Length ? -1 : 1;
62 return Length >= Prefix.Length
[all...]
/external/chromium_org/base/win/
H A Dscoped_bstr.cc62 size_t ScopedBstr::Length() const { function in class:base::win::ScopedBstr
/external/chromium_org/content/common/dom_storage/
H A Ddom_storage_map.cc38 unsigned DOMStorageMap::Length() const { function in class:content::DOMStorageMap
/external/chromium_org/media/cast/net/rtcp/
H A Dtest_rtcp_packet_builder.h86 int Length() { return kMaxIpPacketSize - big_endian_writer_.remaining(); } function in class:media::cast::TestRtcpPacketBuilder
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfStreamCommonDictionary_autogen.cpp11 int64_t SkPdfStreamCommonDictionary::Length(SkPdfNativeDoc* doc) { function in class:SkPdfStreamCommonDictionary
12 SkPdfNativeObject* ret = get("Length", "");
20 return get("Length", "") != NULL;
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dencoded_frame.h59 uint32_t Length() const {return _length;} function in class:webrtc::VCMEncodedFrame
/external/clang/include/clang/Tooling/
H A DRefactoring.h38 Range() : Offset(0), Length(0) {}
39 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} argument
44 unsigned getLength() const { return Length; }
51 return Offset + Length > RHS.Offset && Offset < RHS.Offset + RHS.Length;
57 (RHS.Offset + RHS.Length) <= (Offset + Length);
63 unsigned Length; member in class:clang::tooling::Range
[all...]
/external/clang/lib/Parse/
H A DParseAST.cpp65 unsigned Length = Tok.getLength(); local
71 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
/external/clang/test/SemaCXX/
H A Dconstructor.cpp43 struct Length { struct
44 Length l() const { return *this; }
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h37 unsigned Length, Size, Type; member in class:llvm::InlineAsmIdentifierInfo
42 Length = 1;
/external/llvm/lib/Target/SystemZ/InstPrinter/
H A DSystemZInstPrinter.cpp149 uint64_t Length = MI->getOperand(OpNum + 2).getImm(); local
150 O << Disp << '(' << Length; local
/external/llvm/unittests/Support/
H A DSourceMgrTest.cpp35 SMRange getRange(unsigned Offset, unsigned Length) { argument
36 return SMRange(getLoc(Offset), getLoc(Offset + Length));
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfStreamCommonDictionary_autogen.cpp11 int64_t SkPdfStreamCommonDictionary::Length(SkPdfNativeDoc* doc) { function in class:SkPdfStreamCommonDictionary
12 SkPdfNativeObject* ret = get("Length", "");
20 return get("Length", "") != NULL;
/external/chromium_org/courgette/
H A Dstreams.h141 size_t Length() const { return buffer_.size(); } function in class:courgette::SinkStream
143 // Returns a pointer to contiguously allocated Length() bytes in the stream.
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc29 int32_t ByteArray::Length() { return filled_length_; } function in class:sfntly::ByteArray
96 return CopyTo(array, 0, Length());
127 return CopyTo(os, 0, Length());
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddtmf_buffer.h85 virtual size_t Length() const { return buffer_.size(); } function in class:webrtc::DtmfBuffer
/external/chromium_org/v8/src/
H A Dunicode-inl.h140 unsigned Utf8::Length(uchar c, int previous) { function in class:unibrow::Utf8

Completed in 3526 milliseconds

12345678