/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
StringBuilderExtensions.cs | 56 public static int length( this StringBuilder buffer ) method in class:Antlr.Runtime.JavaExtensions.StringBuilderExtensions 58 return buffer.Length; 68 public static void setLength( this StringBuilder buffer, int length ) 70 buffer.Length = length;
|
/external/arduino/hardware/arduino/cores/arduino/ |
WString.h | 70 const unsigned int length( ) const { return _length; } function in class:String 89 unsigned int _capacity; // the array length minus one (for the '\0') 90 unsigned int _length; // the String length (not counting the '\0')
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERSequence.java | 46 int length = 0; local 49 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength(); 52 return 2 + length + 2;
|
/external/chromium/base/ |
string_util_win.h | 38 int length = vsnprintf_s(buffer, size, size - 1, format, arguments); local 39 if (length < 0) 41 return length; 48 int length = _vsnwprintf_s(buffer, size, size - 1, format, arguments); local 49 if (length < 0) 51 return length;
|
/external/chromium/googleurl/src/ |
url_test_utils.h | 49 int length = static_cast<int>(wcslen(src)); local 50 for (int i = 0; i < length; ++i) { 58 int length = static_cast<int>(src.length()); local 59 EXPECT_LT(length, 1024); 61 EXPECT_TRUE(url_canon::ConvertUTF8ToUTF16(src.data(), length, &output)); 62 return string16(output.data(), output.length()); 70 static_cast<int>(src.length()),
|
/external/compiler-rt/lib/ |
enable_execute_stack.c | 55 size_t length = endPage - startPage; local 56 (void) mprotect((void *)startPage, length, PROT_READ | PROT_WRITE | PROT_EXEC);
|
/external/icu4c/common/ |
udatamem.h | 42 int32_t length; /* Length of the data in bytes; -1 if unknown. */ member in struct:UDataMemory
|
/external/icu4c/common/unicode/ |
urep.h | 58 * @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/icu4c/i18n/ |
ucol_wgt.h | 28 int32_t length, count; member in struct:WeightRange
|
/external/icu4c/samples/case/ |
ucase.c | 33 int length; local 50 length = u_strToLower(buffer, sizeof(buffer)/sizeof(buffer[0]), upper, 52 if(U_FAILURE(errorCode) || buffer[length]!=0) { 53 u_fprintf(out, "error in u_strToLower(Turkish locale)=%ld error=%s\n", length, 63 length = u_strToUpper(buffer, sizeof(buffer)/sizeof(buffer[0]), upper, 65 if(U_FAILURE(errorCode) || buffer[length]!=0) { 66 u_fprintf(out, "error in u_strToLower(English locale)=%ld error=%s\n", length, 74 length = u_strFoldCase(buffer, sizeof(buffer)/sizeof(buffer[0]), unfold, 77 if(U_FAILURE(errorCode) || buffer[length]!=0) { 78 u_fprintf(out, "error in u_strFoldCase()=%ld error=%s\n", length, [all...] |
/external/kernel-headers/original/asm-arm/ |
scatterlist.h | 11 unsigned int length; /* length */ member in struct:scatterlist 22 #define sg_dma_len(sg) ((sg)->length)
|
/external/kernel-headers/original/asm-mips/ |
scatterlist.h | 13 unsigned int length; member in struct:scatterlist 24 #define sg_dma_len(sg) ((sg)->length)
|
/external/libppp/src/ |
async.h | 33 int length; member in struct:async
|
/external/openssl/crypto/x509v3/ |
v3_skey.c | 76 return hex_to_string(oct->data, oct->length); 83 long length; local 90 if(!(oct->data = string_to_hex(str, &length))) { 95 oct->length = length; 132 if (!EVP_Digest(pk->data, pk->length, pkey_dig, &diglen, EVP_sha1(), NULL))
|
/external/skia/src/core/ |
SkFontDescriptor.cpp | 28 const uint32_t length = stream->readPackedUInt(); local 29 if (length > 0) { 30 string->resize(length); 31 stream->read(string->writable_str(), length);
|
/external/skia/tests/ |
PathMeasureTest.cpp | 66 the same length as the prev segment, due to the follow (bad) pattern 91 SkScalar length = meas.getLength(); local 92 SkASSERT(length == SK_Scalar1*4); 98 length = meas.getLength(); 99 REPORTER_ASSERT(reporter, length == SK_Scalar1*5); 104 length = meas.getLength(); 105 // SkDebugf("circle arc-length = %g\n", length); 115 length = meas.getLength(); 116 REPORTER_ASSERT(reporter, length == SK_Scalar1 * 4) [all...] |
/external/tcpdump/ |
print-cip.c | 55 cip_print(int length) 58 * There is no MAC-layer header, so just print the length. 60 printf("%d: ", length); 66 * 'h->len' is the length of the packet off the wire, and 'h->caplen' 73 u_int length = h->len; local 82 cip_print(length); 88 if (llc_print(p, length, caplen, NULL, NULL, 92 cip_print(length); 104 ip_print(gndo, p, length);
|
print-eap.c | 45 unsigned char length[2]; member in struct:eap_packet_t 55 u_int length _U_) 62 ND_PRINT((ndo, "EAP code=%u id=%u length=%u ", 63 eap->code, eap->id, (eap->length[0]<<8) + eap->length[1]));
|
print-null.c | 68 null_hdr_print(u_int family, u_int length) 78 (void)printf(", length %u: ", length); 84 * 'h->len' is the length of the packet off the wire, and 'h->caplen' 90 u_int length = h->len; local 113 null_hdr_print(family, length); 115 length -= NULL_HDRLEN; 122 ip_print(gndo, p, length); 129 ip6_print(p, length); 134 isoclns_print(p, length, caplen) [all...] |
print-sll.c | 54 sll_print(register const struct sll_header *sllp, u_int length) 104 (void)printf(", length %u: ", length); 111 * 'h->len' is the length of the packet off the wire, and 'h->caplen' 118 u_int length = h->len; local 136 sll_print(sllp, length); 141 length -= SLL_HDR_LEN; 161 ipx_print(p, length); 169 if (llc_print(p, length, caplen, NULL, NULL, 181 sll_print(sllp, length + SLL_HDR_LEN) [all...] |
/external/v8/test/cctest/ |
test-fixed-dtoa.cc | 45 int length; local 48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point)); 52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point)); 56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point)); 60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point)); 64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point)); 68 CHECK(FastFixedDtoa(1e21, 5, buffer, &length, &point)); 73 CHECK(FastFixedDtoa(999999999999999868928.00, 2, buffer, &length, &point)); 78 &length, &point)); 82 CHECK(FastFixedDtoa(1.5, 5, buffer, &length, &point)) 496 int length; local [all...] |
/external/v8/test/mjsunit/ |
array-indexing.js | 30 // Sparse arrays with length 42000. 43 var dense_object = { 0: 42, 1: 37, length: 2 }; 44 var sparse_object = { 0: 42, 100000: 37, length: 200000 }; 45 var funky_object = { 10:42, 100000: 42, 100001: 37, length: 50000 }; 46 var infinite_object = { 10: 42, 100000: 37, length: Infinity }; 55 assertEquals(-1, array.indexOf(3, array.length)); 126 assertEquals(9, array.lastIndexOf(1, array.length));
|
/external/valgrind/main/coregrind/m_demangle/ |
dyn-string.h | 33 int length; /* The actual length of the string. */ member in struct:dyn_string 37 /* The length STR, in bytes, not including the terminating NUL. */ 39 ((STR)->length)
|
/external/webkit/LayoutTests/storage/ |
execute-sql-args.js | 5 throwOnGetLengthObject.__defineGetter__("length", function () { throw "Cannot get length of this object."; }); 7 var throwOnGetZeroObject = { length: 1 }; 20 '"", { length: 0 }', 21 '"", { length: 1, 0: "arg0" }',
|
/external/webkit/Source/JavaScriptCore/API/ |
OpaqueJSString.h | 43 static PassRefPtr<OpaqueJSString> create(const UChar* characters, unsigned length) 45 return adoptRef(new OpaqueJSString(characters, length)); 51 unsigned length() { return this ? m_length : 0; } function in struct:OpaqueJSString 65 OpaqueJSString(const UChar* characters, unsigned length) 66 : m_length(length) 68 m_characters = new UChar[length]; 69 memcpy(m_characters, characters, length * sizeof(UChar));
|