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

1 23 4 5 6 7 8 91011>>

  /frameworks/compile/slang/
slang_rs_foreach_lowering.h 37 // Given a FunctionDecl FD and the target API level, either translates all
38 // rsForEach() and rsForEachWithOptions() calls inside FD into calls to the
39 // low-level rsForEachInternal() API, if FD is not a kernel function itself;
40 // or, in the case where FD is a kernel function, reports a compiler error on
42 void handleForEachCalls(clang::FunctionDecl* FD, unsigned int targetAPI);
slang_backend.cpp 363 void Backend::AnnotateFunction(clang::FunctionDecl *FD) {
364 if (FD &&
365 FD->hasBody() &&
366 !Slang::IsLocInRSHeaderFile(FD->getLocation(), mSourceMgr)) {
368 mRefCount.SetDeclContext(FD);
369 mRefCount.Visit(FD->getBody());
395 clang::FunctionDecl *FD = llvm::dyn_cast<clang::FunctionDecl>(*I);
396 if (FD == nullptr)
398 if (!FD->getName().startswith("rs")) // Check prefix
400 if (!Slang::IsLocInRSHeaderFile(FD->getLocation(), mSourceMgr)
    [all...]
slang_rs_check_ast.h 70 void ValidateFunctionDecl(clang::FunctionDecl *FD);
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 83 const FieldDecl *FD;
87 const FieldDecl *FD = nullptr)
88 : Offset(Offset), Kind(Kind), Data(Data), FD(FD) {}
135 llvm::Type *getStorageType(const FieldDecl *FD) {
136 llvm::Type *Type = Types.ConvertTypeForMem(FD->getType());
137 if (!FD->isBitField()) return Type;
139 return getIntNType(std::min(FD->getBitWidthValue(Context),
155 bool isZeroInitializable(const FieldDecl *FD) {
156 return Types.isZeroInitializable(FD->getType())
    [all...]
CodeGenABITypes.cpp 48 const FunctionDecl *FD) {
49 return CGM->getTypes().arrangeFreeFunctionType(Ty, FD);
  /external/clang/lib/Sema/
SemaCoroutine.cpp 113 auto *FD = dyn_cast<FunctionDecl>(S.CurContext);
114 if (!FD) {
118 } else if (isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD)) {
125 << isa<CXXDestructorDecl>(FD) << Keyword;
126 } else if (FD->isConstexpr()) {
128 } else if (FD->isVariadic()) {
137 FD->getType()->isDependentType()
139 : lookupPromiseType(S, FD->getType()->castAs<FunctionProtoType>(),
146 VarDecl::Create(S.Context, FD, FD->getLocation(), FD->getLocation()
    [all...]
  /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/include/clang/AST/
ASTMutationListener.h 73 virtual void ResolvedExceptionSpec(const FunctionDecl *FD) {}
76 virtual void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType);
  /external/clang/include/clang/Analysis/
CallGraph.h 97 bool VisitFunctionDecl(FunctionDecl *FD) {
100 if (includeInGraph(FD)) {
102 addNodesForBlocks(FD);
106 addNodeForDecl(FD, FD->isGlobal());
139 Decl *FD;
145 CallGraphNode(Decl *D) : FD(D) {}
163 Decl *getDecl() const { return FD; }
  /external/clang/lib/AST/
Mangle.cpp 60 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
61 return FD->isExternC();
78 const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
79 if (!FD)
81 QualType T = FD->getType();
163 const FunctionDecl *FD = cast<FunctionDecl>(D);
164 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
175 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Comment.cpp 158 const FunctionDecl *FD = cast<FunctionDecl>(CommentDecl);
160 ParamVars = llvm::makeArrayRef(FD->param_begin(), FD->getNumParams());
161 ReturnType = FD->getReturnType();
162 unsigned NumLists = FD->getNumTemplateParameterLists();
166 FD->getTemplateParameterList(NumLists - 1);
191 const FunctionDecl *FD = FTD->getTemplatedDecl();
192 ParamVars = llvm::makeArrayRef(FD->param_begin(), FD->getNumParams());
193 ReturnType = FD->getReturnType()
    [all...]
InheritViz.cpp 140 int FD;
143 Self.getAsString(), "dot", FD, Filename)) {
150 llvm::raw_fd_ostream O(FD, true);
  /external/clang/lib/Serialization/
ASTCommon.h 97 if (auto *FD = dyn_cast<FriendDecl>(LexicalD))
98 LexicalD = FD->getFriendDecl();
  /external/llvm/lib/Support/
raw_ostream.cpp 504 int FD;
505 EC = sys::fs::openFileForWrite(Filename, FD, Flags);
509 return FD;
516 /// FD is the file descriptor that this writes to. If ShouldClose is true, this
518 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
519 : raw_pwrite_stream(unbuffered), FD(fd), ShouldClose(shouldClose),
521 if (FD < 0 ) {
527 off_t loc = ::lseek(FD, 0, SEEK_CUR);
531 std::error_code EC = status(FD, Status)
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 310 if (const FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) {
311 if (FD->isBitField())
312 return FD->getBitWidthValue(getCursorContext(C));
502 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>())
503 return (unsigned)FD->isVariadic();
516 if (const FunctionType *FD = T->getAs<FunctionType>()) {
518 switch (FD->getCallConv()) {
545 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>()) {
546 return FD->getNumParams();
561 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>())
    [all...]
  /external/clang/unittests/Tooling/
RewriterTestContext.h 69 int FD;
70 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
74 llvm::raw_fd_ostream OutStream(FD, true);
LookupTest.cpp 38 const ValueDecl *FD = Callee->getDecl();
40 Callee->getQualifier(), Visitor.DeclStack.back()->getDeclContext(), FD,
  /external/llvm/unittests/Support/
LockFileManagerTest.cpp 62 int FD;
63 EC = sys::fs::openFileForWrite(StringRef(TmpFileLock), FD, sys::fs::F_None);
66 int Ret = close(FD);
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 109 const FunctionDecl *FD = C.getCalleeDecl(CE);
110 if (!FD || FD->getKind() != Decl::Function)
143 if (FD->getIdentifier() == II_fopen) {
147 if (FD->getIdentifier() == II_tmpfile) {
151 if (FD->getIdentifier() == II_fclose) {
155 if (FD->getIdentifier() == II_fread) {
159 if (FD->getIdentifier() == II_fwrite) {
163 if (FD->getIdentifier() == II_fseek) {
167 if (FD->getIdentifier() == II_ftell)
    [all...]
RetainCountChecker.cpp 652 const RetainSummary *getCFSummaryCreateRule(const FunctionDecl *FD);
653 const RetainSummary *getCFSummaryGetRule(const FunctionDecl *FD);
654 const RetainSummary *getCFCreateGetRuleSummary(const FunctionDecl *FD);
754 const RetainSummary *getFunctionSummary(const FunctionDecl *FD);
799 const FunctionDecl *FD);
884 static bool isRetain(const FunctionDecl *FD, StringRef FName) {
888 static bool isRelease(const FunctionDecl *FD, StringRef FName) {
892 static bool isAutorelease(const FunctionDecl *FD, StringRef FName) {
896 static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) {
    [all...]
  /external/valgrind/none/tests/s390x/
icm.stdout.exp 1 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 07 00 00 01 00 00 00 01 08 00 00 01 01 00 00 01 01 00 00 00 00 00 00 00 0A 00 00 00 00 00 00 00 0B 00 00 01 00 00 00 01 0C 00 00 01 02 00 00 01 02 00 01 00 00 00 01 00 0E 00 01 00 02 00 01 00 02 00 01 02 00 00 01 02 10 00 01 02 3C 00 01 02 3C 00 00 00 00 00 00 00 12 00 00 00 00 00 00 00 13 00 00 3C 00 00 00 3C 14 00 00 3C 3D 00 00 3C 3D 00 3C 00 00 00 3C 00 16 00 3C 00 3D 00 3C 00 3D 00 3C 3D 00 00 3C 3D 18 00 3C 3D 3E 00 3C 3D 3E 3C 00 00 00 3C 00 00 1A 3C 00 00 3D 3C 00 00 3D 3C 00 3D 00 3C 00 3D 1C 3C 00 3D 3E 3C 00 3D 3E 3C 3D 00 00 3C 3D 00 1E 3C 3D 00 3E 3C 3D 00 3E 3C 3D 3E 00 3C 3D 3E 20 3C 3D 3E 78 3C 3D 3E 78 00 00 00 00 00 00 00 22 00 00 00 00 00 00 00 23 00 00 78 00 00 00 78 24 00 00 78 79 00 00 78 79 00 78 00 00 00 78 00 26 00 78 00 79 00 78 00 79 00 78 79 00 00 78 79 28 00 78 79 7A 00 78 79 7A 78 00 00 00 78 00 00 2A 78 00 00 79 78 00 00 79 78 00 79 00 78 00 79 2C 78 00 79 7A 78 00 79 7A 78 79 00 00 78 79 00 2E 78 79 00 7A 78 79 00 7A 78 79 7A 00 78 79 7A 30 78 79 7A B4 78 79 7A B4 00 00 00 00 00 00 00 32 00 00 B4 00 00 00 B4 33 00 00 B4 B5 00 00 B4 B5 00 B4 00 00 00 B4 00 35 00 B4 00 B5 00 B4 00 B5 00 B4 B5 00 00 B4 B5 37 00 B4 B5 B6 00 B4 B5 B6 B4 00 00 00 B4 00 00 39 B4 00 00 B5 B4 00 00 B5 B4 00 B5 00 B4 00 B5 3B B4 00 B5 B6 B4 00 B5 B6 B4 B5 00 00 B4 B5 00 3D B4 B5 00 B6 B4 B5 00 B6 B4 B5 B6 00 B4 B5 B6 3F B4 B5 B6 B7 B4 B5 B6 B7 00 00 00 F0 00 00 00 F0 00 00 00 00 00 00 00 42 00 00 F0 00 00 00 F0 43 00 00 F0 F1 00 00 F0 F1 00 F0 00 00 00 F0 00 45 00 F0 00 F1 00 F0 00 F1 00 F0 F1 00 00 F0 F1 47 00 F0 F1 F2 00 F0 F1 F2 F0 00 00 00 F0 00 00 49 F0 00 00 F1 F0 00 00 F1 F0 00 F1 00 F0 00 F1 4B F0 00 F1 F2 F0 00 F1 F2 F0 F1 00 00 F0 F1 00 4D F0 F1 00 F2 F0 F1 00 F2 F0 F1 F2 00 F0 F1 F2 4F F0 F1 F2 F3 F0 F1 F2 F3 00 00 00 FC 00 00 00 FC 00 00 00 00 00 00 00 52 00 00 FC 00 00 00 FC 53 00 00 FC FD 00 00 FC FD 00 FC 00 00 00 FC 00 55 00 FC 00 FD 00 FC 00 FD 00 FC FD 00 00 FC FD 57 00 FC FD FE 00 FC FD FE FC 00 00 00 FC 00 00 59 FC 00 00 FD FC 00 00 FD FC 00 FD 00 FC 00 FD 5B FC 00 FD FE FC 00 FD FE FC FD 00 00 FC FD 00 5D FC FD 00 FE FC FD 00 FE FC (…)
    [all...]
  /external/llvm/include/llvm/Support/
Process.h 104 static std::error_code SafelyCloseFileDescriptor(int FD);
124 static bool FileDescriptorIsDisplayed(int fd);
128 static bool FileDescriptorHasColors(int fd);
  /libcore/ojluni/src/main/native/
io_util.c 43 FD fd = GET_FD(this, fid); local
44 if (fd == -1) {
48 nread = (jint)IO_Read(fd, &ret, 1);
83 FD fd; local
107 fd = GET_FD(this, fid);
108 if (fd == -1) {
112 nread = (jint)IO_Read(fd, buf, len);
135 FD fd = GET_FD(this, fid) local
159 FD fd; local
    [all...]
io_util_md.h 32 #define FD jint
35 * Macros to set/get fd from the java.io.FileDescriptor. These
42 #define SET_FD(this, fd, fid) \
44 (*env)->SetIntField(env, (*env)->GetObjectField(env, (this), (fid)),IO_fd_fdID, (fd))
51 * Macros to set/get fd when inside java.io.FileDescriptor
68 #define SET_HANDLE(fd) return (jlong)-1
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafety.h 198 virtual void enterFunction(const FunctionDecl *FD) {}
201 virtual void leaveFunction(const FunctionDecl *FD) {}

Completed in 2868 milliseconds

1 23 4 5 6 7 8 91011>>