Searched refs:Length (Results 26 - 50 of 857) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DLengthBox.cpp36 Length LengthBox::logicalLeft(WritingMode writingMode) const
41 Length LengthBox::logicalRight(WritingMode writingMode) const
46 Length LengthBox::before(WritingMode writingMode) const
62 Length LengthBox::after(WritingMode writingMode) const
78 Length LengthBox::start(WritingMode writingMode, TextDirection direction) const
85 Length LengthBox::end(WritingMode writingMode, TextDirection direction) const
/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/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/chromium_org/third_party/libjingle/source/talk/base/
H A Dbytebuffer_unittest.cc75 EXPECT_EQ(size, buffer.Length());
79 EXPECT_EQ(size, buffer.Length());
83 EXPECT_EQ(size, buffer.Length());
87 EXPECT_EQ(size, buffer.Length());
91 EXPECT_EQ(size, buffer.Length());
95 EXPECT_EQ(size, buffer.Length());
98 EXPECT_EQ(size, buffer.Length());
102 EXPECT_EQ(size, buffer.Length());
107 EXPECT_EQ(6U, buffer.Length());
110 EXPECT_EQ(6U, buffer.Length());
[all...]
/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBitSet.cs132 if (n >= _bits.Length) {
142 int newSize = Math.Max(_bits.Length << 1, NumWordsToHold(bit));
151 if (a._bits.Length > _bits.Length) {
152 SetSize(a._bits.Length);
154 int min = Math.Min(_bits.Length, a._bits.Length);
178 for (int i = _bits.Length - 1; i >= 0; i--) {
202 int n = Math.Min(this._bits.Length, otherSet._bits.Length);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBitSet.cs146 if ( n >= _bits.Length )
158 int newSize = Math.Max( _bits.Length << 1, NumWordsToHold( bit ) );
169 if ( a._bits.Length > _bits.Length )
171 SetSize( a._bits.Length );
173 int min = Math.Min( _bits.Length, a._bits.Length );
202 for ( int i = _bits.Length - 1; i >= 0; i-- )
233 int n = Math.Min( this._bits.Length, otherSet._bits.Length );
[all...]
/external/sfntly/cpp/src/test/
H A Dbyte_array_test.cc36 b->resize(ba->Length());
38 while (index < ba->Length()) {
48 b->resize(ba->Length());
51 while (index < ba->Length()) {
61 for (int i = 0; i < ba1->Length(); ++i) {
67 int increments = std::max<int32_t>(ba1->Length() / 11, 1);
68 for (int buffer_size = 1; buffer_size < ba1->Length();
81 for (int window_size = 1; window_size < ba1->Length();
94 ByteArrayPtr fixed_copy = new MemoryByteArray(ba->Length());
96 EXPECT_EQ(ba->Length(), fixed_cop
[all...]
/external/llvm/include/llvm/ADT/
H A DArrayRef.h44 size_type Length; member in class:llvm::ArrayRef
51 /*implicit*/ ArrayRef() : Data(0), Length(0) {}
54 /*implicit*/ ArrayRef(NoneType) : Data(0), 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.empty() ? (T*)0 : &Vec[0]), Length(Vec.size()) {}
84 : Data(Arr), Length(N) {} function in class:llvm::ArrayRef
91 iterator end() const { return Data + Length; }
[all...]
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_common_win.cc41 if (bss_id->Length < sizeof(NDIS_WLAN_BSSID) ||
42 iterator + bss_id->Length > end_of_buffer) {
51 iterator += bss_id->Length;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleReflection.h29 #include "core/platform/Length.h"
49 Length offset() const { return m_offset; }
53 void setOffset(const Length& l) { m_offset = l; }
65 Length m_offset;
H A DBorderData.h38 BorderData() : m_topLeft(Length(0, Fixed), Length(0, Fixed))
39 , m_topRight(Length(0, Fixed), Length(0, Fixed))
40 , m_bottomLeft(Length(0, Fixed), Length(0, Fixed))
41 , m_bottomRight(Length(0, Fixed), Length(0, Fixed))
H A DStyleTransformData.h28 #include "core/platform/Length.h"
47 Length m_x;
48 Length m_y;
H A DStyleGeneratedImage.cpp68 void StyleGeneratedImage::computeIntrinsicDimensions(const RenderObject* renderer, Length& intrinsicWidth, Length& intrinsicHeight, FloatSize& intrinsicRatio)
72 intrinsicWidth = Length(size.width(), Fixed);
73 intrinsicHeight = Length(size.height(), Fixed);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.h118 Span* New(Length n);
139 Span* Split(Span* span, Length n);
181 bool CheckList(Span* list, Length min_pages, Length max_pages,
190 Length ReleaseAtLeastNPages(Length num_pages);
249 Span* SearchFreeAndLargeLists(Length n);
251 bool GrowHeap(Length n);
260 Span* Carve(Span* span, Length n);
271 Span* AllocLarge(Length
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.h110 Span* New(Length n);
131 Span* Split(Span* span, Length n);
171 bool CheckList(Span* list, Length min_pages, Length max_pages,
180 Length ReleaseAtLeastNPages(Length num_pages);
238 Span* SearchFreeAndLargeLists(Length n);
240 bool GrowHeap(Length n);
249 Span* Carve(Span* span, Length n);
260 Span* AllocLarge(Length
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DArchiveName.cpp20 if (dirPrefix.Length() > 0)
21 if (dirPrefix[dirPrefix.Length() - 1] == WCHAR_PATH_SEPARATOR)
23 dirPrefix.Delete(dirPrefix.Length() - 1);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringBuilderExtensions.cs58 return buffer.Length;
70 buffer.Length = length;
/external/llvm/lib/DebugInfo/
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
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 + HeaderData.Length + 4; }
/external/llvm/lib/Support/
H A DStringRef.cpp42 for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) {
49 if (Length == RHS.Length)
51 return Length < RHS.Length ? -1 : 1;
56 for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) {
63 bool ld = J < Length && ascii_isdigit(Data[J]);
64 bool rd = J < RHS.Length
[all...]
/external/chromium/crypto/
H A Dencryptor_mac.cc27 if (raw_key.Length != kCCKeySizeAES128 &&
28 raw_key.Length != kCCKeySizeAES192 &&
29 raw_key.Length != kCCKeySizeAES256)
53 raw_key.Data, raw_key.Length,
/external/lzma/CPP/7zip/Archive/Common/
H A DItemNameUtils.cpp34 if (newName[newName.Length() - 1] == kOSDirDelimiter)
35 newName.Delete(newName.Length() - 1);
45 CharPrevExA((WORD)codePage, name, &name[name.Length()], 0);
47 (LPCSTR)(name) + (name.Length() - 1);
/external/lzma/CPP/Common/
H A DListFileUtils.cpp15 if (s.Length() >= 2)
16 if (s[0] == kQuoteChar && s[s.Length() - 1] == kQuoteChar)
17 s = s.Mid(1, s.Length() - 2);
56 for (int i = 0; i < u.Length(); i++)
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DViewportStyleResolver.cpp152 Length ViewportStyleResolver::viewportLengthValue(CSSPropertyID id) const
161 return Length(); // auto
166 return primitiveValue->computeLength<Length>(m_document->renderStyle(), m_document->renderStyle());
172 return Length(primitiveValue->getFloatValue(), Percent);
176 return Length(ExtendToZoom);
178 return Length();
182 return Length(0, Fixed);

Completed in 4317 milliseconds

1234567891011>>