HomeSort by relevance Sort by last modified time
    Searched refs:FD (Results 26 - 50 of 163) sorted by null

12 3 4 5 6 7

  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 47 bool followsCreateRule(const FunctionDecl *FD);
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_double_2addr/d/
T_rem_double_2addr_3.d 13 .method public run(FD)D
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_double_2addr/d/
T_rem_double_2addr_3.d 13 .method public run(FD)D
  /external/clang/lib/StaticAnalyzer/Checkers/
AdjustedReturnValueChecker.cpp 60 const FunctionDecl *FD = FT->getDecl();
61 actualResultTy = FD->getResultType();
AttrNonNullChecker.cpp 41 const FunctionDecl *FD = X.getAsFunctionDecl();
42 if (!FD)
45 const NonNullAttr* Att = FD->getAttr<NonNullAttr>();
MallocChecker.cpp 135 const FunctionDecl *FD = L.getAsFunctionDecl();
136 if (!FD)
149 if (FD->getIdentifier() == II_malloc) {
154 if (FD->getIdentifier() == II_free) {
159 if (FD->getIdentifier() == II_realloc) {
164 if (FD->getIdentifier() == II_calloc) {
172 if (FD->hasAttrs()) {
174 i = FD->specific_attr_begin<OwnershipAttr>(),
175 e = FD->specific_attr_end<OwnershipAttr>();
386 const FunctionDecl *FD = cast<FunctionTextRegion>(MR)->getDecl()
    [all...]
StreamChecker.cpp 121 const FunctionDecl *FD = L.getAsFunctionDecl();
122 if (!FD)
155 if (FD->getIdentifier() == II_fopen) {
159 if (FD->getIdentifier() == II_tmpfile) {
163 if (FD->getIdentifier() == II_fclose) {
167 if (FD->getIdentifier() == II_fread) {
171 if (FD->getIdentifier() == II_fwrite) {
175 if (FD->getIdentifier() == II_fseek) {
179 if (FD->getIdentifier() == II_ftell) {
183 if (FD->getIdentifier() == II_rewind)
    [all...]
ObjCUnusedIVarsChecker.cpp 95 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
96 SourceLocation L = FD->getLocStart();
98 Scan(M, FD->getBody());
PthreadLockChecker.cpp 61 const FunctionDecl *FD = state->getSVal(Callee).getAsFunctionDecl();
63 if (!FD)
67 IdentifierInfo *II = FD->getIdentifier();
  /external/clang/examples/wpa/
clang-wpa.cpp 127 FunctionDecl *FD;
129 llvm::tie(FD, TU) = Idxer.getDefinitionFor(Ent);
131 if (!FD)
178 Eng.ExecuteWorkList(AMgr.getStackFrame(FD, TU), AMgr.getMaxNodes());
  /external/clang/lib/Basic/
FileManager.cpp 58 if (FD != -1) ::close(FD);
377 // If the stat process opened the file, close it to avoid a FD leak.
392 UFE.FD = FileDescriptor;
430 // If the stat process opened the file, close it to avoid a FD leak.
443 if (UFE->FD != -1) {
444 close(UFE->FD);
445 UFE->FD = -1;
464 UFE->FD = -1;
487 if (Entry->FD != -1)
    [all...]
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 167 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
168 if (!FD) {
180 if (FD->isInlineSpecified()) {
216 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
217 if (!FD) {
225 if (FD->isInlineSpecified()) {
SemaDecl.cpp     [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 176 const FunctionDecl* FD = cast<FunctionDecl>(DC);
177 if (FD->doesThisDeclarationHaveABody())
181 Out << *FD;
185 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
186 E = FD->param_end(); I != E; ++I) {
335 FieldDecl *FD = cast<FieldDecl>(*I);
336 Out << "<field> " << *FD << '\n';
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 139 void VisitFunctionDecl(FunctionDecl *FD);
144 void VisitFieldDecl(FieldDecl *FD);
145 void VisitIndirectFieldDecl(IndirectFieldDecl *FD);
210 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
213 FD->setLazyBody(GetCurrentCursorOffset());
342 void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
343 VisitDeclaratorDecl(FD);
344 VisitRedeclarable(FD);
346 ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx)
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 42 void mangleFunctionEncoding(const FunctionDecl *FD);
70 void mangleFunctionClass(const FunctionDecl *FD);
133 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
134 if (FD && (FD->hasAttr<OverloadableAttr>() || isa<CXXMethodDecl>(FD) ||
135 !FD->getDeclName().isIdentifier()))
143 if (!FD) {
150 if ((FD && FD->isMain()) || isInCLinkageSpecification(D)
    [all...]
RecordLayoutBuilder.cpp 87 void UpdateEmptyFieldSubobjects(const FieldDecl *FD, CharUnits Offset);
114 bool CanPlaceFieldSubobjectAtOffset(const FieldDecl *FD,
137 bool CanPlaceFieldAtOffset(const FieldDecl *FD, CharUnits Offset);
164 const FieldDecl *FD = *I;
167 Context.getBaseElementType(FD->getType())->getAs<RecordType>();
264 const FieldDecl *FD = *I;
265 if (FD->isBitField())
269 if (!CanPlaceFieldSubobjectAtOffset(FD, FieldOffset))
313 const FieldDecl *FD = *I;
314 if (FD->isBitField()
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 264 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D))
265 for (FunctionDecl::redecl_iterator RI = FD->redecls_begin(),
266 RE = FD->redecls_end(); RI != RE; ++RI)
274 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D))
275 if (FD->hasAttr<OpenCLKernelAttr>()) {
360 const FunctionDecl *FD = cast<FunctionDecl>(CurGD.getDecl());
361 assert(FD->getBody());
362 EmitStmt(FD->getBody());
387 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
390 if (CGM.getModuleDebugInfo() && !FD->hasAttr<NoDebugAttr>()
    [all...]
CGRecordLayoutBuilder.cpp 228 const FieldDecl *FD,
233 llvm::Type *Ty = Types.ConvertTypeForMem(FD->getType());
238 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
352 const FieldDecl *FD,
355 const RecordDecl *RD = FD->getParent();
360 return MakeInfo(Types, FD, FieldOffset, FieldSize, ContainingTypeSizeInBits,
767 const FieldDecl *FD = (*Field);
768 if (Types.getContext().ZeroBitfieldFollowsNonBitfield(FD, LastFD)) {
772 LastFD = FD;
    [all...]
  /external/clang/lib/Index/
Indexer.cpp 41 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
42 if (FD->doesThisDeclarationHaveABody())
43 DefMap[Ent] = std::make_pair(FD, TU);
  /external/llvm/include/llvm/Support/
MemoryBuffer.h 76 static error_code getOpenFile(int FD, const char *Filename,
  /frameworks/compile/slang/
slang_rs.h 95 static bool IsFunctionInRSHeaderFile(const clang::FunctionDecl *FD,
slang_rs_backend.h 59 void AnnotateFunction(clang::FunctionDecl *FD);
slang_rs_object_ref_count.cpp 56 clang::FunctionDecl *FD = static_cast<clang::FunctionDecl*>(*I);
61 if (FD->getName() == "rsSetObject") {
62 slangAssert((FD->getNumParams() == 2) &&
65 } else if (FD->getName() == "rsClearObject") {
66 slangAssert((FD->getNumParams() == 1) &&
73 const clang::ParmVarDecl *PVD = FD->getParamDecl(0);
79 // The rs object type passed to the FD
86 RSObjectFD[(DT - RSExportPrimitiveType::FirstRSObjectType)] = FD;
632 const clang::FieldDecl *FD = *FI;
633 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD);
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc     [all...]

Completed in 1640 milliseconds

12 3 4 5 6 7