HomeSort by relevance Sort by last modified time
    Searched refs:max_name_length (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/cython/src/Cython/Debugger/
libcython.py 377 def print_gdb_value(self, name, value, max_name_length=None, prefix=''):
383 if max_name_length is None:
386 print '%s%-*s = %s%s' % (prefix, max_name_length, name, typename,
    [all...]
libpython.py     [all...]
  /external/chromium_org/webkit/common/gpu/
webgraphicscontext3d_impl.cc 344 GLint max_name_length = -1; local
346 program, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &max_name_length);
347 if (max_name_length < 0)
349 scoped_ptr<GLchar[]> name(new GLchar[max_name_length]);
358 program, index, max_name_length, &length, &size, &type, name.get());
370 GLint max_name_length = -1; local
372 program, GL_ACTIVE_UNIFORM_MAX_LENGTH, &max_name_length);
373 if (max_name_length < 0)
375 scoped_ptr<GLchar[]> name(new GLchar[max_name_length]);
384 program, index, max_name_length, &length, &size, &type, name.get())
    [all...]
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 307 jlong max_name_length = 255; // __DARWIN_MAXNAMLEN local
309 jlong max_name_length = static_cast<jlong>(sb.f_namemax);
325 max_name_length);
    [all...]

Completed in 606 milliseconds