HomeSort by relevance Sort by last modified time
    Searched refs:LENGTH (Results 26 - 44 of 44) sorted by null

12

  /frameworks/base/obex/javax/obex/
ClientOperation.java 107 for (int i = 0; i < headerList.length; i++) {
113 mRequestHeader.mAuthChall = new byte[(header).mAuthChall.length];
115 (header).mAuthChall.length);
119 mRequestHeader.mAuthResp = new byte[(header).mAuthResp.length];
121 (header).mAuthResp.length);
203 * Returns the length of the content which is being provided. E.g. if the
204 * connection is via HTTP, then the value of the content-length header field
206 * @return the content length of the resource that this connection's URL
207 * references, or -1 if the content length is not known
211 Long temp = (Long)mReplyHeader.getHeader(HeaderSet.LENGTH);
    [all...]
ServerOperation.java 153 int length = in.read(); local
154 length = (length << 8) + in.read();
157 * Determine if the packet length is larger than this device can receive
159 if (length > ObexHelper.MAX_PACKET_SIZE_INT) {
167 if (length > 3) {
168 byte[] data = new byte[length - 3];
171 while (bytesReceived != data.length) {
172 bytesReceived += in.read(data, bytesReceived, data.length - bytesReceived);
200 replyHeader.mAuthResp = new byte[requestHeader.mAuthResp.length];
392 int length = mInput.read(); local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
transrt.cpp 139 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
190 for (int32_t i = 0; i < decomp.length(); ++i) {
209 for (int32_t i = 0; i < decomp.length(); ++i) {
442 for (int32_t i = 0; i < a.length(); i += UTF_CHAR_LENGTH(cp)) {
537 int32_t length = transliteratorID.extract(str, 100, NULL, status); local
538 str[length] = 0;
542 int32_t length = transliteratorID.extract(str, 100, NULL, status); local
543 str[length] = 0;
550 for (int i = 0; i < irrelevants.length(); ++i) {
    [all...]
  /external/icu4c/test/intltest/
transrt.cpp 139 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
190 for (int32_t i = 0; i < decomp.length(); ++i) {
209 for (int32_t i = 0; i < decomp.length(); ++i) {
442 for (int32_t i = 0; i < a.length(); i += UTF_CHAR_LENGTH(cp)) {
537 int32_t length = transliteratorID.extract(str, 100, NULL, status); local
538 str[length] = 0;
542 int32_t length = transliteratorID.extract(str, 100, NULL, status); local
543 str[length] = 0;
550 for (int i = 0; i < irrelevants.length(); ++i) {
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cnumtst.c 34 #define LENGTH(arr) (sizeof(arr)/sizeof(arr[0]))
725 for (i = 0; i < LENGTH(values); ++i) {
730 len = unum_format(spellout_def, value, buffer, LENGTH(buffer), NULL, &status);
737 ustrToAstr(buffer, len, logbuf, LENGTH(logbuf));
738 log_verbose("formatted %d as '%s', length: %d\n", value, logbuf, len);
    [all...]
  /external/icu4c/test/cintltst/
cnumtst.c 34 #define LENGTH(arr) (sizeof(arr)/sizeof(arr[0]))
725 for (i = 0; i < LENGTH(values); ++i) {
730 len = unum_format(spellout_def, value, buffer, LENGTH(buffer), NULL, &status);
737 ustrToAstr(buffer, len, logbuf, LENGTH(logbuf));
738 log_verbose("formatted %d as '%s', length: %d\n", value, logbuf, len);
    [all...]
  /external/webkit/WebCore/page/mac/
FrameMac.mm 105 if (label.length() != 0) {
107 endsWithWordChar = wordRegExp.match(label.substring(label.length() - 1, 1)) >= 0;
171 lengthSearched += nodeString.length();
216 if (result && [result length] > 0) {
226 if (lengthSearched + nodeString.length() > maxCharsSearched)
234 lengthSearched += nodeString.length();
242 if (result && [result length] > 0) {
266 int length;
273 length = regExp->matchedLength();
274 if (length >= bestLength)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 308 Log.v(TAG, "length :" + fileInfo.mLength);
340 request.setHeader(HeaderSet.LENGTH, fileInfo.mLength);
411 // if file length is smaller than buffer size, only one packet
466 Log.i(TAG, "Remote reject file " + fileInfo.mFileName + " length "
474 + " length " + fileInfo.mLength);
574 for (int i = c.length - 1; i >= 0; i--) {
BluetoothOppObexServerSession.java 171 Long length; local
188 length = (Long)request.getHeader(HeaderSet.LENGTH);
191 if (length == 0) {
192 if (D) Log.w(TAG, "length is 0, reject the transfer");
255 values.put(BluetoothShare.TOTAL_BYTES, length.intValue());
510 Log.v(TAG, "length :" + fileInfo.mLength);
  /external/chromium/third_party/zlib/
inflate.c 19 * - Remove unnecessary second byte pull from length extra in inffast.c
76 * - Changed inflateBack() argument and in_func typedef to swap the length
196 Return state with length and distance decoding tables and index sizes set to
218 /* literal/length table */
508 if there is no input available. The decoding of variable length codes uses
569 unsigned len; /* length to copy for repeats, bits to drop */
671 state->length = (unsigned)(hold);
682 copy = state->length;
687 len = state->head->extra_len - state->length;
696 state->length -= copy
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 19 * - Remove unnecessary second byte pull from length extra in inffast.c
76 * - Changed inflateBack() argument and in_func typedef to swap the length
196 Return state with length and distance decoding tables and index sizes set to
218 /* literal/length table */
508 if there is no input available. The decoding of variable length codes uses
569 unsigned len; /* length to copy for repeats, bits to drop */
671 state->length = (unsigned)(hold);
682 copy = state->length;
687 len = state->head->extra_len - state->length;
696 state->length -= copy
    [all...]
  /external/zlib/
inflate.c 19 * - Remove unnecessary second byte pull from length extra in inffast.c
76 * - Changed inflateBack() argument and in_func typedef to swap the length
231 Return state with length and distance decoding tables and index sizes set to
253 /* literal/length table */
543 if there is no input available. The decoding of variable length codes uses
604 unsigned len; /* length to copy for repeats, bits to drop */
708 state->length = (unsigned)(hold);
719 copy = state->length;
724 len = state->head->extra_len - state->length;
733 state->length -= copy
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 66 // The length of suffix of vcard name - ".vcf" is 5
193 if (uuid.length != UUID_LENGTH) {
194 Log.w(TAG, "Wrong UUID length");
274 if (current_path_tmp.length() != 0) {
286 if ((current_path_tmp.length() != 0) && (!isLegalPath(current_path_tmp))) {
371 if (name.contains(SIM1.subSequence(0, SIM1.length()))) {
379 if (name.contains(PB.subSequence(0, PB.length()))) {
382 } else if (name.contains(ICH.subSequence(0, ICH.length()))) {
385 } else if (name.contains(OCH.subSequence(0, OCH.length()))) {
388 } else if (name.contains(MCH.subSequence(0, MCH.length()))) {
492 int length = appParam[i]; local
    [all...]
  /external/webkit/WebCore/css/
CSSComputedStyleDeclaration.cpp 353 Length l;
377 // So we should get the opposite length unit and see if it is auto.
629 if (!list->length())
921 Length length = style->lineHeight(); local
1509 unsigned CSSComputedStyleDeclaration::length() const function in class:WebCore::CSSComputedStyleDeclaration
    [all...]
CSSStyleSelector.cpp 192 for (unsigned int i = 0; i < valueList->length(); i++) { \
256 for (unsigned int i = 0; i < valueList->length(); i++) { \
306 for (unsigned int i = 0; i < valueList->length(); i++) { \
457 unsigned length = pageGroupUserSheets->size(); local
458 for (unsigned i = 0; i < length; i++)
470 unsigned length = styleSheets->length(); local
471 for (unsigned i = 0; i < length; i++) {
609 unsigned s = valueList->length();
637 unsigned valueSize = resolvedVariable->length();
2949 int length = list ? list->length() : 0; local
    [all...]
  /external/webkit/WebCore/rendering/
RenderBoxModelObject.cpp 409 Length padding = style()->paddingTop();
418 Length padding = style()->paddingBottom();
427 Length padding = style()->paddingLeft();
436 Length padding = style()->paddingRight();
635 Length layerWidth = fillLayer->size().size.width();
636 Length layerHeight = fillLayer->size().size.height();
    [all...]
  /external/iproute2/doc/
ip-cref.tex 275 --- change the transmit queue length of the device.
388 {\em qlen\/} is the default transmit queue length of the device measured
499 on the interface. This number wraps when the maximal length of the data type
533 RX errors: length crc frame fifo missed
581 a slash and a decimal number which encodes the network prefix length.
588 encoding the network prefix length. If a peer address is specified,
589 the local address {\em cannot\/} have a prefix length. The network prefix is associated
644 --- add the address 10.0.0.1 with prefix length 24 (i.e.\ netmask
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 373 milliseconds

12