HomeSort by relevance Sort by last modified time
    Searched defs:nameLength (Results 1 - 24 of 24) sorted by null

  /external/clang/lib/StaticAnalyzer/Core/
CheckerRegistry.cpp 128 size_t nameLength = i->FullName.size();
129 if (nameLength <= maxNameChars)
130 optionFieldWidth = std::max(optionFieldWidth, nameLength);
  /external/oprofile/libpopt/
poptconfig.c 17 size_t nameLength;
25 nameLength = strlen(con->appName);
30 if (strncmp(line, con->appName, nameLength)) return;
32 line += nameLength;
  /system/media/wilhelm/tests/sandbox/
object.c 95 SLint16 nameLength = -1;
96 result = (*engineEngine)->QuerySupportedExtension(engineEngine, i, NULL, &nameLength);
99 printf(" extension[%u] length = %u\n", i, nameLength);
102 assert(0 == nameLength);
105 nameLength = -1;
107 &nameLength);
114 nameLength = 0;
116 &nameLength);
123 nameLength = 1;
125 &nameLength);
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGGlyphElement.h 58 , nameLength(0)
91 size_t nameLength;
  /frameworks/base/core/jni/
android_backup_BackupHelperDispatcher.cpp 37 int nameLength; // not including the NULL terminator, which is not written to the file
92 LOGD(" nameLength=%d", flattenedHeader.nameLength);
95 if (flattenedHeader.dataSize < 0 || flattenedHeader.nameLength < 0 ||
96 remainingHeader < flattenedHeader.nameLength) {
97 LOGW("Malformed V1 header remainingHeader=%d dataSize=%d nameLength=%d", remainingHeader,
98 flattenedHeader.dataSize, flattenedHeader.nameLength);
102 buf = keyPrefix.lockBuffer(flattenedHeader.nameLength);
104 LOGW("unable to allocate %d bytes", flattenedHeader.nameLength);
108 amt = read(fd, buf, flattenedHeader.nameLength);
    [all...]
  /frameworks/base/libs/rs/driver/
rsdShaderCache.h 72 uint32_t nameLength;
78 nameLength = maxName;
79 if (nameLength > 0 ) {
80 name = new char[nameLength];
  /frameworks/base/media/libmedia/
MediaScanner.cpp 183 int nameLength = strlen(name);
184 if (nameLength + 1 > pathRemaining) {
223 MediaScanResult result = doProcessDirectory(path, pathRemaining - nameLength - 1,
  /external/expat/lib/
xmltok_impl.c     [all...]
xmltok.h 143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
235 (((enc)->nameLength)(enc, ptr))
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 51 int nameLength = -1;
318 nameLength = ze.nameLength;
372 nameLength = it.readShort();
380 byte[] nameBytes = new byte[nameLength];
ZipOutputStream.java 93 private int offset = 0, curOffset = 0, nameLength;
183 curOffset += writeShort(cDir, nameLength);
288 nameLength = nameBytes.length;
289 if (nameLength > 0xffff) {
290 throw new IllegalArgumentException("Name too long: " + nameLength + " UTF-8 bytes");
330 writeShort(out, nameLength);
ZipInputStream.java 257 int nameLength = Memory.peekShort(hdrBuf, LOCNAM - LOCVER, ByteOrder.LITTLE_ENDIAN) & 0xffff;
258 if (nameLength == 0) {
263 if (nameLength > nameBuf.length) {
264 nameBuf = new byte[nameLength];
267 charBuf = new char[nameLength];
269 Streams.readFully(in, nameBuf, 0, nameLength);
270 currentEntry = createZipEntry(ModifiedUtf8.decode(nameBuf, charBuf, 0, nameLength));
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc 661 UInt32 nameLength = kAudioDeviceNameLength;
665 &nameLength, name);
  /external/icu4c/tools/toolutil/
package.cpp 920 int32_t idx, nameLength, middleLength;
929 nameLength=(int32_t)strlen(name);
930 if(nameLength<(findPrefixLength+findSuffixLength)) {
939 middleLength=nameLength-findPrefixLength-findSuffixLength;
940 if(findSuffixLength>0 && 0!=memcmp(findSuffix, name+(nameLength-findSuffixLength), findSuffixLength)) {
    [all...]
  /frameworks/base/media/mtp/
MtpServer.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 283 unsigned short nameLength = name->nameRecords[j].length;
288 familyNameLength = nameLength;
292 subfamilyNameLength = nameLength;
296 fullNameLength = nameLength;
300 versionStringLength = nameLength;
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 683 GLsizei nameLength = 0;
686 ::glGetActiveAttrib(program, index, maxAttributeSize, &nameLength, &size, &type, name);
687 if (!nameLength)
689 info.name = String(name, nameLength);
705 GLsizei nameLength = 0;
708 ::glGetActiveUniform(program, index, maxUniformSize, &nameLength, &size, &type, name);
709 if (!nameLength)
711 info.name = String(name, nameLength);
    [all...]
  /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...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp     [all...]
  /external/icu4c/test/intltest/
rbbitst.cpp     [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xproto.h 504 CARD16 nameLength B16; /* # of characters in name */
679 CARD8 nameLength; /* 0 indicates end-of-reply-sequence */
681 CARD32 length B32; /* definitely > 0, even if "nameLength" is 0 */
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 3278 milliseconds