Searched defs:length (Results 101 - 125 of 4032) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DDOMStorageItemsView.js97 for (var i = 0; i < children.length; ++i) {
101 this.deleteButton.visible = (children.length > 1);
122 for (var i = 0; i < children.length; ++i)
127 rootNode.insertChild(childNode, children.length - 1);
145 for (var i = 0; i < children.length; ++i) {
177 this.deleteButton.visible = (this._dataGrid.rootNode().children.length > 1);
190 var length = items.length; variable
191 for (var i = 0; i < items.length; i++) {
202 length
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterBase.cpp46 void FileWriterBase::initialize(PassOwnPtr<WebFileWriter> writer, long long length) argument
49 ASSERT(length >= 0);
51 m_length = length;
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DParserUtilities.h30 inline bool skipString(const CharType*& ptr, const CharType* end, const CharType* name, int length) argument
32 if (end - ptr < length)
34 if (memcmp(name, ptr, sizeof(CharType) * length))
36 ptr += length;
40 inline bool skipString(const UChar*& ptr, const UChar* end, const LChar* name, int length) argument
42 if (end - ptr < length)
44 for (int i = 0; i < length; ++i) {
48 ptr += length;
55 int length = strlen(str); local
56 if (end - ptr < length)
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebColorName.cpp109 void setNamedColors(const WebColorName* colorNames, const WebColor* colors, size_t length) argument
111 for (size_t i = 0; i < length; ++i) {
H A DWebEntities.cpp65 unsigned length = value.length(); local
66 for (unsigned i = 0; i < length; ++i) {
H A DWebNodeList.cpp62 unsigned WebNodeList::length() const function in class:blink::WebNodeList
64 return m_private->length();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DIntegralTypedArrayBase.h54 IntegralTypedArrayBase(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) argument
55 : TypedArrayBase<T>(buffer, byteOffset, length)
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuffer.h44 explicit StringBuffer(unsigned length) argument
47 m_data = StringImpl::createUninitialized(length, characters);
56 unsigned length() const { return m_data ? m_data->length() : 0; } function in class:WTF::StringBuffer
57 CharType* characters() { return length() ? const_cast<CharType*>(m_data->getCharacters<CharType>()) : 0; }
59 CharType& operator[](unsigned i) { ASSERT_WITH_SECURITY_IMPLICATION(i < length()); return characters()[i]; }
71 if (m_data->length() == newLength)
H A DStringConcatenate.cpp124 unsigned length = m_buffer.length(); local
128 for (unsigned i = 0; i < length; ++i)
136 unsigned length = m_buffer.length(); local
140 for (unsigned i = 0; i < length; ++i)
144 for (unsigned i = 0; i < length; ++i)
/external/chromium_org/third_party/WebKit/public/web/
H A DWebTextCheckingResult.h47 , length(0)
52 WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0) argument
55 , length(length)
67 int length; member in struct:blink::WebTextCheckingResult
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Dinput_test.cpp40 EXPECT_EQ(3u, input.length(0));
46 int length[] = {-1}; local
47 pp::Input input(1, str, length);
48 EXPECT_EQ(3u, input.length(0));
54 int length[] = {3}; local
55 pp::Input input(1, str, length);
56 // Note that strlen(str[0]) != length[0].
58 EXPECT_EQ(static_cast<size_t>(length[0]), input.length(0));
146 // Note that the length fo
148 int length[] = {2, 3}; local
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbase64.h106 * to call |EVP_EncodeBlock| on an input of length |len|. This includes the
116 * length |len|. */
131 * and/or fix exactly what's going on here; maximum line length and such. */
163 unsigned length; /* The length is either the output line length member in struct:evp_encode_ctx_st
165 * length that is ok. Once decoding begins,
166 * the length is adjusted up each time a longer
H A Dbuf.h69 size_t length; /* current number of bytes */ member in struct:buf_mem_st
80 /* BUF_MEM_grow ensures that |buf| has length |len| and allocates memory if
81 * needed. If the length of |buf| increased, the new bytes are filled with
82 * zeros. It returns the length of |buf|, or zero if there's an error. */
/external/chromium_org/third_party/icu/source/common/
H A Ducnvdisp.c40 int32_t length; local
60 name=ures_getStringByKey(rb, cnv->sharedData->staticData->name, &length, &localStatus);
68 u_memcpy(displayName, name, uprv_min(length, displayNameCapacity)*U_SIZEOF_UCHAR);
71 length=(int32_t)uprv_strlen(cnv->sharedData->staticData->name);
72 u_charsToUChars(cnv->sharedData->staticData->name, displayName, uprv_min(length, displayNameCapacity));
74 return u_terminateUChars(displayName, displayNameCapacity, length, pErrorCode);
H A Dudatamem.h42 int32_t length; /* Length of the data in bytes; -1 if unknown. */ member in struct:UDataMemory
H A Dures_cnv.c33 int32_t length; local
43 length=u_strlen(myPath);
44 if(length>=sizeof(pathBuffer)) {
47 } else if(uprv_isInvariantUString(myPath, length)) {
52 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */
57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
62 if(length>=sizeof(pathBuffer)) {
H A Dustrfmt.c24 * @return the length of the result, not including any terminating
31 int32_t length = 0; local
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
40 } while(i && length<capacity);
42 while (length < minwidth){
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
46 if(length<capacity){
47 buffer[length] = (UChar) 0x0000;
51 for (j = 0; j < (length / 2); j++){
52 temp = buffer[(length
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Durep.h58 * @return The length of the text.
61 int32_t (*length)(const UReplaceable* rep); member in struct:UReplaceableCallbacks
66 * returned by (*length)(rep). See unistr.h for a description of
121 * @param dst array in which to copy characters. The length of
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_wgt.h28 int32_t length, count; member in struct:WeightRange
/external/chromium_org/third_party/libaddressinput/src/cpp/test/util/
H A Dmd5_unittest.cc80 const int length = 10 * 1024 * 1024 + 1; local
81 scoped_ptr<char[]> data(new char[length]);
83 for (int i = 0; i < length; ++i)
87 MD5Sum(data.get(), length, &digest);
122 const int length = 10 * 1024 * 1024 + 1; local
123 scoped_ptr<char[]> data(new char[length]);
125 for (int i = 0; i < length; ++i)
129 while (total < length) {
131 if (len > length - total)
132 len = length
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_mman.h64 static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, int fd, loff_t offset) argument
72 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
77 # define os_mmap(addr, length, prot, flags, fd, offset) mmap(addr, length, prot, flags, fd, offset)
80 #define os_munmap(addr, length) munmap(addr, length)
/external/chromium_org/third_party/ots/src/
H A Dcbdt.cc15 bool ots_cbdt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
22 file->cbdt->length = length;
31 if (!out->Write(file->cbdt->data, file->cbdt->length)) {
H A Dcblc.cc15 bool ots_cblc_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
22 file->cblc->length = length;
31 if (!out->Write(file->cblc->data, file->cblc->length)) {
H A Dcvt.cc12 bool ots_cvt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
13 Buffer table(data, length);
18 if (length >= 128 * 1024u) {
22 if (length % 2 != 0) {
26 if (!table.Skip(length)) {
31 cvt->length = length;
45 if (!out->Write(cvt->data, cvt->length)) {
H A Dfpgm.cc12 bool ots_fpgm_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
13 Buffer table(data, length);
18 if (length >= 128 * 1024u) {
22 if (!table.Skip(length)) {
27 fpgm->length = length;
39 if (!out->Write(fpgm->data, fpgm->length)) {

Completed in 347 milliseconds

1234567891011>>