HomeSort by relevance Sort by last modified time
    Searched full:short_name (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/mesa3d/src/gallium/auxiliary/util/
u_format_table.py 99 print 'util_format_%s_description = {' % (format.short_name(),)
102 print " \"%s\"," % (format.short_name(),)
136 print " &util_format_%s_unpack_rgba_8unorm," % format.short_name()
137 print " &util_format_%s_pack_rgba_8unorm," % format.short_name()
139 print " &util_format_%s_fetch_rgba_8unorm," % format.short_name()
142 print " &util_format_%s_unpack_rgba_float," % format.short_name()
143 print " &util_format_%s_pack_rgba_float," % format.short_name()
144 print " &util_format_%s_fetch_rgba_float," % format.short_name()
153 print " &util_format_%s_unpack_z_32unorm," % format.short_name()
154 print " &util_format_%s_pack_z_32unorm," % format.short_name()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
arg.h 53 char short_name; member in struct:isl_arg
135 .short_name = s, \
144 .short_name = s, \
153 .short_name = s, \
162 .short_name = s, \
179 .short_name = s, \
191 .short_name = s, \
200 .short_name = s, \
209 .short_name = s, \
218 .short_name = s,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
arg.h 53 char short_name; member in struct:isl_arg
135 .short_name = s, \
144 .short_name = s, \
153 .short_name = s, \
162 .short_name = s, \
179 .short_name = s, \
191 .short_name = s, \
200 .short_name = s, \
209 .short_name = s, \
218 .short_name = s,
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/
param.py 73 short_name=None, long_name=None, doc='',
79 self.short_name = short_name
115 if self.short_name:
116 sn = '-%s' % self.short_name
122 if self.short_name:
123 sn = '-%s' % self.short_name
129 if self.short_name:
130 sn = '%s' % self.short_name
  /external/e2fsprogs/lib/e2p/
pf.c 25 const char *short_name; member in struct:flags_name
72 fputs(fp->short_name, f);
  /external/v8/build/util/
branding.gni 18 "short_name = \"@PRODUCT_SHORTNAME@\" " +
34 chrome_product_short_name = _result.short_name
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
util.py 94 short_name = fq_name
97 (module_name, short_name) = (fq_name[:fq_name.rfind(".")],
101 result = __import__(module_name, None, None, [short_name])
102 return result.__dict__[short_name]
113 short_name, module_name))
119 if hasattr(module, short_name):
120 return getattr(module, short_name)
126 short_name, module_name))
  /external/mesa3d/src/gallium/tests/unit/
u_format_compatible_test.c 60 debug_printf("%s -> %s\n", src_format_desc->short_name, dst_format_desc->short_name);
  /external/libvpx/libvpx/
args.c 45 if (def->short_name
46 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
47 && !strcmp(arg.argv[0] + 1, def->short_name)) {
109 if (def->short_name && def->long_name) {
113 def->short_name, short_val, comma,
115 } else if (def->short_name)
117 def->short_name, short_val);
args.h 35 const char *short_name; member in struct:arg_def
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
args.c 47 if (def->short_name
48 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
49 && !strcmp(arg.argv[0] + 1, def->short_name)) {
111 if (def->short_name && def->long_name) {
115 def->short_name, short_val, comma,
117 } else if (def->short_name)
119 def->short_name, short_val);
args.h 35 const char *short_name; member in struct:arg_def
  /external/boringssl/src/crypto/digest/
digests.c 260 const char *short_name; member in struct:nid_to_digest
312 const char *short_name = nid_to_digest_mapping[i].short_name; local
314 if ((short_name && strcmp(short_name, name) == 0) ||
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
util.py 207 short_name = fq_name
210 (module_name, short_name) = (fq_name[:fq_name.rfind(".")],
214 result = __import__(module_name, None, None, [short_name])
215 return result.__dict__[short_name]
226 short_name, module_name))
232 if hasattr(module, short_name):
233 return getattr(module, short_name)
239 short_name, module_name))
  /external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/
util.py 154 short_name = LONG_NAMES.get(name, name)
155 if short_name in out:
160 'found. It is unclear which one to use.' % (name, short_name))
161 out[short_name] = value
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/common/
simplefileflags.py 35 short_name='r') variable
41 short_name='e') variable
46 short_name='x') variable
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.cc 76 vars["short_name"] = descriptor_->name();
118 "const $classname$ $prefix$$short_name$_MIN = $prefix$$min_name$;\n"
119 "const $classname$ $prefix$$short_name$_MAX = $prefix$$max_name$;\n");
123 "const int $prefix$$short_name$_ARRAYSIZE = "
124 "$prefix$$short_name$_MAX + 1;\n\n");
  /external/v8/tools/gyp/pylib/gyp/
MSVSVersion.py 19 def __init__(self, short_name, description,
22 self.short_name = short_name
33 return self.short_name
89 if self.short_name >= '2013' and self.short_name[-1] != 'e' and (
104 if self.short_name[-1] != 'e' and (
  /external/c-ares/
acountry.c 264 char short_name[3]; /* A2 short country code */ member in struct:search_list
617 if ((country->short_name[0] != ccode_A2[0]) ||
618 (country->short_name[1] != ccode_A2[1]) ||
619 (country->short_name[2] != ccode_A2[2]))
621 country->short_name, ccode_A2);
624 country->long_name, country->short_name, cnumber);
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py2/
commands.py 50 def add_option(command, long_name, help_text, short_name=None, default=None,
61 opt = (long_name, short_name, help_text)
75 i_inherit, long_name, help_text, short_name, default
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py3/
commands.py 49 def add_option(command, long_name, help_text, short_name=None, default=None,
60 opt = (long_name, short_name, help_text)
74 i_inherit, long_name, help_text, short_name, default
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/_setup/py2/
commands.py 50 def add_option(command, long_name, help_text, short_name=None, default=None,
61 opt = (long_name, short_name, help_text)
75 i_inherit, long_name, help_text, short_name, default
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/_setup/py3/
commands.py 49 def add_option(command, long_name, help_text, short_name=None, default=None,
60 opt = (long_name, short_name, help_text)
74 i_inherit, long_name, help_text, short_name, default
  /external/pdfium/core/src/fpdfdoc/
doc_form.cpp 41 CFX_WideString short_name; member in struct:CFieldTree::_Node
83 const CFX_WideString& short_name,
86 _Node* _Lookup(_Node* pParent, const CFX_WideString& short_name);
97 const CFX_WideString& short_name,
104 pNode->short_name = short_name;
121 const CFX_WideString& short_name) {
127 if (pNode->short_name.GetLength() == short_name.GetLength() &&
128 FXSYS_memcmp(pNode->short_name.c_str(), short_name.c_str()
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
TimeZoneNames.java 40 public static final int SHORT_NAME = 2;
122 return (style == TimeZone.LONG) ? row[LONG_NAME] : row[SHORT_NAME];

Completed in 865 milliseconds

1 2 3 4