/libcore/luni/src/main/java/java/util/zip/ |
ZipInputStream.java | 266 int nameLength = peekShort(LOCNAM - LOCVER); 267 if (nameLength == 0) { 272 String name = readString(nameLength);
|
ZipEntry.java | 416 int nameLength = it.readShort() & 0xffff; 424 byte[] nameBytes = new byte[nameLength];
|
/external/expat/lib/ |
xmltok.h | 143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *); 235 (((enc)->nameLength)(enc, ptr))
|
/external/icu/icu4c/source/common/ |
unames.cpp | 237 const uint8_t *name, uint16_t nameLength, UCharNameChoice nameChoice, 252 while(nameLength>0) { 253 --nameLength; 265 nameLength=0; 270 while(nameLength>0) { 271 --nameLength; 287 --nameLength; 330 const uint8_t *name, uint16_t nameLength, UCharNameChoice nameChoice, 346 while(nameLength>0) { 347 --nameLength; [all...] |
/external/icu/icu4c/source/test/cintltst/ |
udatpg_test.c | 212 int32_t nameLength; 213 const UChar * namePtr = udatpg_getAppendItemName(dtpg, appItemNameDataPtr->field, &nameLength); 214 if ( namePtr == NULL || u_strncmp(appItemNameDataPtr->name, namePtr, nameLength) != 0 ) {
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
sql.h | 508 SQLRETURN SQL_API SQLDescribeCol(SQLHSTMT StatementHandle,SQLUSMALLINT ColumnNumber,SQLCHAR *ColumnName,SQLSMALLINT BufferLength,SQLSMALLINT *NameLength,SQLSMALLINT *DataType,SQLULEN *ColumnSize,SQLSMALLINT *DecimalDigits,SQLSMALLINT *Nullable); 530 SQLRETURN SQL_API SQLGetCursorName(SQLHSTMT StatementHandle,SQLCHAR *CursorName,SQLSMALLINT BufferLength,SQLSMALLINT *NameLength); 555 SQLRETURN SQL_API SQLSetCursorName(SQLHSTMT StatementHandle,SQLCHAR *CursorName,SQLSMALLINT NameLength);
|
winperf.h | 168 DWORD NameLength;
|
dwrite.h | [all...] |
/external/libpcap/ |
inet.c | 825 ULONG NameLength = 8192; 828 if (PacketGetAdapterNames(AdaptersName,&NameLength) ) 836 ULONG NameLength = 8192; 849 if ( !PacketGetAdapterNames((PTSTR)TAdaptersName,&NameLength) )
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
mountmgr.h | 117 USHORT NameLength;
|
/frameworks/rs/scriptc/ |
rs_object_info.rsh | 306 * nameLength: Length of the provided name array. 312 rsElementGetSubElementName(rs_element e, uint32_t index, char* name, uint32_t nameLength);
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
HandoverDataParser.java | 350 int nameLength = payload.get(); 351 byte[] nameBytes = new byte[nameLength];
|
/prebuilts/sdk/renderscript/include/ |
rs_object_info.rsh | 306 * nameLength: Length of the provided name array. 312 rsElementGetSubElementName(rs_element e, uint32_t index, char* name, uint32_t nameLength);
|
/external/skia/src/sfnt/ |
SkOTTable_name.cpp | 462 const uint16_t nameLength = SkEndian_SwapBE16(nameRecord->length); 478 SkStringFromUTF16BE((const uint16_t*)nameString, nameLength, record.name); 489 SkStringFromMacRoman((const uint8_t*)nameString, nameLength, record.name);
|
/external/icu/icu4c/source/tools/toolutil/ |
package.cpp | 975 int32_t idx, nameLength, middleLength; 984 nameLength=(int32_t)strlen(name); 985 if(nameLength<(findPrefixLength+findSuffixLength)) { 994 middleLength=nameLength-findPrefixLength-findSuffixLength; 995 if(findSuffixLength>0 && 0!=memcmp(findSuffix, name+(nameLength-findSuffixLength), findSuffixLength)) { [all...] |
/external/libvncserver/libvncclient/ |
rfbproto.c | [all...] |
/external/sfntly/cpp/src/sfntly/table/core/ |
name_table.cc | 472 int32_t length = NameLength(index); 560 int32_t NameTable::NameLength(int32_t index) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
DictionaryInfoUtils.java | 143 final int nameLength = name.length(); 144 for (int i = 0; i < nameLength; i = name.offsetByCodePoints(i, 1)) {
|
/external/valgrind/coregrind/m_demangle/ |
cplus-dem.c | 3398 int namelength; local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
ULocaleTest.java | [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xproto.h | 500 CARD16 nameLength B16; /* # of characters in name */ 675 CARD8 nameLength; /* 0 indicates end-of-reply-sequence */ 677 CARD32 length B32; /* definitely > 0, even if "nameLength" is 0 */ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xproto.h | 500 CARD16 nameLength B16; /* # of characters in name */ 675 CARD8 nameLength; /* 0 indicates end-of-reply-sequence */ 677 CARD32 length B32; /* definitely > 0, even if "nameLength" is 0 */ [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
uregex.h | 621 * @param nameLength The length of the name, or -1 if the name is a 630 int32_t nameLength, 645 * @param nameLength The length of the name, or -1 if the name is 654 int32_t nameLength, [all...] |
/frameworks/rs/api/ |
rs_object_info.spec | 253 arg: uint32_t nameLength, "Length of the provided name array."
|
/libcore/luni/src/test/java/tests/java/sql/ |
DatabaseMetaDataTest.java | 749 int nameLength = meta.getMaxCursorNameLength(); 750 if (nameLength > 0) { 752 statement.setCursorName(new String(new byte[nameLength + 1])); 757 } else if (nameLength < 0) { [all...] |