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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/AST/
DeclGroup.cpp 22 unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls;
23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
  /external/chromium_org/ui/gfx/geometry/
size.h 17 typedef struct tagSIZE SIZE;
26 // A size has width and height values.
27 class GFX_EXPORT Size : public SizeBase<Size, int> {
29 Size() : SizeBase<Size, int>(0, 0) {}
30 Size(int width, int height) : SizeBase<Size, int>(width, height) {}
32 explicit Size(const CGSize& s);
35 ~Size() {}
    [all...]
size.cc 5 #include "ui/gfx/geometry/size.h"
15 template class SizeBase<Size, int>;
18 Size::Size(const CGSize& s)
19 : SizeBase<Size, int>(s.width, s.height) {
22 Size& Size::operator=(const CGSize& s) {
30 SIZE Size::ToSIZE() const {
31 SIZE s
    [all...]
  /external/chromium_org/storage/browser/fileapi/
file_system_file_util.cc 13 int64 FileSystemFileUtil::EmptyFileEnumerator::Size() {
  /external/chromium_org/net/spdy/
hpack_entry.cc 21 : name_(name.data(), name.size()),
22 value_(value.data(), value.size()),
28 : name_(name.data(), name.size()),
29 value_(value.data(), value.size()),
42 size_t HpackEntry::Size(StringPiece name, StringPiece value) {
43 return name.size() + value.size() + kSizeOverhead;
45 size_t HpackEntry::Size() const {
46 return Size(name(), value());
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 68 size_t MemoryOutputStream::Size() {
69 return store_.size();
  /external/chromium_org/ui/gfx/image/
image_png_rep.cc 10 #include "ui/gfx/size.h"
28 gfx::Size ImagePNGRep::Size() const {
33 if (!gfx::PNGCodec::Decode(raw_data->front(), raw_data->size(),
36 return gfx::Size(0, 0);
38 return gfx::Size(bitmap.width(), bitmap.height());
  /external/clang/include/clang/Basic/
AllDiagnostics.h 33 enum { Size = SizeOfStr };
38 fieldTy>::Size
  /external/compiler-rt/lib/tsan/rtl/
tsan_ignoreset.cc 37 uptr IgnoreSet::Size() const {
  /external/compiler-rt/test/profile/
instrprof-without-libc.c 28 uint64_t Size = __llvm_profile_get_size_for_buffer();
29 if (Size > MaxSize)
44 if (fwrite(Buffer, 1, Size, File) != Size)
  /external/llvm/lib/Support/
LEB128.cpp 19 /// Utility function to get the size of the ULEB128-encoded value.
21 unsigned Size = 0;
24 Size += sizeof(int8_t);
26 return Size;
29 /// Utility function to get the size of the SLEB128-encoded value.
31 unsigned Size = 0;
39 Size += sizeof(int8_t);
41 return Size;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
Size.java 20 * Simple immutable class for keeping a size.
22 public class Size {
26 public Size(int width, int height) {
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_object_enumerator.cc 30 int64 MTPDeviceObjectEnumerator::Size() {
58 return index_ < file_entries_.size();
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_object_enumerator.cc 36 int64 MTPDeviceObjectEnumerator::Size() {
40 return object_entries_[index_].size;
65 return index_ < object_entries_.size();
  /external/chromium_org/chrome/installer/mini_installer/
pe_resource.cc 20 size_t PEResource::Size() {
35 size_t resource_size = Size();
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglarray.h 44 EGLint Size;
69 _eglFilterArray(_EGLArray *array, void **data, EGLint size,
74 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
81 return (array) ? array->Size : 0;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_data.cc 25 int32_t FontData::Size() const {
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/webrtc/base/
md5digest.h 26 virtual size_t Size() const {
sha1digest.h 26 virtual size_t Size() const {
  /external/clang/include/clang/Frontend/
LayoutOverrideSource.h 28 /// \brief The size of the record.
29 uint64_t Size;
52 uint64_t &Size, uint64_t &Alignment,
  /external/clang/test/Sema/
offsetof-64.c 5 const unsigned long Size = (1l << 60);
8 char padding[Size];
9 char more_padding[1][Size];
16 char padding[Size][Size][Size]; // expected-error 2{{array is too large}}
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDIECollection.cpp 41 if (idx < m_dies.size())
48 DWARFDIECollection::Size() const
50 return m_dies.size();
DWARFLocationList.cpp 60 size_t loc_list_length = Size(debug_loc_data, *offset_ptr);
72 DWARFLocationList::Size(const DataExtractor& debug_loc_data, lldb::offset_t offset)
  /external/llvm/include/llvm/CodeGen/
MachineCodeInfo.h 26 size_t Size; // Number of bytes in memory used
30 MachineCodeInfo() : Size(0), Address(nullptr) {}
33 Size = s;
40 size_t size() const { function in class:llvm::MachineCodeInfo
41 return Size;
  /external/llvm/include/llvm/IR/
MDBuilder.h 86 uint64_t Size;
88 TBAAStructField(uint64_t Offset, uint64_t Size, MDNode *TBAA) :
89 Offset(Offset), Size(Size), TBAA(TBAA) {}

Completed in 946 milliseconds

1 2 3 4 5 6 7 8 91011>>