HomeSort by relevance Sort by last modified time
    Searched refs:FD (Results 101 - 125 of 300) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_poll.py 15 for fd, mode in ready:
17 match.append(fd)
73 FD = 42
75 os.close(FD)
79 p.register(FD)
81 self.assertEqual(r[0], (FD, select.POLLNVAL))
84 fd = f.fileno()
88 self.assertEqual(r[0][0], fd)
91 self.assertEqual(r[0], (fd, select.POLLNVAL))
127 fd, flags = fdlist[0
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 323 std::string createGraphFilename(const Twine &Name, int &FD);
328 int FD;
332 std::string Filename = createGraphFilename(N, FD);
333 raw_fd_ostream O(FD, /*shouldClose=*/ true);
335 if (FD == -1) {
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 283 void RewriteFunctionDecl(FunctionDecl *FD);
286 void RewriteBlockLiteralFunctionDecl(FunctionDecl *FD);
319 void RewriteBlockPointerFunctionArgs(FunctionDecl *FD);
348 CallExpr *SynthesizeCallToFunctionDecl(FunctionDecl *FD,
397 void InsertBlockLiteralsWithinFunction(FunctionDecl *FD);
658 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
659 RewriteFunctionDecl(FD);
    [all...]
RewriteModernObjC.cpp 337 void RewriteFunctionDecl(FunctionDecl *FD);
340 void RewriteBlockLiteralFunctionDecl(FunctionDecl *FD);
394 void RewriteBlockPointerFunctionArgs(FunctionDecl *FD);
414 CallExpr *SynthesizeCallToFunctionDecl(FunctionDecl *FD,
492 void InsertBlockLiteralsWithinFunction(FunctionDecl *FD);
732 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
733 RewriteFunctionDecl(FD);
    [all...]
  /external/clang/lib/Sema/
SemaAttr.cpp 492 void Sema::AddRangeBasedOptnone(FunctionDecl *FD) {
496 AddOptnoneAttributeIfNoConflicts(FD, OptimizeOffPragmaLocation);
499 void Sema::AddOptnoneAttributeIfNoConflicts(FunctionDecl *FD,
502 if (FD->hasAttr<MinSizeAttr>() || FD->hasAttr<AlwaysInlineAttr>())
507 if (!FD->hasAttr<OptimizeNoneAttr>())
508 FD->addAttr(OptimizeNoneAttr::CreateImplicit(Context, Loc));
509 if (!FD->hasAttr<NoInlineAttr>())
510 FD->addAttr(NoInlineAttr::CreateImplicit(Context, Loc));
Sema.cpp 433 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
437 if (FD->hasBody(DeclToCheck))
442 DeclToCheck = FD->getMostRecentDecl();
443 if (DeclToCheck != FD)
487 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
488 if (FD->isDefined())
490 if (FD->isExternallyVisible() &&
491 !FD->getMostRecentDecl()->isInlined())
632 if (const FunctionDecl *FD =
634 Complete = FD->isDefined()
    [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 262 const FunctionDecl* FD = cast<FunctionDecl>(DC);
263 if (FD->doesThisDeclarationHaveABody())
267 Out << *FD;
271 for (auto I : FD->params()) {
419 FieldDecl *FD = cast<FieldDecl>(I);
420 Out << "<field> " << *FD << '\n';
MultiplexConsumer.cpp 116 void ResolvedExceptionSpec(const FunctionDecl *FD) override;
117 void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) override;
172 const FunctionDecl *FD) {
174 Listener->ResolvedExceptionSpec(FD);
176 void MultiplexASTMutationListener::DeducedReturnType(const FunctionDecl *FD,
179 Listeners[i]->DeducedReturnType(FD, ReturnType);
  /external/clang/lib/CodeGen/
CGCall.cpp 101 const FunctionDecl *FD) {
103 if (FD == nullptr) {
113 assert(FD->getNumParams() == FPT->getNumParams());
116 if (FD->getParamDecl(I)->hasAttr<PassObjectSizeAttr>())
127 const FunctionDecl *FD) {
130 appendParameterTypes(CGT, prefix, FTP, FD);
141 const FunctionDecl *FD) {
144 FTP, FD);
287 CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) {
288 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
    [all...]
CodeGenModule.cpp 730 const auto *FD = cast<FunctionDecl>(GD.getDecl());
732 if (const auto *Dtor = dyn_cast_or_null<CXXDestructorDecl>(FD)) {
740 if (FD->hasAttr<DLLImportAttr>())
742 else if (FD->hasAttr<DLLExportAttr>())
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 385 static bool IsInStdNamespace(const FunctionDecl *FD) {
386 const DeclContext *DC = FD->getEnclosingNamespaceContext();
720 const FunctionDecl *FD) {
721 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
728 static bool isCXXSharedPtrDtor(const FunctionDecl *FD) {
729 const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(FD);
755 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeADC->getDecl())) {
758 if (FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate)
763 if (Ctx.getSourceManager().isInSystemHeader(FD->getLocation()))
764 if (IsInStdNamespace(FD))
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_double/d/
T_mul_double_3.d 27 .method public run(FD)D
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_double_2addr/d/
T_mul_double_2addr_3.d 27 .method public run(FD)D
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_float/d/
T_mul_float_3.d 27 .method public run(FD)F
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_float_2addr/d/
T_mul_float_2addr_3.d 27 .method public run(FD)F
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_double/d/
T_rem_double_3.d 27 .method public run(FD)D
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_float/d/
T_rem_float_3.d 27 .method public run(FD)F
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_float_2addr/d/
T_rem_float_2addr_3.d 27 .method public run(FD)F
  /external/clang/lib/ARCMigrate/
Transforms.cpp 92 if (const FunctionDecl *FD = callE->getDirectCallee()) {
93 if (FD->hasAttr<CFReturnsRetainedAttr>())
96 if (FD->isGlobal() &&
97 FD->getIdentifier() &&
98 FD->getParent()->isTranslationUnit() &&
99 FD->isExternallyVisible() &&
101 FD->getIdentifier()->getName())) {
102 StringRef fname = FD->getIdentifier()->getName();
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 46 if (const FieldDecl *FD = RT->getDecl()->findFirstNamedDataMember()) {
47 return FD->getIdentifier();
MicrosoftMangle.cpp 75 const auto *FD = cast<FunctionDecl>(ND);
76 if (const auto *FTD = FD->getPrimaryTemplate())
79 return FD;
257 void mangleFunctionEncoding(const FunctionDecl *FD, bool ShouldMangle);
308 void mangleFunctionClass(const FunctionDecl *FD);
323 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
324 LanguageLinkage L = FD->getLanguageLinkage();
326 if (FD->hasAttr<OverloadableAttr>())
338 if (FD->isMSVCRTEntryPoint())
343 if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 282 const FunctionDecl *FD = C.getCalleeDecl(CE);
283 if (!FD || FD->getKind() != Decl::Function)
286 StringRef funName = C.getCalleeName(FD);
452 const FunctionDecl *FD = C.getCalleeDecl(CE);
453 if (!FD || FD->getKind() != Decl::Function)
456 StringRef funName = C.getCalleeName(FD);
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 345 bool VisitFunctionDecl(FunctionDecl *FD) {
346 IdentifierInfo *II = FD->getIdentifier();
352 if (FD->isThisDeclarationADefinition() &&
353 !FD->isDependentContext()) {
355 HandleCode(FD, RecVisitorMode);
742 int FD;
743 llvm::sys::fs::createTemporaryFile("llvm_ubi", "", FD, P);
746 auto Stream = llvm::make_unique<llvm::raw_fd_ostream>(FD, true);
  /libcore/ojluni/src/main/native/
linux_close.cpp 83 int NET_Dup2(int fd, int fd2) {
84 if (fd < 0) {
88 return closefd(fd, fd2);
93 * except that any threads blocked in an I/O on fd will be
96 int NET_SocketClose(int fd) {
97 return closefd(-1, fd);
107 #define BLOCKING_IO_RETURN_INT(FD, FUNC) { \
113 AsynchronousCloseMonitor _monitor(FD); \
164 BLOCKING_IO_RETURN_INT( ufds[0].fd, poll(ufds, nfds, timeout) );
191 * called from PlainSocketImpl_socketAccept with fd == -1
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 228 static CallEffects getEffect(const FunctionDecl *FD);

Completed in 404 milliseconds

1 2 3 45 6 7 8 91011>>