Searched defs:length (Results 226 - 250 of 2288) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaStringV8.h57 int length() const { return m_utf8String.length(); } function in class:JSC::Bindings::JavaStringImpl
/external/webkit/Source/WebCore/css/
H A DCSSRuleList.cpp41 unsigned len = list->length();
54 unsigned CSSRuleList::length() const function in class:WebCore::CSSRuleList
56 return m_list ? m_list->length() : m_lstCSSRules.size();
H A DCSSValueList.h49 size_t length() const { return m_values.size(); } function in class:WebCore::CSSValueList
H A DMediaList.h68 unsigned length() const { return m_queries.size(); } function in class:WebCore::MediaList
H A DStyleSheetList.cpp48 unsigned StyleSheetList::length() const function in class:WebCore::StyleSheetList
55 return index < length() ? m_sheets[index].get() : 0;
/external/webkit/Source/WebCore/dom/
H A DCharacterData.h34 unsigned length() const { return m_data->length(); } function in class:WebCore::CharacterData
46 // Returns how much could be added before length limit was met.
H A DChildNodeList.cpp35 unsigned ChildNodeList::length() const function in class:WebCore::ChildNodeList
103 // Note: Due to the overrides of the length and item functions above,
H A DDOMStringList.h50 size_t length() const { return m_strings.size(); } function in class:WebCore::DOMStringList
H A DStaticHashSetNodeList.cpp50 unsigned StaticHashSetNodeList::length() const function in class:WebCore::StaticHashSetNodeList
/external/webkit/Source/WebCore/fileapi/
H A DBlob.cpp99 long long length = end - start; local
103 blobData->appendFile(static_cast<const File*>(this)->path(), start, length, modificationTime);
105 blobData->appendBlob(m_internalURL, start, length);
107 return Blob::create(blobData.release(), length);
H A DEntryArray.h49 unsigned length() const { return m_entries.size(); } function in class:WebCore::EntryArray
H A DEntryArraySync.h53 unsigned length() const { return m_entries.size(); } function in class:WebCore::EntryArraySync
H A DFileList.h44 unsigned length() const { return m_files.size(); } function in class:WebCore::FileList
H A DFileWriterBase.h51 void initialize(PassOwnPtr<AsyncFileWriter>, long long length);
57 long long length() const function in class:WebCore::FileWriterBase
75 void setLength(long long length) argument
77 m_length = length;
/external/webkit/Source/WebCore/html/
H A DDOMSettableTokenList.h49 virtual unsigned length() const { return m_tokens.size(); } function in class:WebCore::DOMSettableTokenList
H A DDOMTokenList.cpp40 unsigned length = token.length(); local
41 for (unsigned i = 0; i < length; ++i) {
58 if (input[input.length()-1] != ' ')
68 unsigned inputLength = input.length();
H A DDataGridColumnList.h27 unsigned length() const { return m_columns.size(); } function in class:WebCore::DataGridColumnList
H A DHTMLOptionsCollection.cpp42 add(element, length(), ec);
62 if (index == -1 || unsigned(index) >= length())
85 void HTMLOptionsCollection::setLength(unsigned length, ExceptionCode& ec) argument
87 static_cast<HTMLSelectElement*>(base())->setLength(length, ec);
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPixelArray.h42 static PassRefPtr<CanvasPixelArray> create(unsigned length);
47 unsigned length() const { return m_data->length(); } function in class:WebCore::CanvasPixelArray
70 CanvasPixelArray(unsigned length);
/external/webkit/Source/WebCore/html/parser/
H A DCSSPreloadScanner.cpp149 static String parseCSSStringOrURL(const UChar* characters, size_t length) argument
152 size_t reducedLength = length;
/external/webkit/Source/WebCore/icu/unicode/
H A Duset.h100 * The length of the array that contains BMP characters.
105 * The total length of the array.
108 int32_t length; member in struct:USerializedSet
136 * @param patternLength the length of the pattern, or -1 if null
149 * @param patternLength the length of the pattern, or -1 if null
190 * @param patternLength The length of the UChar string. -1 if NUL terminated.
251 * @param propLength the length of the prop, or -1 if NULL
260 * @param valueLength the length of the value, or -1 if NULL
277 * @param patternLength the length of the pattern, or -1 if NULL
297 * @return length o
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DDOMStorageItemsView.js95 var length = entries.length; variable
96 for (var i = 0; i < entries.length; i++) {
110 var length = nodes.length; variable
111 for (var i = 0; i < length; ++i)
114 if (length > 0)
/external/webkit/Source/WebCore/page/
H A DWebKitAnimationList.cpp44 unsigned WebKitAnimationList::length() const function in class:WebCore::WebKitAnimationList
/external/webkit/Source/WebCore/platform/
H A DFileMetadata.h45 // The length of the file in bytes.
46 // The value -1 means that the length is not set.
47 long long length; member in struct:WebCore::FileMetadata
59 FileMetadata() : modificationTime(0.0), length(-1), type(TypeUnknown) { }
H A DFileSystem.cpp82 unsigned length = inputStr.length(); local
83 Vector<UChar, 512> buffer(length * 3 + 1);
87 const UChar* strEnd = str + length;

Completed in 9026 milliseconds

1234567891011>>