HomeSort by relevance Sort by last modified time
    Searched refs:enum (Results 26 - 50 of 232) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
MessageSink.js 16 * @enum {string}
23 * @enum {string}
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
swig.mli 3 type enum = [ `Int of int ] type
26 type c_obj = enum c_obj_t
  /system/media/camera/docs/
CameraMetadataKeys.mako 46 % if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')):
47 % for value in entry.enum.values:
metadata_helpers_test.py 72 def compare_values_against_list(expected_list, enum):
75 enum_calculate_value_string(list(enum.values)[idx]))
77 plain_enum = Enum(parent=None, values=['ON', 'OFF'])
83 labeled_enum = Enum(parent=None, values=['A', 'B', 'C'], ids={
93 mixed_enum = Enum(parent=None,
camera_metadata_tag_info.mako 68 const char *msg = "error: not an enum";
75 % if entry.enum:
77 % for val in entry.enum.values:
84 msg = "error: enum value out of range";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 37 class Enum:
40 def __init__(self, enum):
41 self.enum = "%-4.4s" % str(enum)
44 return "Enum(%r)" % (self.enum,)
47 return string.strip(self.enum)
50 return pack(self.enum, typeEnumeration)
53 return isinstance(x, Enum)
55 def mkenum(enum)
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/common/js/
progress_center_common.js 9 * @enum {string}
26 * @enum {string}
38 * @enum {string}
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
nav_math_description.js 43 // TODO (sorge) Collate and document styles in an enum structure.
platform_util.js 16 * @enum
  /external/chromium_org/chrome/test/chromedriver/js/
dispatch_context_menu_event.js 6 * Enum for modifier keys, same as DevTools protocol.
7 * @enum {number}
  /external/chromium_org/remoting/webapp/
error.js 11 * @enum {string} All error messages from messages.json
host_session.js 29 /** @enum {number} */
44 * @return {remoting.HostSession.State} The HostSession.State enum value
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
wire_format.py 46 # These values must match WireType enum in google/protobuf/wire_format.h.
179 def EnumByteSize(field_number, enum):
180 return UInt32ByteSize(field_number, enum)
  /external/iproute2/
configure 81 void exit_error(enum exittype status, const char *msg, ...)
121 void exit_error(enum exittype status, const char *msg, ...)
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
Android.mk 43 test_name := utilities/meta/meta.unary/meta.unary.cat/enum
44 test_src := enum.pass.cpp
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
Android.mk 43 test_name := utilities/meta/meta.unary/meta.unary.comp/enum
44 test_src := enum.pass.cpp
  /external/protobuf/python/google/protobuf/internal/
wire_format.py 46 # These values must match WireType enum in google/protobuf/wire_format.h.
179 def EnumByteSize(field_number, enum):
180 return UInt32ByteSize(field_number, enum)
  /external/chromium_org/chrome/browser/resources/hotword_helper/
optin_client.js 22 * @enum {string}
32 * @enum {string}
  /external/chromium_org/ui/keyboard/resources/
constants.js 19 * @type {enum}
30 * @type {enum}
40 * @type {Enum}
  /external/chromium_org/content/public/browser/
devtools_protocol_constants_generator.py 98 if "enum" in parameter:
101 for enum in parameter["enum"]:
102 result[enum_name]["kEnum" + Capitalize(enum)] = enum
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 78 def __init__(self, module, enum, field):
79 NamedValue.__init__(self, module, enum.parent_kind, field.name)
80 self.enum_name = enum.name
188 class Enum(Kind):
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.py 125 IdlType.set_enums((enum.name, enum.values)
126 for enum in definitions.enumerations.values())
  /frameworks/native/opengl/tools/glgen2/
glgen.py 210 for enum in self.enums.iteritems():
211 print('GL_ENUM(%s,%s)' % (enum[0], enum[1]), file=outfile)
261 # so that if an extension enum was later standardized, we see the non-
  /external/nanopb-c/generator/
nanopb_generator.py 141 class Enum:
156 result = 'typedef enum _%s {\n' % self.names
231 self.pbtype = 'ENUM'
235 self.enc_size = 5 # protoc rejects enum values > 32 bits
636 for enum in fdesc.enum_type:
637 enum_options = get_nanopb_suboptions(enum, file_options, base_name + enum.name)
638 enums.append(Enum(base_name, enum, enum_options))
643 for enum in message.enum_type
    [all...]
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
serialjava.py 43 enum = comm.CommPortIdentifier.getPortIdentifiers()
45 while enum.hasMoreElements():
46 el = enum.nextElement()

Completed in 839 milliseconds

12 3 4 5 6 7 8 910