HomeSort by relevance Sort by last modified time
    Searched refs:Length (Results 276 - 300 of 1028) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/src/
types.cc 83 for (int i = 0; i < this->AsUnion()->Length(); ++i) {
101 for (int i = 0; i < this->AsUnion()->Length(); ++i) {
142 for (int i = 0; i < type->AsUnion()->Length(); ++i) {
447 for (int i = 0; i < unioned->Length(); ++i) {
455 for (int i = 0; i < that->AsUnion()->Length(); ++i) {
511 for (int i = 0; i < unioned->Length(); ++i) {
519 for (int i = 0; i < that->AsUnion()->Length(); ++i) {
584 DCHECK(this->Length() >= 2); // (1)
585 for (int i = 0; i < this->Length(); ++i) {
589 for (int j = 0; j < this->Length(); ++j)
951 int length = type->AsUnion()->Length(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 53 Array.Copy(stackTrace, 1, frames, 0, stackTrace.Length);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestFastLexer.cs 48 StringBuilder builder = new StringBuilder( inputElement, 1000000 * inputElement.Length );
  /external/chromium_org/base/win/
scoped_bstr.cc 62 size_t ScopedBstr::Length() const {
  /external/chromium_org/chrome/renderer/extensions/
media_galleries_custom_bindings.cc 23 CHECK_EQ(1, args.Length());
  /external/chromium_org/extensions/renderer/
render_view_observer_natives.cc 60 CHECK(args.Length() == 2);
runtime_custom_bindings.cc 56 CHECK_EQ(args.Length(), 3);
71 args.Length() > 2 ? args[2]->BooleanValue() : false;
101 CHECK(args.Length() >= 2 && args[0]->IsString() && args[1]->IsString());
123 if (args.Length() != 2)
  /external/chromium_org/net/cert/
x509_util_mac.h 80 if (!field_ || field_->Length < sizeof(T))
  /external/chromium_org/sandbox/win/tools/finder/
finder_kernel.cc 79 unicode_str.Length = (USHORT)path.GetLength()*2;
123 object_directory_info->ObjectName.Length / sizeof(WCHAR));
126 object_directory_info->ObjectTypeName.Length / sizeof(WCHAR));
162 unicode_str.Length = (USHORT)path.GetLength()*2;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 55 if (info.Length() < 2) {
74 ExceptionState exceptionState(ExceptionState::SetterContext, "length", "HTMLOptionsCollection", info.Holder(), info.GetIsolate());
V8InspectorFrontendHostCustom.cpp 65 for (size_t i = 0; i < itemArray->Length(); ++i) {
108 if (info.Length() < 2)
131 if (info.Length() < 3)
164 if (info.Length() < 1 || !info[0]->IsInt32())
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 10 {# Overloaded methods have length checked during overload resolution #}
12 if (UNLIKELY(info.Length() < {{method.number_of_required_arguments}})) {
100 if (UNLIKELY(info.Length() <= {{argument.index}})) {
117 if (info.Length() > {{argument.index}} && {% if argument.is_nullable %}!isUndefinedOrNull(info[{{argument.index}}]) && {% endif %}!V8{{argument.idl_type}}::hasInstance(info[{{argument.index}}], info.GetIsolate())) {
147 if (info.Length() <= {{argument.index}} || !{% if argument.is_nullable %}(info[{{argument.index}}]->IsFunction() || info[{{argument.index}}]->IsNull()){% else %}info[{{argument.index}}]->IsFunction(){% endif %}) {
157 for (int i = {{argument.index}}; i < info.Length(); ++i) {
269 {# Length check needed to skip action on legacy calls without enough arguments.
271 if (info.Length() >= {{argument_index}} + 1 && listener && !impl->toNode())
338 setMinimumArityTypeError(exceptionState, {{number_of_required_arguments}}, info.Length());
351 createMinimumArityTypeErrorForConstructor("{{interface_name}}", {{number_of_required_arguments}}, info.Length(), info.GetIsolate()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestInterfaceGarbageCollected.cpp 67 if (UNLIKELY(info.Length() < 1)) {
68 V8ThrowException::throwException(createMinimumArityTypeErrorForMethod("func", "TestInterfaceGarbageCollected", 1, info.Length(), info.GetIsolate()), info.GetIsolate());
88 if (UNLIKELY(info.Length() < 1)) {
89 V8ThrowException::throwException(createMinimumArityTypeErrorForConstructor("TestInterfaceGarbageCollected", 1, info.Length(), info.GetIsolate()), info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMetaElement.h 61 Length parseViewportValueAsLength(const String& key, const String& value);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCell.h 90 Length styleOrColLogicalWidth() const
92 Length styleWidth = style()->logicalWidth();
138 return va == BASELINE || va == TEXT_BOTTOM || va == TEXT_TOP || va == SUPER || va == SUB || va == LENGTH;
276 Length logicalWidthFromColumns(RenderTableCol* firstColForThisCell, Length widthFromStyle) const;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderImageLengthBox.h 44 BorderImageLengthBox(Length length)
45 : m_left(length)
46 , m_right(length)
47 , m_top(length)
48 , m_bottom(length)
StyleBoxData.cpp 30 Length length[7]; member in struct:blink::SameSizeAsStyleBoxData
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Image.cpp 30 #include "platform/Length.h"
87 int length = m_encodedImageData->size(); local
88 if (!length)
233 void Image::computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsicHeight, FloatSize& intrinsicRatio)
236 intrinsicWidth = Length(intrinsicRatio.width(), Fixed);
237 intrinsicHeight = Length(intrinsicRatio.height(), Fixed);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.h 29 #include "platform/Length.h"
238 static PassRefPtr<BlurFilterOperation> create(const Length& stdDeviation)
243 const Length& stdDeviation() const { return m_stdDeviation; }
259 BlurFilterOperation(const Length& stdDeviation)
265 Length m_stdDeviation;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppsocket.cc 102 while (buffer_.Length() != 0) {
103 int written = cricket_socket_->Send(buffer_.Data(), buffer_.Length());
152 while (buffer_.Length() != 0) {
156 result = stream_->Write(buffer_.Data(), buffer_.Length(),
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvreader.cpp 86 int MkvReader::Length(long long* total, long long* available) {
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bufferobjects.c 251 GLintptr offset, GLsizeiptr length, GLbitfield access,
271 if (offset == 0 && length == obj->Size)
287 assert(length >= 0);
289 assert(offset + length <= obj->Size);
293 offset, length,
298 obj->Length = length;
308 GLintptr offset, GLsizeiptr length,
316 assert(length >= 0);
317 assert(offset + length <= obj->Length)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_data.h 62 // @param length the number of bytes in the bounded array
64 virtual bool Bound(int32_t offset, int32_t length);
77 // @param length the number of bytes in the slice
79 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length) = 0;
87 // Gets the length of the data.
88 virtual int32_t Length() const;
98 // @param length the length of the data wrapped
99 FontData(FontData* data, int32_t offset, int32_t length);
115 // Gets the length in the underlying data taking into account any bounds o
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_glyph.cc 90 return InternalReadData()->Length();
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfEncryptionCommonDictionary_autogen.cpp 35 int64_t SkPdfEncryptionCommonDictionary::Length(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Length", "");
44 return get("Length", "") != NULL;

Completed in 4498 milliseconds

<<11121314151617181920>>