Searched defs:length (Results 301 - 325 of 2288) sorted by relevance

<<11121314151617181920>>

/external/clang/test/Analysis/
H A Dmalloc.cpp47 size_t length; member in class:PR13751::OwningVector
52 storage[length++] = Item;
/external/clang/test/SemaTemplate/
H A Dexample-typelist.cpp23 // metaprogram that computes the length of a list
24 template<typename T> struct length;
27 struct length<cons<Head, Tail> > { struct
28 static const unsigned value = length<Tail>::value + 1;
32 struct length<nil> { struct
40 int length0[length<unsigned_inttypes>::value == 4? 1 : -1];
/external/elfutils/tests/
H A Dget-aranges.c115 Dwarf_Word length; local
118 if (dwarf_getarangeinfo (arange, &start, &length, &cu_offset)
126 printf (" [%2zu] start: %#llx, length: %llu, cu: %llu\n",
128 (unsigned long long int) length,
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIAttributeCollection.java49 * Returns the total length of this collection when converted to
52 long length (); method in interface:IAttributeCollection
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DDeclaredExceptionTable.java36 public long length () method in class:DeclaredExceptionTable
H A DExceptionHandlerTable.java37 public long length () method in class:ExceptionHandlerTable
H A DExceptionsAttribute_info.java18 * The Exceptions attribute is a variable-length attribute used in the attributes
54 super (attribute_name_index, exceptions.length ());
64 public long length () method in class:ExceptionsAttribute_info
66 return 6 + m_exceptions.length ();
H A DGenericAttribute_info.java36 super (attribute_name_index, (info != null ? info.length : 0));
42 public long length () method in class:GenericAttribute_info
44 return 6 + m_info.length;
69 _clone.m_info = (m_info.length == 0 ? EMPTY_BYTE_ARRAY : (byte []) m_info.clone ());
80 out.write (m_info, 0, m_info.length);
H A DSourceFileAttribute_info.java38 public long length () method in class:SourceFileAttribute_info
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java31 this (buf, buf.length);
34 public ByteArrayIStream (final byte [] buf, final int length) argument
36 if ($assert.ENABLED) $assert.ASSERT ((length >= 0) && (length <= buf.length),
37 "invalid length: " + length);
40 m_max = length;
53 public final int read (final byte [] buf, final int offset, int length) argument
56 $assert.ASSERT ((offset >= 0) && (offset <= buf.length)
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DPlatform.java52 Object[] src, int srcPos, Object[] dest, int destPos, int length) {
53 System.arraycopy(src, srcPos, dest, destPos, length);
57 * Returns a new array of the given length with the specified component type.
60 * @param length the length of the new array
64 static <T> T[] newArray(Class<T> type, int length) { argument
65 return (T[]) Array.newInstance(type, length);
69 * Returns a new array of the given length with the same type as a reference
73 * @param length the length o
51 unsafeArrayCopy( Object[] src, int srcPos, Object[] dest, int destPos, int length) argument
75 newArray(T[] reference, int length) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DPlatform.java34 Object[] src, int srcPos, Object[] dest, int destPos, int length) {
35 for (int i = 0; i < length; i++) {
40 static <T> T[] newArray(Class<T> type, int length) { argument
45 static <T> T[] newArray(T[] reference, int length) { argument
46 return GwtPlatform.newArray(reference, length);
33 unsafeArrayCopy( Object[] src, int srcPos, Object[] dest, int destPos, int length) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DOneSizeGenerator.java60 public E[] createArray(int length) { argument
61 return generator.createArray(length);
H A DReserializingTestCollectionGenerator.java75 public E[] createArray(int length) { argument
76 return delegate.createArray(length);
H A DTestEnumMapGenerator.java47 Entry<AnEnum, String>[] array = new Entry[entries.length];
62 public final Entry<AnEnum, String>[] createArray(int length) { argument
63 return new Entry[length];
67 public final AnEnum[] createKeyArray(int length) { argument
68 return new AnEnum[length];
72 public final String[] createValueArray(int length) { argument
73 return new String[length];
H A DTestMapEntrySetGenerator.java48 Map.Entry<K, V>[] entries = createArray(elements.length);
49 Platform.unsafeArrayCopy(elements, 0, entries, 0, elements.length);
58 public Map.Entry<K, V>[] createArray(int length) { argument
59 return new Map.Entry[length];
H A DTestStringMapGenerator.java50 Entry<String, String>[] array = new Entry[entries.length];
65 public final Entry<String, String>[] createArray(int length) { argument
66 return new Entry[length];
70 public final String[] createKeyArray(int length) { argument
71 return new String[length];
75 public final String[] createValueArray(int length) { argument
76 return new String[length];
/external/icu4c/common/
H A Dbytestrie.cpp79 BytesTrie::branchNext(const uint8_t *pos, int32_t length, int32_t inByte) { argument
81 if(length==0) {
82 length=*pos++;
84 ++length;
85 // The length of the branch is the number of bytes to select from.
87 while(length>kMaxBranchLinearSubNodeLength) {
89 length>>=1;
92 length=length-(length>>
156 int32_t length=node-kMinLinearMatch; // Actual match length minus 1. local
[all...]
H A Dbytestrieiterator.cpp63 int32_t length=remainingMatchLength_; // Actual remaining match length minus 1. local
64 if(length>=0) {
66 ++length;
67 if(maxLength_>0 && length>maxLength_) {
68 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal.
70 str_->append(reinterpret_cast<const char *>(pos_), length, errorCode); local
71 pos_+=length;
72 remainingMatchLength_-=length;
85 int32_t length local
112 int32_t length=stack_->elementAti(stackSize-1); local
158 int32_t length=node-kMinLinearMatch+1; local
164 str_->append(reinterpret_cast<const char *>(pos), length, errorCode); local
180 branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) argument
[all...]
H A Dcharstr.h65 int32_t length() const { return len; } function in class:CharString
77 return append(s.data(), s.length(), errorCode);
80 return append(s.data(), s.length(), errorCode);
H A Dpatternprops.cpp166 PatternProps::skipWhiteSpace(const UChar *s, int32_t length) { argument
167 while(length>0 && isWhiteSpace(*s)) {
169 --length;
175 PatternProps::trimWhiteSpace(const UChar *s, int32_t &length) { argument
176 if(length<=0 || (!isWhiteSpace(s[0]) && !isWhiteSpace(s[length-1]))) {
180 int32_t limit=length;
191 length=limit-start;
196 PatternProps::isIdentifier(const UChar *s, int32_t length) { argument
197 if(length<
210 skipIdentifier(const UChar *s, int32_t length) argument
[all...]
H A Ducharstrieiterator.cpp62 int32_t length=remainingMatchLength_; // Actual remaining match length minus 1. local
63 if(length>=0) {
65 ++length;
66 if(maxLength_>0 && length>maxLength_) {
67 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal.
69 str_.append(pos_, length);
70 pos_+=length;
71 remainingMatchLength_-=length;
84 int32_t length local
111 int32_t length=stack_->elementAti(stackSize-1); local
171 int32_t length=node-kMinLinearMatch+1; local
184 branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode) argument
[all...]
H A Ducnv_cb.c37 int32_t length,
47 source, length,
145 /* We can go ahead and overwrite the length here. We know just how
180 int32_t length; local
186 length = converter->subCharLen;
188 if(length == 0) {
192 if(length < 0) {
194 * Write/convert the substitution string. Its real length is -length.
202 ucnv_cbFromUWriteUChars(args, &source, source - length, offsetInde
35 ucnv_cbFromUWriteBytes(UConverterFromUnicodeArgs *args, const char* source, int32_t length, int32_t offsetIndex, UErrorCode * err) argument
220 (const char *)converter->subChars, length, local
226 ucnv_cbToUWriteUChars(UConverterToUnicodeArgs *args, const UChar* source, int32_t length, int32_t offsetIndex, UErrorCode * err) argument
[all...]
H A Ducnv_cnv.c48 const char *bytes, int32_t length,
58 while(length>0 && t<targetLimit) {
60 --length;
64 while(length>0 && t<targetLimit) {
67 --length;
74 if(length>0) {
77 cnv->charErrorBufferLength=(int8_t)length;
80 } while(--length>0);
88 const UChar *uchars, int32_t length,
98 while(length>
47 ucnv_fromUWriteBytes(UConverter *cnv, const char *bytes, int32_t length, char **target, const char *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
87 ucnv_toUWriteUChars(UConverter *cnv, const UChar *uchars, int32_t length, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
[all...]
/external/icu4c/i18n/
H A Dbocsu.cpp98 u_writeIdenticalLevelRun(const UChar *s, int32_t length, U_NAMESPACE_QUALIFIER ByteSink &sink) { argument
104 while(i<length) {
105 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity);
116 while(i<length && p<=lastSafe) {
128 U16_NEXT(s, i, length, c);

Completed in 1948 milliseconds

<<11121314151617181920>>