Searched defs:Length (Results 1 - 25 of 109) sorted by relevance

12345

/external/chromium/testing/gtest/samples/
H A Dsample2.h77 size_t Length() const { function in class:MyString
/external/gtest/samples/
H A Dsample2.h77 size_t Length() const { function in class:MyString
/external/libnfc-nxp/src/
H A DphFriNfc_IntNdefMap.c120 uint16_t Length)
123 if(Length == PH_FRINFC_NDEFMAP_MFUL_VAL0)
119 phFriNfc_NdefMap_SetCardState(phFriNfc_NdefMap_t *NdefMap, uint16_t Length) argument
H A DphFriNfc_MapTools.c65 uint32_t Length)
68 if(Length == PH_FRINFC_NDEFMAP_MFUL_VAL0)
64 phFriNfc_MapTool_SetCardState(phFriNfc_NdefMap_t *NdefMap, uint32_t Length) argument
/external/libvpx/libvpx/third_party/googletest/src/samples/
H A Dsample2.h77 size_t Length() const { function in class:MyString
/external/protobuf/gtest/samples/
H A Dsample2.h77 size_t Length() const { function in class:MyString
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbytebuffer.h46 size_t Length() const { return end_ - start_; } function in class:talk_base::ByteBuffer
/external/clang/test/CodeGenCXX/
H A D2012-03-16-StoreAlign.cpp4 struct Length { struct
5 Length(double v) { function in struct:Length
9 bool operator==(const Length& o) const {
12 bool operator!=(const Length& o) const { return !(*this == o); }
22 static Length inchLength(double inch);
23 static bool getPageSizeFromName(const Length &A) {
24 static const Length legalWidth = inchLength(8.5);
30 // CHECK: @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth = linkonce_odr global %struct.Length zeroinitializer, align 4
31 // CHECK: store float %{{.*}}, float* getelementptr inbounds (%struct.Length* @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth, i32 0, i32 0), align 1
33 bool bar(Length
[all...]
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_filebase.cc66 int FileMetadataPropertyIterator::Length() { function in class:FileMetadataPropertyIterator
/external/chromium/sdch/open-vcdiff/src/
H A Dvarint_bigendian.cc110 int VarintBE<SignedIntegerType>::Length(SignedIntegerType v) { function in class:open_vcdiff::VarintBE
113 << " passed to VarintBE::Length,"
/external/clang/include/clang/Tooling/
H A DRefactoring.h44 /// \brief Creates a replacement of the range [Offset, Offset+Length) in
49 /// \param Length The length of the range in bytes.
51 unsigned Length, StringRef ReplacementText);
53 /// \brief Creates a Replacement of the range [Start, Start+Length) with
55 Replacement(SourceManager &Sources, SourceLocation Start, unsigned Length,
76 unsigned getLength() const { return Length; }
94 unsigned Length, StringRef ReplacementText);
100 unsigned Length; member in class:clang::tooling::Replacement
/external/open-vcdiff/src/
H A Dvarint_bigendian.cc110 int VarintBE<SignedIntegerType>::Length(SignedIntegerType v) { function in class:open_vcdiff::VarintBE
113 << " passed to VarintBE::Length,"
/external/chromium/base/win/
H A Dscoped_bstr.cc62 size_t ScopedBstr::Length() const { function in class:base::win::ScopedBstr
/external/clang/test/SemaCXX/
H A Dconstructor.cpp41 struct Length { struct
42 Length l() const { return *this; }
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/lib/DebugInfo/
H A DDWARFDebugArangeSet.h25 uint32_t Length; member in struct:llvm::DWARFDebugArangeSet::Header
41 uint64_t Length; member in struct:llvm::DWARFDebugArangeSet::Descriptor
42 uint64_t getEndAddress() const { return Address + Length; }
62 uint32_t getOffsetOfNextEntry() const { return Offset + Header.Length + 4; }
H A DDWARFDebugAranges.h26 : LoPC(lo), Length(hi-lo), Offset(off) {}
30 Length = 0;
36 Length = 0;
38 Length = HiPC - LoPC;
41 if (Length)
42 return LoPC + Length;
45 bool isValidRange() const { return Length > 0; }
60 uint32_t Length; // End of address range (not including this address) member in struct:llvm::DWARFDebugAranges::Range
/external/llvm/runtime/libprofile/
H A DCommonProfiling.c58 unsigned Length, i; local
87 for (Length = 0, i = 0; i != (unsigned)argc; ++i)
88 Length += strlen(argv[i])+1;
94 if (Length == 0) {
100 SavedArgs = (char*)malloc(Length);
101 for (Length = 0, i = 0; i != (unsigned)argc; ++i) {
103 memcpy(SavedArgs+Length, argv[i], Len);
104 Length += Len;
105 SavedArgs[Length++] = ' ';
108 SavedArgsLength = Length;
[all...]
/external/clang/unittests/Format/
H A DFormatTest.cpp23 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, argument
32 CharSourceRange::getCharRange(Start, Start.getLocWithOffset(Length)));
2037 verifyIndependentOfContext("A = new SomeType *[Length];");
2038 verifyIndependentOfContext("A = new SomeType *[Length]();");
2039 verifyGoogleFormat("A = new SomeType* [Length]();");
2040 verifyGoogleFormat("A = new SomeType* [Length];");
/external/llvm/include/llvm/ADT/
H A DArrayRef.h43 size_type Length; member in class:llvm::ArrayRef
50 /*implicit*/ ArrayRef() : Data(0), Length(0) {}
54 : Data(&OneElt), Length(1) {}
58 : Data(data), Length(length) {}
62 : Data(begin), Length(end - begin) {}
69 : Data(Vec.data()), Length(Vec.size()) {
75 : Data(Vec.empty() ? (T*)0 : &Vec[0]), Length(Vec.size()) {}
80 : Data(Arr), Length(N) {} function in class:llvm::ArrayRef
87 iterator end() const { return Data + Length; }
93 bool empty() const { return Length
[all...]
H A DStringRef.h53 size_t Length; member in class:llvm::StringRef
63 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { argument
64 if (Length == 0) { return 0; }
65 return ::memcmp(Lhs,Rhs,Length);
73 /*implicit*/ StringRef() : Data(0), Length(0) {}
79 Length = ::strlen(Str); // invoking strlen(NULL) is undefined behavior
84 : Data(data), Length(length) {
91 : Data(Str.data()), Length(Str.length()) {}
99 iterator end() const { return Data + Length; }
110 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/lib/Archive/
H A DArchive.cpp243 llvm::GetBitcodeSymbols(const char *BufPtr, unsigned Length, argument
250 MemoryBuffer::getMemBufferCopy(StringRef(BufPtr, Length),ModuleID.c_str()));
/external/v8/src/
H A Dunicode-inl.h123 unsigned Utf8::Length(uchar c, int previous) { function in class:unibrow::Utf8
/external/clang/include/clang/Edit/
H A DCommit.h38 unsigned Length; member in struct:clang::edit::Commit::Edit

Completed in 663 milliseconds

12345