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

1 2 3 4 5 6 7 8 9

  /libcore/ojluni/src/main/java/sun/security/util/
Length.java 29 * The Length interface defines the length of an object
31 public interface Length {
34 * Gets the length of this object
37 * the length should be measured in bits.
39 * @return the length of this object
42 public int length(); method in interface:Length
  /external/google-breakpad/src/testing/gtest/samples/
sample2.h 76 size_t Length() const {
  /external/llvm/lib/Support/
LineIterator.cpp 88 size_t Length = 0;
89 while (Pos[Length] != '\0' && !isAtLineEnd(&Pos[Length])) {
90 ++Length;
93 CurrentLine = StringRef(Pos, Length);
Unicode.cpp 345 unsigned Length;
346 for (size_t i = 0, e = Text.size(); i < e; i += Length) {
347 Length = getNumBytesForUTF8(Text[i]);
348 if (Length <= 0 || i + Length > Text.size())
353 if (conversionOK != ConvertUTF8toUTF32(&Start, Start + Length, &Target,
  /external/protobuf/gtest/samples/
sample2.h 77 size_t Length() const {
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample2.h 76 size_t Length() const {
  /ndk/sources/third_party/googletest/googletest/samples/
sample2.h 76 size_t Length() const {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
eapmethodtypes.h 17 BYTE Length[2];
winusb.h 64 USHORT Length;
  /external/clang/test/CodeGenCXX/
2012-03-16-StoreAlign.cpp 4 struct Length {
5 Length(double v) {
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, %struct.Length* @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth, i32 0, i32 0), align
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
font_data.cc 29 bool FontData::Bound(int32_t offset, int32_t length) {
30 if (offset + length > Size() || offset < 0 || length < 0)
34 bound_length_ = length;
46 int32_t FontData::Length() const {
47 return std::min<int32_t>(array_->Length() - bound_offset_, bound_length_);
54 FontData::FontData(FontData* data, int32_t offset, int32_t length) {
56 Bound(data->bound_offset_ + offset, length);
78 int32_t FontData::BoundLength(int32_t offset, int32_t length) {
79 return std::min<int32_t>(length, bound_length_ - offset)
    [all...]
  /external/skia/src/core/
SkPoint3.cpp 26 SkScalar SkPoint3::Length(SkScalar x, SkScalar y, SkScalar z) {
  /external/clang/include/clang/Tooling/
ReplacementsYaml.h 36 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
40 Length(R.getLength()), ReplacementText(R.getReplacementText()) {}
43 return clang::tooling::Replacement(FilePath, Offset, Length,
49 unsigned int Length;
58 Io.mapRequired("Length", Keys->Length);
  /external/clang/lib/Parse/
ParseAST.cpp 79 unsigned Length = Tok.getLength();
85 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
  /external/libvpx/libvpx/third_party/libwebm/
mkvreader.cpp 86 int MkvReader::Length(long long* total, long long* available) {
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLoc.h 62 uint32_t Length;
DWARFDebugArangeSet.h 24 // The total length of the entries for that set, not including the length
26 uint32_t Length;
42 uint64_t Length;
43 uint64_t getEndAddress() const { return Address + Length; }
DWARFDebugAranges.h 37 : LowPC(LowPC), Length(HighPC - LowPC), CUOffset(CUOffset) {}
41 Length = 0;
43 Length = HighPC - LowPC;
46 if (Length)
47 return LowPC + Length;
59 uint32_t Length; // End of address range (not including this address).
  /external/v8/src/
unicode-inl.h 45 int length = T::Convert(c, n, result, &allow_caching); local
47 if (length == 1) {
55 return length;
113 uchar Utf8::ValueOf(const byte* bytes, size_t length, size_t* cursor) {
114 if (length <= 0) return kBadChar;
121 return CalculateValue(bytes, length, cursor);
124 unsigned Utf8::Length(uchar c, int previous) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvreader.cpp 80 int MkvReader::Length(long long* total, long long* available)
  /external/clang/include/clang/Tooling/Core/
Replacement.h 38 Range() : Offset(0), Length(0) {}
39 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {}
44 unsigned getLength() const { return Length; }
51 return Offset + Length > RHS.Offset && Offset < RHS.Offset + RHS.Length;
57 (RHS.Offset + RHS.Length) <= (Offset + Length);
63 unsigned Length;
    [all...]
  /external/clang/test/SemaCXX/
constructor.cpp 42 struct Length {
43 Length l() const { return *this; }
  /external/compiler-rt/lib/profile/
InstrProfilingBuffer.c 51 size_t Length = IOVecs[I].ElmSize * IOVecs[I].NumElm;
52 memcpy(*Buffer, IOVecs[I].Data, Length);
53 *Buffer += Length;
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParser.h 37 unsigned Length, Size, Type;
42 Length = 1;
  /external/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 38 uint32_t Length = 1;
42 Length = Func->getLength();
44 Length = Data->getLength();
49 auto LineNumbers = Session->findLineNumbersByAddress(Address, Length);

Completed in 300 milliseconds

1 2 3 4 5 6 7 8 9