/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
D | real_pepper_interface.cc | 24 #define METHOD0(Class, ReturnType, MethodName) \ argument 25 virtual ReturnType MethodName(); 26 #define METHOD1(Class, ReturnType, MethodName, Type0) \ argument 27 virtual ReturnType MethodName(Type0); 28 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \ argument 29 virtual ReturnType MethodName(Type0, Type1); 30 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ argument 31 virtual ReturnType MethodName(Type0, Type1, Type2); 32 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ argument 33 virtual ReturnType MethodName(Type0, Type1, Type2, Type3); [all …]
|
D | pepper_interface.h | 117 #define METHOD0(Class, ReturnType, MethodName) \ argument 118 virtual ReturnType MethodName() = 0; 119 #define METHOD1(Class, ReturnType, MethodName, Type0) \ argument 120 virtual ReturnType MethodName(Type0) = 0; 121 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \ argument 122 virtual ReturnType MethodName(Type0, Type1) = 0; 123 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ argument 124 virtual ReturnType MethodName(Type0, Type1, Type2) = 0; 125 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ argument 126 virtual ReturnType MethodName(Type0, Type1, Type2, Type3) = 0; [all …]
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
D | pepper_interface_mock.h | 20 #define METHOD0(Class, ReturnType, MethodName) \ argument 21 MOCK_METHOD0(MethodName, ReturnType()); 22 #define METHOD1(Class, ReturnType, MethodName, Type0) \ argument 23 MOCK_METHOD1(MethodName, ReturnType(Type0)); 24 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \ argument 25 MOCK_METHOD2(MethodName, ReturnType(Type0, Type1)); 26 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ argument 27 MOCK_METHOD3(MethodName, ReturnType(Type0, Type1, Type2)); 28 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ argument 29 MOCK_METHOD4(MethodName, ReturnType(Type0, Type1, Type2, Type3)); [all …]
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/ |
D | define_empty_macros.h | 7 #define METHOD0(Class, ReturnType, MethodName) argument 8 #define METHOD1(Class, ReturnType, MethodName, Type0) argument 9 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) argument 10 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) argument 11 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) argument 12 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \ argument
|
/external/lldb/include/lldb/Target/ |
D | CPPLanguageRuntime.h | 29 class MethodName 40 MethodName () : in MethodName() function 52 MethodName (const ConstString &s) : in MethodName() function
|
D | ObjCLanguageRuntime.h | 35 class MethodName 45 MethodName () : in MethodName() function 55 MethodName (const char *name, bool strict) : in MethodName() function
|
/external/lldb/source/Target/ |
D | CPPLanguageRuntime.cpp | 236 CPPLanguageRuntime::MethodName::Clear() in Clear() 286 CPPLanguageRuntime::MethodName::Parse() in Parse() 356 CPPLanguageRuntime::MethodName::GetBasename () in GetBasename() 364 CPPLanguageRuntime::MethodName::GetContext () in GetContext() 372 CPPLanguageRuntime::MethodName::GetArguments () in GetArguments() 380 CPPLanguageRuntime::MethodName::GetQualifiers () in GetQualifiers()
|
D | ObjCLanguageRuntime.cpp | 156 ObjCLanguageRuntime::MethodName::Clear() in Clear() 212 ObjCLanguageRuntime::MethodName::SetName (const char *name, bool strict) in SetName() 255 ObjCLanguageRuntime::MethodName::GetClassName () in GetClassName() 290 ObjCLanguageRuntime::MethodName::GetClassNameWithCategory () in GetClassNameWithCategory() 319 ObjCLanguageRuntime::MethodName::GetSelector () in GetSelector() 338 ObjCLanguageRuntime::MethodName::GetCategory () in GetCategory() 361 ObjCLanguageRuntime::MethodName::GetFullNameWithoutCategory (bool empty_if_no_category) in GetFullNameWithoutCategory() 386 ObjCLanguageRuntime::MethodName::GetFullNames (std::vector<ConstString> &names, bool append) in GetFullNames()
|
/external/lzma/CPP/7zip/Archive/Common/ |
D | HandlerOut.cpp | 88 AreEqual(MethodName, kLZMAMethodName) || in IsLzma() 89 AreEqual(MethodName, kLZMA2MethodName); in IsLzma() 199 if (oneMethodInfo.MethodName.IsEmpty()) in SetCompressionMethod2() 200 oneMethodInfo.MethodName = kDefaultMethodName; in SetCompressionMethod2() 231 else if (IsDeflateMethod(oneMethodInfo.MethodName)) in SetCompressionMethod2() 251 else if (IsBZip2Method(oneMethodInfo.MethodName)) in SetCompressionMethod2() 269 else if (IsPpmdMethod(oneMethodInfo.MethodName)) in SetCompressionMethod2() 382 oneMethodInfo.MethodName = params[0]; in SetParams()
|
D | HandlerOut.h | 14 UString MethodName; member
|
/external/clang/include/clang/Analysis/Analyses/ |
D | Consumed.h | 111 virtual void warnUseOfTempInInvalidState(StringRef MethodName, in warnUseOfTempInInvalidState() argument 125 virtual void warnUseInInvalidState(StringRef MethodName, in warnUseInInvalidState() argument
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zHandlerOut.cpp | 67 oneMethodInfo.MethodName = kLZMAMethodName; in SetCompressionMethod() 116 oneMethodInfo.MethodName = ((level == 0) ? kCopyMethod : kDefaultMethodName); in SetCompressionMethod() 130 if (!IsCopyMethod(oneMethodInfo.MethodName)) in SetCompressionMethod() 137 oneMethodInfo.MethodName, methodFull.Id, methodFull.NumInStreams, methodFull.NumOutStreams)) in SetCompressionMethod()
|
/external/clang/lib/AST/ |
D | VTableBuilder.cpp | 2131 std::string MethodName = in dumpLayout() local 2135 MethodNamesAndDecls.insert(std::make_pair(MethodName, MD)); in dumpLayout() 2141 const std::string &MethodName = I->first; in dumpLayout() local 2151 Out << "Thunks for '" << MethodName << "' (" << ThunksVector.size(); in dumpLayout() 2199 std::string MethodName = in dumpLayout() local 2207 IndicesMap[VTableIndex] = MethodName + " [complete]"; in dumpLayout() 2208 IndicesMap[VTableIndex + 1] = MethodName + " [deleting]"; in dumpLayout() 2211 IndicesMap[MethodVTableIndices[MD]] = MethodName; in dumpLayout() 2224 const std::string &MethodName = I->second; in dumpLayout() local 2226 Out << llvm::format("%4" PRIu64 " | ", VTableIndex) << MethodName in dumpLayout() [all …]
|
/external/lldb/source/Breakpoint/ |
D | BreakpointResolverName.cpp | 127 ObjCLanguageRuntime::MethodName objc_method(name.GetCString(), false); in AddNameLookup()
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 1201 std::string MethodName = MethodIdName->getName(); in migrateFactoryMethod() local 1203 StringRef STRefMethodName(MethodName); in migrateFactoryMethod() 1213 MethodName = STRefMethodName.substr(len); in migrateFactoryMethod() 1215 std::string MethodNameSubStr = MethodName.substr(0, 3); in migrateFactoryMethod() 1223 StringRef LoweredMethodName(MethodName); in migrateFactoryMethod()
|
/external/clang/lib/Sema/ |
D | AnalysisBasedWarnings.cpp | 1686 void warnUseOfTempInInvalidState(StringRef MethodName, StringRef State, in warnUseOfTempInInvalidState() argument 1690 diag::warn_use_of_temp_in_invalid_state) << MethodName << State); in warnUseOfTempInInvalidState() 1695 void warnUseInInvalidState(StringRef MethodName, StringRef VariableName, in warnUseInInvalidState() argument 1699 MethodName << VariableName << State); in warnUseInInvalidState()
|
D | SemaLambda.cpp | 379 DeclarationName MethodName in startLambdaDefinition() local 388 DeclarationNameInfo(MethodName, in startLambdaDefinition() 404 Method->getLocation(), MethodName, in startLambdaDefinition()
|
D | SemaDeclObjC.cpp | 2420 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection() local 2422 unsigned MinPossibleEditDistance = abs((int)MethodName.size() - (int)Typo.size()); in HelperSelectorsForTypoCorrection() 2426 unsigned EditDistance = Typo.edit_distance(MethodName, true, MaxEditDistance); in HelperSelectorsForTypoCorrection()
|
/external/lldb/source/Symbol/ |
D | Symtab.cpp | 317 CPPLanguageRuntime::MethodName cxx_method (mangled.GetDemangledName()); in InitNameIndexes() 372 ObjCLanguageRuntime::MethodName objc_method (entry.cstring, true); in InitNameIndexes()
|
/external/lldb/source/Core/ |
D | Module.cpp | 1528 CPPLanguageRuntime::MethodName cpp_method (name); in PrepareForFunctionNameLookup() 1550 CPPLanguageRuntime::MethodName cpp_method (name); in PrepareForFunctionNameLookup()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFCompileUnit.cpp | 774 ObjCLanguageRuntime::MethodName objc_method(name, true); in Index()
|
D | SymbolFileDWARF.cpp | 1821 … ObjCLanguageRuntime::MethodName prop_getter_method(prop_getter_name, true); in ParseChildMembers() 1827 … ObjCLanguageRuntime::MethodName prop_setter_method(prop_setter_name, true); in ParseChildMembers() 6528 ObjCLanguageRuntime::MethodName objc_method (type_name_cstr, true); in ParseType()
|
/external/clang/lib/CodeGen/ |
D | CGObjCGNU.cpp | 879 const StringRef &CategoryName, const Selector MethodName, in SymbolNameForMethod() argument 881 std::string MethodNameColonStripped = MethodName.getAsString(); in SymbolNameForMethod() 2587 Selector MethodName = OMD->getSelector(); in GenerateMethod() local 2594 MethodName, isClassMethod); in GenerateMethod()
|
D | CGDebugInfo.cpp | 192 SmallString<256> MethodName; in getObjCMethodName() local 193 llvm::raw_svector_ostream OS(MethodName); in getObjCMethodName() 1057 StringRef MethodName = getFunctionName(Method); in CreateCXXMemberFunction() local 1121 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName, in CreateCXXMemberFunction()
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 157 constructor Create(MethodName: String); override; 1569 constructor TestITreeWizard.Create(MethodName: String);
|