/external/clang/include/clang/Lex/ |
PPMutationListener.h | 38 virtual void UndefinedMacro(MacroDirective *MD) { }
|
PPCallbacks.h | 187 virtual void MacroExpands(const Token &MacroNameTok, const MacroDirective *MD, 193 const MacroDirective *MD) { 198 /// MD is released immediately following this callback. 200 const MacroDirective *MD) { 204 /// \param MD The MacroDirective if the name was a macro, null otherwise. 205 virtual void Defined(const Token &MacroNameTok, const MacroDirective *MD) { 234 /// \param MD The MacroDirective if the name was a macro, null otherwise. 236 const MacroDirective *MD) { 242 /// \param MD The MacroDirective if the name was a macro, null otherwise. 244 const MacroDirective *MD) { [all...] |
/external/ppp/pppd/ |
md4.h | 23 unsigned int buffer[4]; /* Holds 4-word result of MD computation */ 25 unsigned int done; /* Nonzero means MD computation finished */ 32 extern void MD4Init __P((MD4_CTX *MD)); 34 /* MD4Update(MD,X,count) 37 ** Updates MD using the first "count" bits of X. 42 ** The routine terminates the MD computation when count < 512, so 43 ** every MD computation should end with one call to MD4Update with a 46 extern void MD4Update __P((MD4_CTX *MD, unsigned char *X, unsigned int count)); 48 /* MD4Print(MD) 49 ** Prints message digest buffer MD as 32 hexadecimal digits [all...] |
/external/clang/lib/Lex/ |
MacroInfo.cpp | 113 for (const MacroDirective *MD = this; MD; MD = MD->Previous) { 114 if (MD->getLocation().isInvalid() || // For macros defined on the command line. 115 SM.isBeforeInTranslationUnit(MD->getLocation(), L)) 116 return (MD->UndefLocation.isInvalid() || 117 SM.isBeforeInTranslationUnit(L, MD->UndefLocation)) ? MD : NULL;
|
PreprocessingRecord.cpp | 385 const MacroDirective *MD) { 387 if (MD) 388 addMacroExpansion(MacroNameTok, MD->getInfo(), MacroNameTok.getLocation()); 392 const MacroDirective *MD) { 394 if (MD) 395 addMacroExpansion(MacroNameTok, MD->getInfo(), MacroNameTok.getLocation()); 399 const MacroDirective *MD) { 401 if (MD) 402 addMacroExpansion(MacroNameTok, MD->getInfo(), MacroNameTok.getLocation()); 405 void PreprocessingRecord::MacroExpands(const Token &Id,const MacroDirective *MD, [all...] |
/external/clang/include/clang/Serialization/ |
ASTDeserializationListener.h | 42 virtual void MacroRead(serialization::MacroID ID, MacroDirective *MD) { } 53 MacroDefinition *MD) { }
|
/external/smack/src/org/xbill/DNS/ |
MDRecord.java | 24 * Creates a new MD Record with the given data 29 super(name, Type.MD, dclass, ttl, mailAgent, "mail agent");
|
/external/clang/tools/libclang/ |
IndexBody.cpp | 74 if (ObjCMethodDecl *MD = E->getMethodDecl()) 75 IndexCtx.handleReference(MD, E->getSelectorStartLoc(), 99 if (ObjCMethodDecl *MD = E->getBoxingMethod()) 100 IndexCtx.handleReference(MD, E->getLocStart(), 106 if (ObjCMethodDecl *MD = E->getDictWithObjectsMethod()) 107 IndexCtx.handleReference(MD, E->getLocStart(), 113 if (ObjCMethodDecl *MD = E->getArrayWithObjectsMethod()) 114 IndexCtx.handleReference(MD, E->getLocStart(),
|
IndexDecl.cpp | 206 if (ObjCMethodDecl *MD = D->getGetterMethodDecl()) 207 if (MD->getLexicalDeclContext() == D->getLexicalDeclContext()) 208 handleObjCMethod(MD); 209 if (ObjCMethodDecl *MD = D->getSetterMethodDecl()) 210 if (MD->getLexicalDeclContext() == D->getLexicalDeclContext()) 211 handleObjCMethod(MD); 231 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) { 232 if (MD->isPropertyAccessor()) 233 IndexCtx.handleSynthesizedObjCMethod(MD, D->getLocation(), 236 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl()) [all...] |
/external/llvm/lib/IR/ |
IntrinsicInst.cpp | 57 if (MDNode* MD = cast_or_null<MDNode>(getArgOperand(0))) 58 return MD->getOperand(0);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
NoReturnFunctionChecker.cpp | 105 if (const ObjCMethodDecl *MD = Msg.getDecl()) { 106 MD = MD->getCanonicalDecl(); 107 if (MD->hasAttr<AnalyzerNoReturnAttr>()) {
|
IvarInvalidationChecker.cpp | 73 void addInvalidationMethod(const ObjCMethodDecl *MD) { 74 InvalidationMethods.insert(MD); 81 bool hasMethod(const ObjCMethodDecl *MD) { 86 if (*I == MD) { 599 const ObjCMethodDecl *MD = ME->getMethodDecl(); 600 if (MD) { 601 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl()); 602 MethToIvarMapTy::const_iterator IvI = PropertyGetterToIvarMap.find(MD); 623 const ObjCMethodDecl *MD = PA->getImplicitPropertySetter() [all...] |
CheckObjCDealloc.cpp | 158 ObjCMethodDecl *MD = 0; 165 MD = *I; 173 if (!MD) { // No dealloc found. 189 if (MD->getBody() && !scan_dealloc(MD->getBody(), S)) { 201 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC, 240 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx) 267 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC,
|
ObjCMissingSuperCallChecker.cpp | 192 ObjCMethodDecl *MD = *I; 195 if (MD->getBody()) 198 Visitor.TraverseDecl(MD); 203 PathDiagnosticLocation::createEnd(MD->getBody(), 215 BR.EmitBasicReport(MD, Name, categories::CoreFoundationObjectiveC,
|
/external/openssl/crypto/rand/ |
rand_lcl.h | 139 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md5(), NULL) 144 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_sha1(), NULL) 149 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_mdc2(), NULL) 154 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md2(), NULL)
|
/external/clang/include/clang/AST/ |
VTableBuilder.h | 68 static VTableComponent MakeFunction(const CXXMethodDecl *MD) { 69 assert(!isa<CXXDestructorDecl>(MD) && 73 reinterpret_cast<uintptr_t>(MD)); 86 static VTableComponent MakeUnusedFunction(const CXXMethodDecl *MD) { 87 assert(!isa<CXXDestructorDecl>(MD) && 90 reinterpret_cast<uintptr_t>(MD)); 343 const ThunkInfoVectorTy *getThunkInfo(const CXXMethodDecl *MD) { 344 ComputeVTableRelatedInformation(MD->getParent()); 346 ThunksMapTy::const_iterator I = Thunks.find(MD);
|
/external/clang/lib/AST/ |
VTableBuilder.cpp | 132 OverriderInfo getOverrider(const CXXMethodDecl *MD, 134 assert(OverridersMap.count(std::make_pair(MD, BaseOffset)) && 137 return OverridersMap.lookup(std::make_pair(MD, BaseOffset)); 175 const CXXMethodDecl *MD = I->first; 181 assert(SubobjectOffsets.count(std::make_pair(MD->getParent(), 185 CharUnits BaseOffset = SubobjectOffsets[std::make_pair(MD->getParent(), 199 OverriderInfo& Overrider = OverridersMap[std::make_pair(MD, BaseOffset)]; 412 const CXXMethodDecl *MD = *I; 414 if (!MD->isVirtual()) 417 OverriderInfo Overrider = getOverrider(MD, Base.getBaseOffset()) [all...] |
Comment.cpp | 171 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CommentDecl); 172 IsInstanceMethod = MD->isInstance(); 178 const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(CommentDecl); 180 ParamVars = ArrayRef<const ParmVarDecl *>(MD->param_begin(), 181 MD->param_size()); 182 ResultType = MD->getResultType(); 184 IsInstanceMethod = MD->isInstanceMethod();
|
/external/clang/lib/CodeGen/ |
MicrosoftCXXABI.cpp | 124 const CXXMethodDecl* MD = cast<CXXMethodDecl>(GD.getDecl()); 125 return isa<CXXConstructorDecl>(MD); 179 const CXXMethodDecl* MD = cast<CXXMethodDecl>(GD.getDecl()); 180 if (isa<CXXDestructorDecl>(MD)) { 195 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl()); 196 if (isa<CXXConstructorDecl>(MD) && MD->getParent()->getNumVBases()) { 221 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl()); 222 if (isa<CXXConstructorDecl>(MD) && MD->getParent()->getNumVBases()) [all...] |
CGCXX.cpp | 306 CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This, 308 MD = MD->getCanonicalDecl(); 309 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(MD); 318 CodeGenFunction::BuildAppleKextVirtualCall(const CXXMethodDecl *MD, 331 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) 338 MD = MD->getCanonicalDecl(); 339 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(MD); 357 const CXXMethodDecl *MD = cast<CXXMethodDecl>(DD) [all...] |
/external/clang/lib/ARCMigrate/ |
TransEmptyStatementsAndDealloc.cpp | 216 ObjCMethodDecl *MD = *MI; 217 if (!MD->hasBody()) 220 if (MD->getMethodFamily() == OMF_dealloc) { 221 DeallocM = MD; 222 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { 223 FinalizeM = MD;
|
/external/llvm/lib/Bitcode/Writer/ |
ValueEnumerator.cpp | 81 if (MDNode *MD = dyn_cast<MDNode>(*OI)) 82 if (MD->isFunctionLocal() && MD->getFunction()) 223 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) { 224 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) 225 EnumerateMetadata(MD->getOperand(i)); 242 void ValueEnumerator::EnumerateMetadata(const Value *MD) { 243 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind"); 246 EnumerateType(MD->getType()) [all...] |
/frameworks/compile/slang/BitWriter_2_9/ |
ValueEnumerator.cpp | 83 if (MDNode *MD = dyn_cast<MDNode>(*OI)) 84 if (MD->isFunctionLocal() && MD->getFunction()) 225 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) { 226 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) 227 EnumerateMetadata(MD->getOperand(i)); 244 void ValueEnumerator::EnumerateMetadata(const Value *MD) { 245 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind"); 248 EnumerateType(MD->getType()) [all...] |
/frameworks/compile/slang/BitWriter_2_9_func/ |
ValueEnumerator.cpp | 83 if (MDNode *MD = dyn_cast<MDNode>(*OI)) 84 if (MD->isFunctionLocal() && MD->getFunction()) 225 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) { 226 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) 227 EnumerateMetadata(MD->getOperand(i)); 244 void ValueEnumerator::EnumerateMetadata(const Value *MD) { 245 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind"); 248 EnumerateType(MD->getType()) [all...] |
/frameworks/compile/slang/BitWriter_3_2/ |
ValueEnumerator.cpp | 83 if (MDNode *MD = dyn_cast<MDNode>(*OI)) 84 if (MD->isFunctionLocal() && MD->getFunction()) 225 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) { 226 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) 227 EnumerateMetadata(MD->getOperand(i)); 244 void ValueEnumerator::EnumerateMetadata(const Value *MD) { 245 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind"); 248 EnumerateType(MD->getType()) [all...] |