Searched defs:Size (Results 26 - 50 of 555) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_object_enumerator.cc36 int64 MTPDeviceObjectEnumerator::Size() { function in class:MTPDeviceObjectEnumerator
/external/chromium_org/chrome/installer/mini_installer/
H A Dpe_resource.cc20 size_t PEResource::Size() { function in class:PEResource
35 size_t resource_size = Size();
/external/chromium_org/net/spdy/
H A Dhpack_entry.cc42 size_t HpackEntry::Size(StringPiece name, StringPiece value) { function in class:net::HpackEntry
45 size_t HpackEntry::Size() const { function in class:net::HpackEntry
46 return Size(name(), value());
H A Dhpack_entry_test.cc45 size_t Size() { function in class:net::__anon9575::HpackEntryTest
64 EXPECT_EQ(Size(), entry.Size());
74 EXPECT_EQ(Size(), entry.Size());
84 EXPECT_EQ(Size(), entry.Size());
92 EXPECT_EQ(HpackEntry::kSizeOverhead, entry.Size());
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueVector.h51 static size_t Size(const Impl* impl) function in class:blink::WTFVectorPersistentValueVectorTraits
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc25 int32_t FontData::Size() const { function in class:sfntly::FontData
26 return std::min<int32_t>(array_->Size() - bound_offset_, bound_length_);
30 if (offset + length > Size() || offset < 0 || length < 0)
39 if (offset > Size() || offset < 0)
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dmemory_output_stream.cc68 size_t MemoryOutputStream::Size() { function in class:sfntly::MemoryOutputStream
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfEmbeddedFileParameterDictionary_autogen.cpp11 int64_t SkPdfEmbeddedFileParameterDictionary::Size(SkPdfNativeDoc* doc) { function in class:SkPdfEmbeddedFileParameterDictionary
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
H A DSkPdfFileTrailerDictionary_autogen.cpp11 int64_t SkPdfFileTrailerDictionary::Size(SkPdfNativeDoc* doc) { function in class:SkPdfFileTrailerDictionary
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
H A DSkPdfType0FunctionDictionary_autogen.cpp11 SkPdfArray* SkPdfType0FunctionDictionary::Size(SkPdfNativeDoc* doc) { function in class:SkPdfType0FunctionDictionary
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
/external/chromium_org/third_party/webrtc/base/
H A Dmd5digest.h26 virtual size_t Size() const { function in class:rtc::Md5Digest
H A Dsha1digest.h26 virtual size_t Size() const { function in class:rtc::Sha1Digest
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_vector.h75 // |position| = Size() means that the new values are appended to the vector.
97 virtual size_t Size() const { return first_free_ix_; } function in class:webrtc::AudioVector
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutexset.cc80 uptr MutexSet::Size() const { function in class:__tsan::MutexSet
/external/eigen/test/
H A Dhessenberg.cpp14 template<typename Scalar,int Size> void hessenberg(int size = Size) argument
16 typedef Matrix<Scalar,Size,Size> MatrixType;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.cpp48 DWARFDIECollection::Size() const function in class:DWARFDIECollection
H A DDWARFLocationList.cpp60 size_t loc_list_length = Size(debug_loc_data, *offset_ptr);
72 DWARFLocationList::Size(const DataExtractor& debug_loc_data, lldb::offset_t offset) function in class:DWARFLocationList
/external/lldb/source/Symbol/
H A DClangExternalASTSourceCallbacks.cpp146 uint64_t &Size,
155 Size,
145 layoutRecordType(const clang::RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap <const clang::FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &BaseOffsets, llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &VirtualBaseOffsets) argument
/external/llvm/include/llvm/Bitcode/
H A DReaderWriter.h105 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
118 KnownHeaderSize = 4*4, // Size of header we read.
120 SizeField = 3*4 // Offset in bytes to Size field.
130 unsigned Size = ( BufPtr[SizeField ] | local
135 // Verify that Offset+Size fits in the file.
136 if (VerifyBufferSize && Offset+Size > unsigned(BufEnd-BufPtr))
139 BufEnd = BufPtr+Size;
/external/llvm/include/llvm/CodeGen/
H A DMachineCodeInfo.h26 size_t Size; // Number of bytes in memory used member in class:llvm::MachineCodeInfo
30 MachineCodeInfo() : Size(0), Address(nullptr) {}
33 Size = s;
41 return Size;
/external/llvm/include/llvm/MC/
H A DMCELFStreamer.h56 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
65 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
69 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
71 uint64_t Size, unsigned ByteAlignment = 0) override;
72 void EmitValueImpl(const MCExpr *Value, unsigned Size,
99 uint64_t Size; member in struct:llvm::MCELFStreamer::LocalCommon
/external/llvm/include/llvm/Support/
H A DDataExtractor.h38 void setAddressSize(uint8_t Size) { AddressSize = Size; } argument
H A DMemory.h31 MemoryBlock() : Address(nullptr), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
34 size_t size() const { return Size; }
37 size_t Size; ///< Size, in bytes of the memory area member in class:llvm::sys::MemoryBlock
152 static bool setRangeExecutable(const void *Addr, size_t Size);
156 static bool setRangeWritable(const void *Addr, size_t Size);
/external/llvm/include/llvm/Transforms/Utils/
H A DASanStackFrameLayout.h32 uint64_t Size; // Size of the variable in bytes. member in struct:llvm::ASanStackVariableDescription
47 size_t FrameSize; // Size of the frame in bytes.
/external/llvm/lib/Support/
H A DFormattedStream.cpp23 static void UpdatePosition(std::pair<unsigned, unsigned> &Position, const char *Ptr, size_t Size) { argument
29 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
47 void formatted_raw_ostream::ComputePosition(const char *Ptr, size_t Size) { argument
51 if (Ptr <= Scanned && Scanned <= Ptr + Size)
54 UpdatePosition(Position, Scanned, Size - (Scanned - Ptr));
56 UpdatePosition(Position, Ptr, Size);
59 Scanned = Ptr + Size;
75 void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) { argument
77 ComputePosition(Ptr, Size);
81 TheStream->write(Ptr, Size);
[all...]

Completed in 548 milliseconds

1234567891011>>