HomeSort by relevance Sort by last modified time
    Searched defs:Classes (Results 1 - 20 of 20) sorted by null

  /build/tools/droiddoc/templates-ds/
class.cs 39 <a href="#nestedclasses">Nested Classes</a>
251 <?cs def:write_inners_summary(classes) ?>
290 <table id="nestedclasses" class="jd-sumtable"><tr><th colspan="12">Nested Classes</th></tr>
  /build/tools/droiddoc/templates-sac/
class.cs 39 <a href="#nestedclasses">Nested Classes</a>
251 <?cs def:write_inners_summary(classes) ?>
290 <table id="nestedclasses" class="jd-sumtable"><tr><th colspan="12">Nested Classes</th></tr>
  /build/tools/droiddoc/templates-sdk/
class.cs 39 <a href="#nestedclasses">Nested Classes</a>
251 <?cs def:write_inners_summary(classes) ?>
290 <table id="nestedclasses" class="jd-sumtable"><tr><th colspan="12">Nested Classes</th></tr>
  /external/doclava/res/assets/templates/
class.cs 33 <a href="#nestedclasses">Nested Classes</a>
241 <?cs def:write_inners_summary(classes) ?>
280 <table id="nestedclasses" class="jd-sumtable"><tr><th colspan="12">Nested Classes</th></tr>
  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.h 46 /// Classes - For live regs that are only used in one register class in a
49 /// multiple register classes, the corresponding value is -1 casted to a
51 std::vector<const TargetRegisterClass*> Classes;
  /external/llvm/utils/TableGen/
CTagsEmitter.cpp 73 const std::map<std::string, Record *> &Classes = Records.getClasses();
77 Tags.reserve(Classes.size() + Defs.size());
78 for (std::map<std::string, Record *>::const_iterator I = Classes.begin(),
79 E = Classes.end();
AsmMatcherEmitter.cpp 58 // For register classes, we can generate these subgroups automatically. For
59 // arbitrary operands, we expect the user to define the classes and their
64 // tuple of classes, any single instruction must match either all or none
67 // In addition, the subset relation amongst classes induces a partial order
70 // 2. The input can now be treated as a tuple of classes (static tokens are
146 /// The (first) register class, subsequent register classes are
150 /// The (first) user defined class, subsequent user defined classes are
159 /// SuperClasses - The super classes of this class. Note that for simplicities
187 /// For register classes, the records for all the registers in this class.
190 /// For custom match classes, he diagnostic kind for when the predicate fails
    [all...]
  /art/test/003-omnibus-opcodes/src/
Classes.java 23 public class Classes {
31 System.out.println("Classes.checkCast");
33 Classes classes; local
36 classes = (Classes) thisRef;
37 Main.assertTrue(thisRef instanceof Classes);
38 classes = (Classes) moreRef;
39 Main.assertTrue(moreRef instanceof Classes);
211 Classes classes = new Classes(); local
    [all...]
Main.java 47 Classes.run();
  /dalvik/tests/003-omnibus-opcodes/src/
Classes.java 9 public class Classes {
17 System.out.println("Classes.checkCast");
19 Classes classes; local
22 classes = (Classes) thisRef;
23 assert(thisRef instanceof Classes);
24 classes = (Classes) moreRef;
25 assert(moreRef instanceof Classes);
197 Classes classes = new Classes(); local
    [all...]
Main.java 56 Classes.run();
  /external/chromium_org/v8/src/
types.h 193 Iterator<Map> Classes() {
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 94 /// to copy e.g. status flag register classes.
159 const MCRegisterClass *Classes; // Pointer to the regclass array
186 /// Don't use this class directly, use one of the specialized sub-classes
197 /// DiffList. The iterator will initially point to InitVal, sub-classes are
254 Classes = C;
390 regclass_iterator regclass_begin() const { return Classes; }
391 regclass_iterator regclass_end() const { return Classes+NumClasses; }
401 return Classes[i];
437 // aliasing registers. Use these iterator classes to traverse the lists.
  /external/clang/lib/Sema/
SemaExprMember.cpp 34 /// the prospective base classes.
103 // Collect all the declaring classes of instance members we find.
106 BaseSet Classes;
116 Classes.insert(R->getCanonicalDecl());
124 if (Classes.empty())
182 Classes.clear();
183 Classes.insert(R.getNamingClass()->getCanonicalDecl());
187 // declaring classes, it can't be an implicit member reference (in
189 if (isProvablyNotDerivedFrom(SemaRef, contextClass, Classes))
512 // member of the class or of one of its base classes
    [all...]
SemaLookup.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 12 // classes.
68 static llvm::StringMap<FoundationClass> Classes;
69 if (Classes.empty()) {
70 Classes["NSArray"] = FC_NSArray;
71 Classes["NSDictionary"] = FC_NSDictionary;
72 Classes["NSEnumerator"] = FC_NSEnumerator;
73 Classes["NSNull"] = FC_NSNull;
74 Classes["NSOrderedSet"] = FC_NSOrderedSet;
75 Classes["NSSet"] = FC_NSSet;
76 Classes["NSString"] = FC_NSString
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 10 // Implement the tablegen record classes.
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 121 /// any empty classes.
200 const ClassVectorTy& Classes = I->second;
201 if (std::find(Classes.begin(), Classes.end(), RD) == Classes.end())
216 ClassVectorTy& Classes = EmptyClassOffsets[Offset];
217 if (std::find(Classes.begin(), Classes.end(), RD) != Classes.end())
220 Classes.push_back(RD)
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 1 //===- llvm/TableGen/Record.h - Classes for Table Records -------*- C++ -*-===//
59 // Other classes.
66 // Type Classes
412 // Initializer Classes
420 /// hierarchy, and does not contain an entry for abstract classes, as per
527 /// resolveReferences - This method is used by classes that refer to other
816 /// resolveReferences - This method is used by classes that refer to other
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 297 /// All of the classes that have been generated for this compilation units.
298 std::vector<llvm::Constant*> Classes;
335 /// All classes that have aliases set for them.
392 /// This structure is used by both classes and categories, and contains a next
408 /// Generates a list of referenced protocols. Classes, categories, and
    [all...]

Completed in 441 milliseconds