Searched defs:Length (Results 76 - 100 of 192) sorted by relevance

12345678

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp4.cpp285 struct Length { struct in namespace:StdExample
286 explicit constexpr Length(int i = 0) : val(i) { } function in struct:StdExample::Length
/external/clang/test/SemaCXX/
H A Dreferences.cpp104 unsigned Length; member in class:string
/external/clang/unittests/Tooling/
H A DRefactoringTest.cpp36 Replacement createReplacement(SourceLocation Start, unsigned Length, argument
38 return Replacement(Context.Sources, Start, Length, ReplacementText);
316 StringRef File, unsigned Offset, unsigned Length) {
320 EXPECT_EQ(Length, Replace.getLength());
390 Input.push_back(Replacement("fileA", 10, 2, " bar ")); // Length differs
315 expectReplacementAt(const Replacement &Replace, StringRef File, unsigned Offset, unsigned Length) argument
/external/freetype/src/truetype/
H A Dttobjs.c233 face->dir_tables[i].Length );
240 FT_ULong Length; member in struct:tt_sfnt_id_rec_
384 if ( face->dir_tables[i].Length == sfnt_id[j][k].Length )
399 if ( !has_cvt && !sfnt_id[j][TRICK_SFNT_ID_cvt].Length )
401 if ( !has_fpgm && !sfnt_id[j][TRICK_SFNT_ID_fpgm].Length )
403 if ( !has_prep && !sfnt_id[j][TRICK_SFNT_ID_prep].Length )
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h85 // Length of the prologue in bytes
86 uint32_t Length() const { return prologue_length + sizeof(total_length) + sizeof(version) + sizeof(prologue_length); } function in struct:DWARFDebugLine::Prologue
87 // Length of the line table data in bytes (not including the prologue)
88 uint32_t StatementTableLength() const { return total_length + sizeof(total_length) - Length(); }
/external/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h37 /// Length may either correspond to depth or height, depending on direction,
39 unsigned Length; member in struct:llvm::ILPValue
42 InstrCount(count), Length(length) {}
46 return (uint64_t)InstrCount * RHS.Length
47 < (uint64_t)Length * RHS.InstrCount;
53 return (uint64_t)InstrCount * RHS.Length
54 <= (uint64_t)Length * RHS.InstrCount;
/external/llvm/lib/DebugInfo/
H A DDWARFDebugFrame.cpp29 FrameEntry(FrameKind K, uint64_t Offset, uint64_t Length) argument
30 : Kind(K), Offset(Offset), Length(Length) {}
58 uint64_t Length; member in class:llvm::FrameEntry
201 CIE(uint64_t Offset, uint64_t Length, uint8_t Version, argument
204 : FrameEntry(FK_CIE, Offset, Length), Version(Version),
214 (uint32_t)Offset, (uint32_t)Length, DW_CIE_ID)
247 FDE(uint64_t Offset, uint64_t Length, int64_t LinkedCIEOffset, argument
249 : FrameEntry(FK_FDE, Offset, Length), LinkedCIEOffset(LinkedCIEOffset),
258 (uint32_t)Offset, (uint32_t)Length, (int32_
288 dumpDataAux(DataExtractor Data, uint32_t Offset, int Length) argument
306 uint64_t Length = Data.getU32(&Offset); local
[all...]
H A DDWARFUnit.h42 uint32_t Length; member in class:llvm::DWARFUnit
105 uint32_t getNextUnitOffset() const { return Offset + Length + 4; }
106 uint32_t getLength() const { return Length; }
136 size_t getDebugInfoSize() const { return Length + 4 - getHeaderSize(); }
H A DDWARFDebugLine.h28 FileNameEntry() : Name(nullptr), DirIdx(0), ModTime(0), Length(0) {}
33 uint64_t Length; member in struct:llvm::DWARFDebugLine::FileNameEntry
66 // Length of the prologue in bytes.
71 // Length of the line table data in bytes (not including the prologue).
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp208 SDValue Src, SDValue Char, SDValue Length,
213 Length = DAG.getZExtOrTrunc(Length, DL, PtrVT);
217 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length);
207 EmitTargetCodeForMemchr(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Src, SDValue Char, SDValue Length, MachinePointerInfo SrcPtrInfo) const argument
/external/lzma/CPP/Common/
H A DMyCom.h122 unsigned int Length() const { return ::SysStringLen(m_str); } function in class:CMyComBSTR
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs17 public override long Length { get { return s1.Length + s2.Length - skipSize; } } property in class:SevenZip.CDoubleStream
102 for (int i = 0; i < s.Length; i++)
123 if (args.Length == 0)
237 if (train.Length != 0)
302 fileSize = inStream.Length;
312 long trainFileSize = trainStream.Length;
341 long compressedSize = inStream.Length - inStream.Position;
/external/mesa3d/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/mesa3d/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/openfst/src/include/fst/
H A Dtuple-weight.h79 static unsigned int Length() { function in class:fst::TupleWeight
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs151 /// <exception cref="ArgumentException">If <c>offset</c> + <c>count</c> is &gt; buffer.Length</exception>
159 if ((offset+count) > buffer.Length) throw new ArgumentException();
196 /// <exception cref="ArgumentException">If <c>offset</c> + <c>count</c> is &gt; buffer.Length</exception>
204 if ((offset+count) > buffer.Length) throw new ArgumentException();
292 public override long Length property in class:DotZLib.GZipStream
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_types.h30 enum Length { enum in struct:autofill::DetailInput
42 Length length;
/external/clang/include/clang/AST/
H A DCommentLexer.h67 /// Length of the token spelling in comment. Can be 0 for synthenized
69 unsigned Length; member in class:clang::comments::Token
86 if (Length == 0 || Length == 1)
88 return Loc.getLocWithOffset(Length - 1);
97 unsigned getLength() const LLVM_READONLY { return Length; }
98 void setLength(unsigned L) { Length = L; }
/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp297 unsigned Length = sizeof(unsigned); local
308 Length += sizeof(unsigned);
315 Length += sizeof(void *);
319 return Length;
324 unsigned Length = 0; local
326 Length += getLocalDataLength(Qualifier);
327 return Length;
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp295 bool Rewriter::RemoveText(SourceLocation Start, unsigned Length, argument
300 getEditBuffer(FID).RemoveText(StartOffs, Length, opts.RemoveLineIfEmpty);
/external/clang/unittests/Format/
H A DFormatTest.cpp26 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, argument
30 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
4824 verifyIndependentOfContext("A = new SomeType *[Length];");
4825 verifyIndependentOfContext("A = new SomeType *[Length]();");
4828 verifyGoogleFormat("A = new SomeType* [Length]();");
4829 verifyGoogleFormat("A = new SomeType* [Length];");
4884 verifyFormat("A = new SomeType * [Length]();", PointerMiddle);
4885 verifyFormat("A = new SomeType * [Length];", PointerMiddle);
/external/llvm/lib/Option/
H A DOptTable.cpp337 unsigned Length = OptionHelp[i].first.size(); local
338 if (Length <= 23)
339 OptionFieldWidth = std::max(OptionFieldWidth, Length);
/external/llvm/lib/Target/Mips/
H A DMips16InstrInfo.cpp503 unsigned Length = 0; local
518 Length += MAI.getMaxInstLength();
526 return Length;
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp406 uint16_t Length; local
407 DTI->second.getLength(Length);
408 DumpBytes(StringRef(Bytes.data() + Index, Length));
411 DumpDataInCode(Bytes.data() + Index, Length, Kind);

Completed in 693 milliseconds

12345678