Searched defs:Length (Results 51 - 75 of 192) sorted by relevance

12345678

/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp45 struct Length { struct in namespace:rdar11293995
46 explicit Length(PassRefPtr<CalculationValue>); // expected-error {{unknown type name}} \
52 Length m_width;
53 Length m_height;
/external/llvm/include/llvm/ADT/
H A DArrayRef.h44 size_type Length; member in class:llvm::ArrayRef
51 /*implicit*/ ArrayRef() : Data(nullptr), Length(0) {}
54 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {}
58 : Data(&OneElt), Length(1) {}
62 : Data(data), Length(length) {}
66 : Data(begin), Length(end - begin) {}
73 : Data(Vec.data()), Length(Vec.size()) {
79 : Data(Vec.data()), Length(Vec.size()) {}
84 : Data(Arr), Length(N) {} function in class:llvm::ArrayRef
90 Length(Ve
[all...]
H A DStringRef.h52 size_t Length; member in class:llvm::StringRef
62 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { argument
63 if (Length == 0) { return 0; }
64 return ::memcmp(Lhs,Rhs,Length);
72 /*implicit*/ StringRef() : Data(nullptr), Length(0) {}
78 Length = ::strlen(Str); // invoking strlen(NULL) is undefined behavior
83 : Data(data), Length(length) {
90 : Data(Str.data()), Length(Str.length()) {}
98 iterator end() const { return Data + Length; }
109 bool empty() const { return Length
[all...]
/external/llvm/include/llvm/Support/
H A DOutputBuffer.h110 void outstring(const std::string &S, unsigned Length) { argument
111 unsigned len_to_copy = static_cast<unsigned>(S.length()) < Length
112 ? static_cast<unsigned>(S.length()) : Length;
113 unsigned len_to_fill = static_cast<unsigned>(S.length()) < Length
114 ? Length - static_cast<unsigned>(S.length()) : 0;
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h119 SDValue Src, SDValue Char, SDValue Length,
118 EmitTargetCodeForMemchr(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Src, SDValue Char, SDValue Length, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/ExecutionEngine/
H A DRTDyldMemoryManager.cpp81 uint32_t Length = *((const uint32_t *)P); local
90 return P + Length;
/external/llvm/lib/IR/
H A DGCOV.cpp75 uint32_t Length; local
77 if (!Buffer.readInt(Length)) return false;
81 Buffer.advanceCursor(Length-3);
84 uint32_t Length; local
85 if (!Buffer.readInt(Length)) return false;
86 Buffer.advanceCursor(Length);
/external/lzma/CPP/Windows/
H A DFileIO.h42 UInt64 Length; member in class:NWindows::NFile::NIO::CFileBase
/external/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/skia/src/core/
H A DSkPoint.cpp137 SkScalar SkPoint::Length(SkScalar dx, SkScalar dy) { function in class:SkPoint
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLength.h39 // appropriate for any given Length.
66 class PLATFORM_EXPORT Length { class in namespace:blink
69 Length() function in class:blink::Length
74 Length(LengthType t) function in class:blink::Length
80 Length(int v, LengthType t, bool q = false) function in class:blink::Length
86 Length(LayoutUnit v, LengthType t, bool q = false) function in class:blink::Length
92 Length(float v, LengthType t, bool q = false) function in class:blink::Length
98 Length(double v, LengthType t, bool q = false) function in class:blink::Length
104 explicit Length(PassRefPtr<CalculationValue>);
106 Length(cons function in class:blink::Length
124 Length(Length&& length) function in class:blink::Length
[all...]
H A DLength.cpp26 #include "platform/Length.h"
63 static Length parseHTMLAreaCoordinate(const CharType* data, unsigned length)
72 return Length(r, Fixed);
73 return Length(0, Fixed);
77 Vector<Length> parseHTMLAreaElementCoords(const String& string)
93 return Vector<Length>();
96 Vector<Length> r(len);
171 Length::Length(PassRefPtr<CalculationValue> calc) function in class:blink::Length
179 Length Lengt
[all...]
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_area.cc110 unsigned DOMStorageArea::Length() { function in class:content::DOMStorageArea
114 return map_->Length();
166 if (map_->Length() == 0)
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.h270 Length, enumerator in enum:blink::CSSPropertyParser::SizeParameterType
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttobjs.c232 face->dir_tables[i].Length );
239 FT_ULong Length; member in struct:tt_sfnt_id_rec_
383 if ( face->dir_tables[i].Length == sfnt_id[j][k].Length )
398 if ( !has_cvt && !sfnt_id[j][TRICK_SFNT_ID_cvt].Length )
400 if ( !has_fpgm && !sfnt_id[j][TRICK_SFNT_ID_fpgm].Length )
402 if ( !has_prep && !sfnt_id[j][TRICK_SFNT_ID_prep].Length )
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp142 uint64_t Length; member in class:BufferMemoryObject
145 Bytes(bytes), Length(length)
156 return Length;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.c27 int Length; member in struct:match_info
107 tokens.Negate.Length = match_length(matches, 1);
109 tokens.Abs.Length = match_length(matches, 2);
111 tokens.File.Length = match_length(matches, 3);
113 tokens.Index.Length = match_length(matches, 4);
115 tokens.Swizzle.Length = match_length(matches, 5);
118 if (tokens.Negate.Length > 0) {
123 if (tokens.Abs.Length > 0) {
128 if (!strncmp(tokens.File.String, "temp", tokens.File.Length)) {
130 } else if (!strncmp(tokens.File.String, "input", tokens.File.Length)) {
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPoint.cpp138 SkScalar SkPoint::Length(SkScalar dx, SkScalar dy) { function in class:SkPoint
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcommon.h50 typedef uintptr_t Length; typedef
125 static const Length kMaxValidPages = (~static_cast<Length>(0)) >> kPageShift;
142 inline Length pages(size_t bytes) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcommon.h49 typedef uintptr_t Length; typedef
108 static const Length kMaxValidPages = (~static_cast<Length>(0)) >> kPageShift;
125 inline Length pages(size_t bytes) {
/external/chromium_org/v8/src/
H A Dinterface.h126 int Length() { function in class:v8::internal::Interface
/external/clang/include/clang/Edit/
H A DCommit.h39 unsigned Length; member in struct:clang::edit::Commit::Edit
/external/clang/lib/AST/
H A DExternalASTSource.cpp26 unsigned Length,
25 FindFileRegionDecls(FileID File, unsigned Offset, unsigned Length, SmallVectorImpl<Decl *> &Decls) argument
H A DRawCommentList.cpp102 const unsigned Length = EndOffset - BeginOffset; local
103 if (Length < 2)
115 return StringRef(BufferStart + BeginOffset, Length);
/external/clang/lib/Tooling/
H A DRefactoring.cpp33 Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length, argument
35 : FilePath(FilePath), ReplacementRange(Offset, Length),
39 unsigned Length, StringRef ReplacementText) {
40 setFromSourceLocation(Sources, Start, Length, ReplacementText);
64 // FIXME: We cannot check whether Offset + Length is in the file, as
104 SourceLocation Start, unsigned Length,
118 this->ReplacementRange = Range(DecomposedLocation.second, Length);
38 Replacement(const SourceManager &Sources, SourceLocation Start, unsigned Length, StringRef ReplacementText) argument
103 setFromSourceLocation(const SourceManager &Sources, SourceLocation Start, unsigned Length, StringRef ReplacementText) argument

Completed in 6873 milliseconds

12345678