Searched refs:Length (Results 151 - 175 of 915) sorted by relevance

1234567891011>>

/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc46 int32_t FontData::Length() const { function in class:sfntly::FontData
47 return std::min<int32_t>(array_->Length() - bound_offset_, bound_length_);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTextControlSingleLine.cpp113 innerEditorRenderer->style()->setLogicalHeight(Length(Auto));
120 viewPortRenderer->style()->setLogicalHeight(Length(Auto));
138 innerEditorRenderer->style()->setLogicalHeight(Length(desiredLogicalHeight, Fixed));
141 viewPortRenderer->style()->setLogicalHeight(Length(desiredLogicalHeight, Fixed));
150 containerRenderer->style()->setLogicalHeight(Length(logicalHeightLimit, Fixed));
153 containerRenderer->style()->setLogicalHeight(Length(contentLogicalHeight(), Fixed));
156 containerRenderer->style()->setLogicalHeight(Length(containerLogicalHeight, Fixed));
176 placeholderBox->style()->setWidth(Length(innerEditorSize.width() - placeholderBox->borderAndPaddingWidth(), Fixed));
177 placeholderBox->style()->setHeight(Length(innerEditorSize.height() - placeholderBox->borderAndPaddingHeight(), Fixed));
228 viewPortRenderer->style()->setHeight(Length());
[all...]
H A DFixedTableLayout.cpp87 m_width.fill(Length(Auto));
100 Length colStyleLogicalWidth = col->style()->logicalWidth();
111 m_width.append(Length());
117 m_width.append(Length());
140 Length logicalWidth = cell->styleOrColLogicalWidth();
144 logicalWidth = Length(); // Make it Auto
185 Length tableLogicalWidth = m_table->style()->logicalWidth();
H A DAutoTableLayout.cpp87 Length cellLogicalWidth = cell->styleOrColLogicalWidth();
90 cellLogicalWidth = Length(); // Make it Auto
132 columnLayout.logicalWidth = Length();
150 Length groupLogicalWidth;
156 Length colLogicalWidth = column->style()->logicalWidth();
160 colLogicalWidth = Length();
173 groupLogicalWidth = Length();
187 Length tw = table->style()->width();
253 Length tableLogicalWidth = m_table->style()->logicalWidth();
263 const Length
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DDFA.cs163 for (int p = 0; p < transition[s].Length; p++) {
223 for (int i = 0; i < encodedString.Length; i += 2) {
228 for (int i = 0; i < encodedString.Length; i += 2) {
243 for (int i = 0; i < encodedString.Length; i += 2) {
248 for (int i = 0; i < encodedString.Length; i += 2) {
H A DANTLRStringStream.cs86 : this(input.ToCharArray(), input.Length, sourceName) {
99 if (numberOfActualCharsInArray > data.Length)
266 if (start + length > data.Length)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DDFA.cs191 for ( int p = 0; p < transition[s].Length; p++ )
254 for ( int i = 0; i < encodedString.Length; i += 2 )
260 for ( int i = 0; i < encodedString.Length; i += 2 )
278 for ( int i = 0; i < encodedString.Length; i += 2 )
284 for ( int i = 0; i < encodedString.Length; i += 2 )
H A DANTLRStringStream.cs89 : this( input.ToCharArray(), input.Length, sourceName )
105 if (numberOfActualCharsInArray > data.Length)
305 if (start + length > data.Length)
H A DANTLRFileStream.cs77 n = data.Length;
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperationsTest.cpp82 fromOps.operations().append(TranslateTransformOperation::create(Length(-30, blink::Fixed), Length(20, blink::Fixed), 15, TransformOperation::Translate3D));
83 toOps.operations().append(TranslateTransformOperation::create(Length(10, blink::Fixed), Length(10, blink::Fixed), 200, TransformOperation::Translate3D));
123 fromOps.operations().append(TranslateTransformOperation::create(Length(testTransforms[i][0][0], blink::Fixed), Length(testTransforms[i][0][1], blink::Fixed), testTransforms[i][0][2], TransformOperation::Translate3D));
124 toOps.operations().append(TranslateTransformOperation::create(Length(testTransforms[i][1][0], blink::Fixed), Length(testTransforms[i][1][1], blink::Fixed), testTransforms[i][1][2], TransformOperation::Translate3D));
178 fromOps.operations().append(TranslateTransformOperation::create(Length(testTransforms[i][0][0], blink::Fixed), Length(testTransform
[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/lzma/CPP/7zip/Archive/
H A DSplitHandler.cpp75 int numLetters = _changedPart.Length();
112 int numLetters = _changedPart.Length();
181 while (numLetters < extBig.Length())
183 if (extBig[extBig.Length() - numLetters - 1] != 'A')
190 while (numLetters < extBig.Length())
192 if (extBig[extBig.Length() - numLetters - 1] != '0')
196 if (numLetters != ext.Length())
204 seqName._unchangedPart = prefix + ext.Left(extBig.Length() - numLetters);
208 if (prefix.Length() < 1)
211 _subName = prefix.Left(prefix.Length()
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp242 if (info.Length() != 2) {
243 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(2, info.Length()));
294 if (info.Length() < 1) {
295 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
307 if (info.Length() != 3) {
308 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(3, info.Length()));
331 if (info.Length() != 1) {
332 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
351 if (info.Length() != 2) {
352 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(2, info.Length()));
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DViewportDescription.cpp52 float ViewportDescription::resolveViewportLength(const Length& length, const FloatSize& initialViewportSize, Direction direction)
79 PageScaleConstraints ViewportDescription::resolve(const FloatSize& initialViewportSize, Length legacyFallbackWidth) const
83 Length copyMaxWidth = maxWidth;
84 Length copyMinWidth = minWidth;
91 copyMinWidth = Length(ExtendToZoom);
94 copyMinWidth = Length(ExtendToZoom);
95 copyMaxWidth = Length(ExtendToZoom);
/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/chromium_org/extensions/renderer/
H A Dv8_context_native_handler.cc33 CHECK_EQ(args.Length(), 1);
50 CHECK_EQ(args.Length(), 1);
61 CHECK_EQ(args.Length(), 1);
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8SQLTransactionCustom.cpp50 if (!info.Length()) {
60 if (info.Length() > 1 && !isUndefinedOrNull(info[1])) {
72 sqlArgsLength = sqlArgsObject->GetPropertyNames()->Length();
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DImageResource.h39 class Length;
82 void computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsicHeight, FloatSize& intrinsicRatio);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleRareNonInheritedData.h99 Length m_perspectiveOriginX;
100 Length m_perspectiveOriginY;
133 Length m_shapeMargin;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DCSSToStyleMap.cpp203 Length firstLength;
204 Length secondLength;
211 secondLength = Length();
234 Length length = primitiveValue->convertToLength<FixedConversion | PercentConversion>(cssToLengthConversionData());
256 Length length = primitiveValue->convertToLength<FixedConversion | PercentConversion>(cssToLengthConversionData());
508 box.m_top = Length(slices->top()->getDoubleValue(), Percent);
510 box.m_top = Length(slices->top()->getIntValue(CSSPrimitiveValue::CSS_NUMBER), Fixed);
512 box.m_bottom = Length(slices->bottom()->getDoubleValue(), Percent);
514 box.m_bottom = Length((int)slices->bottom()->getFloatValue(CSSPrimitiveValue::CSS_NUMBER), Fixed);
516 box.m_left = Length(slice
[all...]
/external/chromium_org/base/win/
H A Dscoped_bstr.h74 size_t Length() const;
/external/chromium_org/chrome/renderer/extensions/
H A Dfile_manager_private_custom_bindings.cc30 DCHECK(args.Length() == 2);
H A Dsync_file_system_custom_bindings.cc28 if (args.Length() != 2) {
H A Dtabs_custom_bindings.cc32 if (args.Length() >= 3 && args[0]->IsInt32() && args[1]->IsString() &&
/external/chromium_org/courgette/
H A Dversioning_unittest.cc42 size_t generated_length = generated_stream.Length();

Completed in 465 milliseconds

1234567891011>>