/external/arduino/hardware/arduino/cores/arduino/ |
D | WString.cpp | 29 getBuffer( _length = strlen( value ) ); in String() 36 getBuffer( _length = value._length ); in String() 43 _length = 1; in String() 53 _length = 1; in String() 65 getBuffer( _length = strlen(buf) ); in String() 74 getBuffer( _length = strlen(buf) ); in String() 83 getBuffer( _length = strlen(buf) ); in String() 92 getBuffer( _length = strlen(buf) ); in String() 105 if(_length > loc) { in setCharAt() 125 if ( rhs._length > _length ) in operator =() [all …]
|
D | WString.h | 40 ~String() { free(_buffer); _length = _capacity = 0;} //added _length = _capacity = 0; in ~String() 70 const unsigned int length( ) const { return _length; } in length() 90 unsigned int _length; // the String length (not counting the '\0') variable 103 if (_buffer == NULL) _length = _capacity = 0; in getBuffer()
|
/external/lzma/CPP/Common/ |
D | MyString.h | 136 Delete(i, _length - i); in TrimRightWithCharSet() 143 sizeof(T) * (_length - srcIndex + 1)); in MoveItems() 159 int _length; variable 175 for (int i = 0; i < _length; i++) in SetCapacity() 180 _chars[_length] = 0; in SetCapacity() 186 int freeSize = _capacity - _length - 1; in GrowLength() 203 if (index > _length) in CorrectIndex() 204 index = _length; in CorrectIndex() 208 CStringBase(): _chars(0), _length(0), _capacity(0) { SetCapacity(3); } in CStringBase() 209 CStringBase(T c): _chars(0), _length(0), _capacity(0) in CStringBase() [all …]
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
D | unistr.h | 94 … define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)U_D… argument 96 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)L #… argument 98 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)cs,… argument 100 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(cs, _length, US_INV) argument 3459 int32_t& _length) const in pinIndices() argument 3468 if(_length < 0) { in pinIndices() 3469 _length = 0; in pinIndices() 3470 } else if(_length > (len - start)) { in pinIndices() 3471 _length = (len - start); in pinIndices() 3583 int32_t _length, in compare() argument [all …]
|
/external/icu4c/common/unicode/ |
D | unistr.h | 118 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)U_DECLARE_UTF16(cs),… argument 120 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)L ## cs, _length) argument 122 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)cs, _length) argument 124 # define UNICODE_STRING(cs, _length) icu::UnicodeString(cs, _length, US_INV) argument 3584 int32_t& _length) const in pinIndices() argument 3593 if(_length < 0) { in pinIndices() 3594 _length = 0; in pinIndices() 3595 } else if(_length > (len - start)) { in pinIndices() 3596 _length = (len - start); in pinIndices() 3715 int32_t _length, in compare() argument [all …]
|
/external/chromium_org/third_party/icu/patches/ |
D | gcc46.patch | 10 return doReplace(start, _length, buffer, 0, count); 14 int32_t _length = 0; 16 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError); 18 return doReplace(length(), 0, buffer, 0, _length);
|
D | clang.patch | 9 - return extract(start, _length, dst, dst!=0 ? ((dst >= (char*)((size_t)-1) - UINT32_MAX) ? (((cha… 10 + return extract(start, _length, dst, dst!=0 ? ((dst >= (char*)((size_t)-1) - UINT32_MAX) ? static… 12 return extract(start, _length, dst, dst!=0 ? 0xffffffff : 0, codepage);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | SuggestBox.js | 62 this._length = 0; 143 …var maxHeight = this._maxItemsHeight ? contentHeight * this._maxItemsHeight / this._length : Math.… 227 if (!this._length) 236 index = (this._length + index) % this._length; 238 index = Number.constrain(index, 0, this._length - 1); 284 this._length = items.length;
|
/external/clang/test/CodeGenCXX/ |
D | 2010-07-23-DeclLoc.cpp | 44 typename SIZE::size_t _length; member in TRange 45 …ame SIZE::ptr_t location, typename SIZE::size_t length) : _location(location), _length(length) { } in TRange()
|
/external/webrtc/src/system_wrappers/source/ |
D | trace_impl.cc | 81 _length(), in TraceImpl() 467 _length[_activeQueue][idx] = length; in AddMessageToList() 475 _length[_activeQueue][_nextFreeIdx[_activeQueue]] = strlen(warning_msg); in AddMessageToList() 477 warning_msg, _length[_activeQueue][idx]); in AddMessageToList() 536 _length[localQueueActive][idx]); in WriteToFile() 592 WebRtc_UWord16 length = _length[localQueueActive][idx]; in WriteToFile()
|
D | trace_impl.h | 126 WebRtc_UWord16 _length[WEBRTC_TRACE_NUM_ARRAY][WEBRTC_TRACE_MAX_QUEUE]; variable
|
/external/chromium_org/content/renderer/media/ |
D | rtc_video_decoder.cc | 240 inputImage._length); in Decode() 249 shm_buffer = GetSHM_Locked(inputImage._length); in Decode() 577 memcpy(shm_buffer->shm->memory(), input_image._buffer, input_image._length); in SaveToDecodeBuffers_Locked() 599 uint8_t* buffer = new uint8_t[input_image._length]; in SaveToPendingBuffers_Locked() 603 memcpy(buffer, input_image._buffer, input_image._length); in SaveToPendingBuffers_Locked() 605 buffer, input_image._length, input_image._length); in SaveToPendingBuffers_Locked() 628 scoped_ptr<SHMBuffer> shm_buffer = GetSHM_Locked(input_image._length); in MovePendingBuffersToDecodeBuffers()
|
D | rtc_video_decoder_bridge_tv.cc | 87 media::DecoderBuffer::CopyFrom(input_image._buffer, input_image._length); in Decode()
|
D | rtc_video_encoder.cc | 628 header.fragmentationLength[0] = image->_length; in ReturnEncodedImage()
|
/external/chromium_org/third_party/jinja2/ |
D | runtime.py | 295 self._length = len(iterable) 297 self._length = None 338 if self._length is None: 345 self._length = len(iterable) + self.index0 + 1 346 return self._length
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Update.cpp | 54 UInt64 _length; member in COutMultiVolStream 76 _length = 0; in Init() 166 if (_absPos > _length) in Write() 167 _length = _absPos; in Write() 197 _absPos = _length + offset; in Seek() 234 _length = newSize; in SetSize()
|
/external/qemu/distrib/sdl-1.2.15/src/audio/ums/ |
D | SDL_umsaudio.c | 180 samplesToWrite = this->hidden->playbuf._length/this->hidden->bytesPerSample; in UMS_PlayAudio() 328 this->hidden->playbuf._length = 0; in UMS_OpenAudio() 331 this->hidden->fillbuf._length = 0; in UMS_OpenAudio()
|
/external/strace/ |
D | stream.c | 788 if (m.struct.elem##_length < 0 || \ 790 m.struct.elem##_offset + m.struct.elem##_length > len) \ 793 m.struct.elem##_length, \ 800 m.struct.elem##_length); \
|
/external/chromium_org/third_party/libevent/test/ |
D | regress.gen.h | 21 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
|
/external/chromium/third_party/libevent/test/ |
D | regress.gen.h | 21 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
|
/external/icu4c/common/ |
D | unistr.cpp | 1250 int32_t _length, in replace() argument 1259 return doReplace(start, _length, buffer, 0, isError ? 0 : count); in replace() 1265 int32_t _length = 0; in append() local 1267 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError); in append() 1270 return isError ? *this : doReplace(length(), 0, buffer, 0, _length); in append()
|
/external/chromium/third_party/libevent/ |
D | event_rpcgen.py | 448 self._length = length 462 dcl = ['ev_uint8_t %s_data[%s];' % (self._name, self._length)] 489 name, self._length), 524 if not self._length:
|
/external/chromium_org/third_party/libevent/ |
D | event_rpcgen.py | 448 self._length = length 462 dcl = ['ev_uint8_t %s_data[%s];' % (self._name, self._length)] 489 name, self._length), 524 if not self._length:
|
/external/libvorbis/doc/ |
D | a1-encapsulation-ogg.tex | 130 current packet be at position (3*long\_block\_length/4) - 131 (short\_block\_length/4).
|
/external/skia/tests/ |
D | BitmapCopyTest.cpp | 165 explicit Coordinates(int _length): length(_length) in Coordinates()
|