HomeSort by relevance Sort by last modified time
    Searched refs:enumerators (Results 1 - 25 of 30) sorted by null

1 2

  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
printing.py 224 # with a list of enumerators to print a particular Value.
226 def __init__(self, enumerators, val):
227 self.enumerators = enumerators
234 for (e_name, e_value) in self.enumerators:
246 A flag-style enumeration is one where the enumerators are or'd
261 self.enumerators = []
263 self.enumerators.append((field.name, field.enumval))
264 # Sorting the enumerators by value usually does the right
266 self.enumerators.sort(key = lambda x: x[1]
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
printing.py 224 # with a list of enumerators to print a particular Value.
226 def __init__(self, enumerators, val):
227 self.enumerators = enumerators
234 for (e_name, e_value) in self.enumerators:
246 A flag-style enumeration is one where the enumerators are or'd
261 self.enumerators = []
263 self.enumerators.append((field.name, field.enumval))
264 # Sorting the enumerators by value usually does the right
266 self.enumerators.sort(key = lambda x: x[1]
    [all...]
  /external/clang/lib/AST/
TemplateBase.cpp 44 for (const EnumConstantDecl* ECD : ET->getDecl()->enumerators()) {
  /external/clang/utils/ABITest/
TypeGen.py 61 def __init__(self, index, enumerators):
63 self.enumerators = enumerators
69 for i, init in enumerate(self.enumerators):
195 # Type enumerators
262 # Figure out the number of enumerators in this type
272 # Find the requested combination of enumerators and build a
275 for enumerators in combinations(self.values, numEnumerators):
277 return EnumType(n, enumerators)
ABITestGen.py 216 for i in range(0, len(t.enumerators)):
  /system/tools/hidl/
EnumType.cpp 303 auto enumerators = typeChain();
304 std::reverse(enumerators.begin(), enumerators.end());
305 for (const auto* type : enumerators) {
  /external/clang/lib/Index/
USRGeneration.cpp 490 auto enum_range = ED->enumerators();
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
  /external/clang/include/clang/AST/
Decl.h 319 // The enumerators of an unscoped enumeration defined in
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 805 for (auto Enumerator : EnumDcl->enumerators()) {
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 791 // For an unscoped enum include the enumerators in the hash since they
794 for (const auto *EI : EnumD->enumerators()) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Decl.h 319 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Decl.h 319 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
Decl.h 309 // The enumerators of an unscoped enumeration defined in
    [all...]

Completed in 923 milliseconds

1 2