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

1 2 3 4

  /libcore/ojluni/src/main/java/sun/misc/
CompoundEnumeration.java 36 private Enumeration<E>[] enums; field in class:CompoundEnumeration
39 public CompoundEnumeration(Enumeration<E>[] enums) {
40 this.enums = enums;
44 while (index < enums.length) {
45 if (enums[index] != null && enums[index].hasMoreElements()) {
61 return enums[index].nextElement();
  /external/clang/test/Sema/
warn-overlap.c 75 // "Different types" includes different enums
80 void enums(enum Choices c) { function
88 // "Different types" includes different enums
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_reflection_class.cc 73 // write children: Enums
75 printer->Print("#region Enums\n");
222 // corresponding to fields, names corresponding to oneofs, nested enums, and nested types. Each array part
263 // Nested enums
265 std::vector<std::string> enums; local
267 enums.push_back(GetClassName(descriptor->enum_type(i)));
269 printer->Print("new[]{ typeof($enums$) }, ", "enums", JoinStrings(enums, "), typeof("));
  /toolchain/binutils/binutils-2.27/binutils/
sysinfo.y 251 enums ')'
377 enums: label
ieee.c 3859 struct ieee_defined_enum *enums; member in struct:ieee_handle
    [all...]
  /external/libvpx/libvpx/
args.h 39 const struct arg_enum_list *enums; member in struct:arg_def
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 47 enums = True variable
70 if enums:
  /frameworks/base/tools/streaming_proto/java/
main.cpp 129 // Enums
154 * If there are enums and generate_outer is false, invalid java code will be generated.
159 const vector<EnumDescriptorProto>& enums, const vector<DescriptorProto>& messages)
189 N = enums.size();
191 write_enum(text, enums[i], indented);
209 * Write one file per class. Put all of the enums into the "outer" class.
216 vector<EnumDescriptorProto> enums; local
219 enums.push_back(file_descriptor.enum_type(i));
226 true, enums, messages);
232 vector<EnumDescriptorProto> enums; local
248 vector<EnumDescriptorProto> enums; local
    [all...]
  /external/libxml2/
gentest.py 535 # Generate constructors and return type handling for all enums
538 enums = ctxt.xpathEval("/api/symbols/typedef[@type='enum']") variable
539 for enum in enums:
543 # Skip any enums which are not in our filtered lists
  /external/libxml2/python/
generator.py 7 enums = {} # { enumType: { enumConstant: enumValue } } variable
142 if type not in enums:
143 enums[type] = {}
144 enums[type][name] = value
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.cc 332 // Generate enums.
410 map<string, const EnumDescriptor*>& enums() { return enums_; } function in class:google::protobuf::compiler::cpp::FileGenerator::ForwardDeclarations
748 message_generators_[i]->FillEnumForwardDeclarations(&decls->enums());
751 enum_generators_[i]->FillForwardDeclaration(&decls->enums());
    [all...]
  /external/deqp/scripts/khr_util/
registry.py 46 class Enums(Located):
49 enums = None variable in class:Enums
183 self.enums = EnumIndex(eRegistry.findall('enums/enum'))
184 for eEnum in self.enums:
239 self.enums = set()
257 modify(self.enums, enumName)
305 return parseEnum(registry.enums[enumName, api])
350 # Missing enums are often from exotic extensions. Don't create dummy entries,
352 enums=NameIndex(enums[name] for name in eGroup.xpath('enum/@name'
    [all...]
  /external/doclava/src/com/google/doclava/
PackageInfo.java 91 enums(), exceptions() };
120 enums(), exceptions() };
218 ClassInfo.makeLinkListHDF(data, base + ".enums", enums());
251 public ClassInfo[] enums() { method in class:PackageInfo
254 Converter.convertClasses(mPackage.enums())));
  /external/mesa3d/src/intel/tools/
decoder.c 56 struct gen_enum *enums[256]; member in struct:gen_spec
118 if (strcmp(spec->enums[i]->name, name) == 0)
119 return spec->enums[i];
462 spec->enums[spec->nenums++] = e;
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 716 // Unique the enums, but maintain the original declaration ordering.
718 uniqueEnumsInOrder(const std::vector<std::string> &enums) {
720 std::set<std::string> unique_set(enums.begin(), enums.end());
721 for (const auto &i : enums) {
733 std::vector<std::string> values, enums, uniques; member in class:__anon17099::EnumArgument
738 enums(Arg.getValueAsListOfStrings("Enums")),
739 uniques(uniqueEnumsInOrder(enums))
821 for (size_t I = 0; I < enums.size(); ++I)
852 std::vector<std::string> values, enums, uniques; member in class:__anon17099::VariadicEnumArgument
    [all...]
  /external/flatbuffers/include/flatbuffers/
reflection_generated.h 780 const flatbuffers::Vector<flatbuffers::Offset<Enum>> *enums() const { function in struct:reflection::FLATBUFFERS_FINAL_CLASS
798 verifier.Verify(enums()) &&
799 verifier.VerifyVectorOfTables(enums()) &&
816 void add_enums(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<Enum>>> enums) {
817 fbb_.AddOffset(Schema::VT_ENUMS, enums);
845 flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<Enum>>> enums = 0,
853 builder_.add_enums(enums);
861 const std::vector<flatbuffers::Offset<Enum>> *enums = nullptr,
868 enums ? _fbb.CreateVector<flatbuffers::Offset<Enum>>(*enums) : 0
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
descriptor_containers.cc 1058 namespace enums { namespace in namespace:google::protobuf::python::message_descriptor
1466 namespace enums { namespace in namespace:google::protobuf::python::file_descriptor
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/jaxb-inheritance-plugin/1/
jaxb-inheritance-plugin-1.jar 
  /external/guice/lib/build/
spring-core.jar 
  /external/libdrm/
xf86drmMode.h 241 struct drm_mode_property_enum *enums; member in struct:_drmModeProperty
  /external/mesa3d/src/mesa/drivers/common/
meta.c 86 #include "main/enums.h"
1587 GLenum enums[MAX_DRAW_BUFFERS]; local
1639 GLenum enums[MAX_DRAW_BUFFERS]; local
    [all...]
  /external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
NanoTest.java 2850 int[] enums = {Extensions.SECOND_VALUE, Extensions.FIRST_VALUE}; local
3100 int[] enums = {Extensions.SECOND_VALUE, Extensions.FIRST_VALUE}; local
    [all...]
  /external/libphonenumber/demo/war/WEB-INF/lib/
commons-lang-2.6.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
commons-lang-2.6.jar 
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 

Completed in 599 milliseconds

1 2 3 4