HomeSort by: relevance | last modified time | path
    Searched defs:Methods (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ASTSrcLocProcessor.cpp 168 std::vector<std::string> Methods;
176 // The clang AST has several methods on base classes which are overriden
178 // We record only the pseudo-virtual methods on the base classes to
192 Methods.push_back(Node->getName().str());
195 return Methods;
  /src/external/apache2/llvm/dist/clang/lib/APINotes/
APINotesYAMLCompiler.cpp 249 MethodsSeq Methods;
273 IO.mapOptional("Methods", C.Methods);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 696 ArrayRef<StringRef> Methods)
700 llvm::append_range(MethodNames, Methods);
755 MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods)
756 : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {}
758 ArrayRef<OneMethodRecord> getMethods() const { return Methods; }
760 std::vector<OneMethodRecord> Methods;
  /src/external/apache2/llvm/dist/clang/lib/AST/
VTableBuilder.cpp 181 const OverridingMethods &Methods = Overrider.second;
183 for (const auto &M : Methods) {
410 for (const auto *MD : RD->methods()) {
446 /// Offsets - Keeps track of methods and their offsets.
481 // relationship between the two methods.
498 // The methods must have the same name.
602 /// Methods for iterating over the components.
699 for (const auto *MD : RD->methods()) {
863 /// MethodInfoMap - The information for all methods in the vtable we're
880 /// Thunks - A map that contains all the thunks needed for all methods in th
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 46 // This castAs is safe: methods that don't return an object
297 // Warn about implementing unavailable methods, unless the unavailable
435 // Warn on deprecated methods under -Wdeprecated-implementations,
1755 for (auto *MD : ID->methods())
1760 for (const auto *Method : CAT->methods()) {
2225 // Previously we grouped all unimplemented methods under a single
2253 /// ivars of B and all of the methods of B.
2255 /// This substitutability is important when type checking methods, because
2485 /// In ARC, check whether the conventional meanings of the two methods
2529 // Mismatches for these methods don't change ownershi
    [all...]
SemaExprObjC.cpp 1217 // first, instance methods
1223 // second, class methods
1253 // Search the global pool for (potentially) direct methods matching the given
1330 // If we saw any direct methods, see if we see a direct member of the
1419 // C++ case, we don't require an instance method --- class methods
1535 // practice people never reassign self in class methods and there's some
1886 // Promote additional arguments to variadic methods.
1898 // Check for extra arguments to non-variadic methods.
1944 // Okay, look for "private" methods declared in any
2044 // If this reference is in an @implementation, check for 'private' methods
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 429 // or methods that return record types.
2161 // Direct overloaded methods gathered by name.
2162 MethodsMap Methods;
2239 Info.Methods[SP->getRawName()].push_back(SP);
2270 // Emit the complete type for unnamed structs. C++ classes with methods
2459 // Create methods
2460 for (auto &MethodItr : Info.Methods) {
2463 std::vector<OneMethodRecord> Methods;
2472 Methods.push_back(OneMethodRecord(
2478 assert(!Methods.empty() && "Empty methods map entry")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCMac.cpp 876 /// MethodDefinitions - map of methods which have been defined in
880 /// DirectMethodDefinitions - map of direct methods which have been defined in
1140 /// A convenience class for splitting the methods of a protocol into
1168 SmallVector<const ObjCMethodDecl *, 4> Methods[NumProtocolMethodLists];
1173 for (auto MD : PD->methods()) {
1176 result.Methods[index].push_back(MD);
1185 // concatenation of the methods arrays in the following order:
1186 // instance methods
1187 // class methods
1188 // optional instance methods
6405 SmallVector<const ObjCMethodDecl*, 16> methods; local
    [all...]

Completed in 49 milliseconds