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

1 2

  /external/clang/lib/StaticAnalyzer/Core/
CheckerRegistry.cpp 129 size_t nameLength = i->FullName.size();
130 if (nameLength <= maxNameChars)
131 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;
  /frameworks/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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlProperty.java 89 int nameLength = name.length();
93 && nameLength > ATTR_LAYOUT_MARGIN.length()) {
109 if (parentTitleLength < nameLength) {
110 if (nameLength > parentTitleLength &&
  /external/webkit/Source/WebCore/svg/
SVGGlyphElement.h 58 , nameLength(0)
91 size_t nameLength;
  /frameworks/av/media/libmedia/
MediaScanner.cpp 183 int nameLength = strlen(name);
184 if (nameLength + 1 > pathRemaining) {
223 MediaScanResult result = doProcessDirectory(path, pathRemaining - nameLength - 1,
  /frameworks/base/core/jni/
android_backup_BackupHelperDispatcher.cpp 37 int nameLength; // not including the NULL terminator, which is not written to the file
92 ALOGD(" nameLength=%d", flattenedHeader.nameLength);
95 if (flattenedHeader.dataSize < 0 || flattenedHeader.nameLength < 0 ||
96 remainingHeader < flattenedHeader.nameLength) {
97 ALOGW("Malformed V1 header remainingHeader=%d dataSize=%d nameLength=%d", remainingHeader,
98 flattenedHeader.dataSize, flattenedHeader.nameLength);
102 buf = keyPrefix.lockBuffer(flattenedHeader.nameLength);
104 ALOGW("unable to allocate %d bytes", flattenedHeader.nameLength);
108 amt = read(fd, buf, flattenedHeader.nameLength);
    [all...]
  /frameworks/rs/driver/
rsdShaderCache.h 72 uint32_t nameLength;
78 nameLength = maxName;
79 if (nameLength > 0 ) {
80 name = new char[nameLength];
  /external/expat/lib/
xmltok_impl.c     [all...]
xmltok.h 143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
235 (((enc)->nameLength)(enc, ptr))
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Field.java 299 int nameLength = result.length();
301 for (int i = 1; i < NAME_LENGTH - nameLength; ++i) {//we start from i=1 because one space is already added
305 nameLength = result.length();
306 for (int i = 0; i < NAME_LENGTH + TYPE_LENGTH - nameLength; ++i) {
  /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);
292 nameLength = nameBytes.length;
293 if (nameLength > 0xffff) {
294 throw new IllegalArgumentException("Name too long: " + nameLength + " UTF-8 bytes");
334 writeShort(out, nameLength);
ZipInputStream.java 258 int nameLength = peekShort(LOCNAM - LOCVER);
259 if (nameLength == 0) {
264 if (nameLength > nameBuf.length) {
265 nameBuf = new byte[nameLength];
268 charBuf = new char[nameLength];
270 Streams.readFully(in, nameBuf, 0, nameLength);
271 currentEntry = createZipEntry(ModifiedUtf8.decode(nameBuf, charBuf, 0, nameLength));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java 81 final int nameLength = name.length();
82 for (int i = 0; i < nameLength; i = name.offsetByCodePoints(i, 1)) {
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc 661 UInt32 nameLength = kAudioDeviceNameLength;
665 &nameLength, name);
  /external/icu4c/tools/toolutil/
package.cpp 921 int32_t idx, nameLength, middleLength;
930 nameLength=(int32_t)strlen(name);
931 if(nameLength<(findPrefixLength+findSuffixLength)) {
940 middleLength=nameLength-findPrefixLength-findSuffixLength;
941 if(findSuffixLength>0 && 0!=memcmp(findSuffix, name+(nameLength-findSuffixLength), findSuffixLength)) {
    [all...]
  /frameworks/av/media/mtp/
MtpServer.cpp     [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ApiLookup.java 762 int nameLength = name.length();
763 compare = compare(mData, offset, (byte) '(', name, nameLength);
765 offset += nameLength;
781 int nameLength = name.length()
    [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...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverManager.java     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp     [all...]
  /external/icu4c/test/intltest/
rbbitst.cpp     [all...]

Completed in 1019 milliseconds

1 2