/libcore/ojluni/src/main/native/ |
FileInputStream.c | 53 jfieldID fis_fd; /* id for jobject 'fd' in java.io.FileInputStream */ 62 fis_fd = (*env)->GetFieldID(env, clazz, "fd", "Ljava/io/FileDescriptor;"); 74 FD fd = GET_FD(this, fis_fd); local 75 if (fd == -1) { 79 if ((cur = IO_Lseek(fd, (jlong)0, (jint)SEEK_CUR)) == -1) { 85 } else if ((end = IO_Lseek(fd, toSkip, (jint)SEEK_CUR)) == -1) { 91 static int available(int fd, jlong *bytes) { 98 if (ioctl(fd, FIONREAD, &n) != -1) { 106 // FIONREAD is specified to return ENOTTY when fd refers to a fil 120 FD fd = GET_FD(this, fis_fd); local [all...] |
io_util_md.c | 69 FD fd; local 77 fd = JVM_Open(ps, flags, 0666); 78 if (fd >= 0) { 83 fstat(fd, &stat); 86 close(fd); 91 SET_FD(this, fd, fid); 104 FD fd = GET_FD(this, fid); local 105 if (fd == -1) [all...] |
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/ |
dataurl-nonbase64-singlequotes.css | 6 background-image:url('data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%00%0C%00%00%00%0E%08%03%00%00%00%2Cc%0D%DE%00%00%00%A2PLTEQQQ%FA%FA%FA%FC%FC%FC%EE%EE%EE%A9%A9%A9%E9%E9%E9%0A%0A%0A%0D%0D%0D444PPP%CD%CD%CD%CC%CC%CC%F5%F5%F5UUU%D0%D0%D0\'\'\'%F9%F9%F9%A6%A6%A6%40%40%40FFF%A0%A0%A0%89%89%89%8D%8D%8D%20%20%20%14%14%14%DA%DA%DA%B6%B6%B6%02%02%02%87%87%87%81%81%81%AC%AC%AC%0E%0E%0E111%7D%7D%7D%92%92%92333%B9%B9%B9%BC%BC%BChhh)))%E1%E1%E1%03%03%03%CB%CB%CB%EB%EB%EB%FD%FD%FD%A3%A3%A3(((%04%04%04%CA%CA%CAttt%2C%2C%2C%F4%F4%F4%00%00%00%FF%FF%FF%D6%DE%02%C3%00%00%006tRNS%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%00%A1%8FN1%00%00%00iIDAT%08%D7E%C7E%16%02Q%10%C5%D0j%C3%DD%BDqw%5E%F6%BF5%06%D4%3Fd%94kx%BDf%DE6%FFIA%AB%C8qYj%1F%E3Xk%93%E0%C8JZ%10%90%9E%3A1%60%BBY%85%A8%AE%14%C0%5E%1A6%8E%C5w%02%60%99%C9%FA%9A%03%60%8C%EFz%8C%CE%0EnSu%3F%01%AD%B2%06%04%F0%3CT%FF%B8nk%3F%7C%01%C5z%1B%F9%26%2F%3Az%00%00%00%00IEND%AEB%60%82');
|
/external/clang/lib/CodeGen/ |
CodeGenFunction.cpp | 434 static void GenOpenCLArgMetadata(const FunctionDecl *FD, llvm::Function *Fn, 469 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) { 470 const ParmVarDecl *parm = FD->getParamDecl(i); 574 void CodeGenFunction::EmitOpenCLKernelMetadata(const FunctionDecl *FD, 577 if (!FD->hasAttr<OpenCLKernelAttr>()) 585 GenOpenCLArgMetadata(FD, Fn, CGM, Context, kernelMDArgs, Builder, 588 if (const VecTypeHintAttr *A = FD->getAttr<VecTypeHintAttr>()) { 604 if (const WorkGroupSizeHintAttr *A = FD->getAttr<WorkGroupSizeHintAttr>()) { 613 if (const ReqdWorkGroupSizeAttr *A = FD->getAttr<ReqdWorkGroupSizeAttr>()) { 631 if (auto *FD = dyn_cast_or_null<FunctionDecl>(F) [all...] |
ModuleBuilder.cpp | 85 if (auto FD = dyn_cast<FunctionDecl>(D)) { 86 if (FD->hasBody(FD)) 87 return FD;
|
/external/valgrind/none/tests/mips32/ |
MoveIns.c | 100 // mov.s fd, fs 101 #define TESTINSNMOVE1s(instruction, offset, FD, FS) \ 109 "mov.s %0, $" #FD"\n\t" \ 110 "mfc1 %1, $" #FD"\n\t" \ 119 // mov.d fd, fs 120 #define TESTINSNMOVE1d(instruction, offset, FD, FS) \ 128 "mov.d %0, $" #FD"\n\t" \ 129 "mfc1 %1, $" #FD"\n\t" \ 160 // movf.s fd, fs 161 #define TESTINSNMOVE2s(instruction, FD, FS, cc, offset) [all...] |
/external/clang/lib/Sema/ |
SemaDecl.cpp | [all...] |
/external/clang/tools/libclang/ |
IndexDecl.cpp | 44 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 45 for (auto PI : FD->params()) { 297 FunctionDecl *FD = D->getTemplatedDecl(); 298 handleDeclarator(FD, D); 299 if (FD->isThisDeclarationADefinition()) { 300 const Stmt *Body = FD->getBody(); 302 IndexCtx.indexBody(Body, D, FD);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
MallocChecker.cpp | 262 bool isMemFunction(const FunctionDecl *FD, ASTContext &C) const; 263 bool isCMemFunction(const FunctionDecl *FD, 267 bool isStandardNewDelete(const FunctionDecl *FD, ASTContext &C) const; 548 bool MallocChecker::isMemFunction(const FunctionDecl *FD, ASTContext &C) const { 549 if (isCMemFunction(FD, C, AF_Malloc, MemoryOperationKind::MOK_Any)) 552 if (isCMemFunction(FD, C, AF_IfNameIndex, MemoryOperationKind::MOK_Any)) 555 if (isCMemFunction(FD, C, AF_Alloca, MemoryOperationKind::MOK_Any)) 558 if (isStandardNewDelete(FD, C)) 564 bool MallocChecker::isCMemFunction(const FunctionDecl *FD, 568 if (!FD) [all...] |
ObjCContainersASTChecker.cpp | 87 const FunctionDecl *FD = CE->getDirectCallee(); 88 if (!FD) 91 IdentifierInfo *II = FD->getIdentifier();
|
ObjCUnusedIVarsChecker.cpp | 100 if (const auto *FD = dyn_cast<FunctionDecl>(I)) { 101 SourceLocation L = FD->getLocStart(); 103 Scan(M, FD->getBody());
|
VforkChecker.cpp | 84 auto FD = dyn_cast_or_null<FunctionDecl>(D); 85 if (!FD || !C.isCLibraryFunction(FD)) 93 return FD->getIdentifier() == II_vfork;
|
/external/llvm/unittests/Support/ |
SpecialCaseListTest.cpp | 36 int FD; 38 sys::fs::createTemporaryFile("SpecialCaseListTest", "temp", FD, Path); 39 raw_fd_ostream OF(FD, true, true);
|
/frameworks/compile/slang/ |
slang_rs_special_kernel_param.cpp | 93 // FD->getNumParams() if none are found. 99 const clang::FunctionDecl *FD, 111 size_t NumParams = FD->getNumParams(); 115 const clang::ParmVarDecl *PVD = FD->getParamDecl(i);
|
slang_rs_object_ref_count.cpp | 55 clang::FunctionDecl *FD = static_cast<clang::FunctionDecl*>(*I); 60 if (FD->getName() == "rsSetObject") { 61 slangAssert((FD->getNumParams() == 2) && 64 } else if (FD->getName() == "rsClearObject") { 65 slangAssert((FD->getNumParams() == 1) && 72 const clang::ParmVarDecl *PVD = FD->getParamDecl(0); 78 // The rs object type passed to the FD 85 RSObjectFD[DT] = FD; 525 const clang::FieldDecl *FD = *FI; 526 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); [all...] |
slang_backend.h | 111 void AnnotateFunction(clang::FunctionDecl *FD); 120 // of FD to lower-level runtime calls to rsForEachInternal(), if FD is not a 124 void LowerRSForEachCall(clang::FunctionDecl* FD, bool isKernel);
|
/external/llvm/include/llvm/Support/ |
MemoryBuffer.h | 79 getOpenFileSlice(int FD, const Twine &Filename, uint64_t MapSize, 89 getOpenFile(int FD, const Twine &Filename, uint64_t FileSize,
|
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineCXX.cpp | 436 FunctionDecl *FD = CNE->getOperatorNew(); 439 if (FD && !isa<CXXMethodDecl>(FD) && !FD->isVariadic()) { 440 if (FD->getNumParams() == 2) { 441 QualType T = FD->getParamDecl(1)->getType(); 448 IsStandardGlobalOpNewFunction = (FD->getNumParams() == 1); 479 if (FD) { 480 QualType Ty = FD->getType(); 506 if (FD && FD->isReservedGlobalPlacementOperator()) [all...] |
/external/clang/lib/AST/ |
RecordLayoutBuilder.cpp | 80 uint64_t getExternalFieldOffset(const FieldDecl *FD) { 81 assert(FieldOffsets.count(FD) && 83 return FieldOffsets[FD]; 133 void UpdateEmptyFieldSubobjects(const FieldDecl *FD, CharUnits Offset); 160 bool CanPlaceFieldSubobjectAtOffset(const FieldDecl *FD, 183 bool CanPlaceFieldAtOffset(const FieldDecl *FD, CharUnits Offset); 206 for (const FieldDecl *FD : Class->fields()) { 208 Context.getBaseElementType(FD->getType())->getAs<RecordType>(); 429 EmptySubobjectMap::CanPlaceFieldSubobjectAtOffset(const FieldDecl *FD, 436 QualType T = FD->getType() [all...] |
/external/clang/lib/Serialization/ |
ASTReaderDecl.cpp | 280 void VisitFunctionDecl(FunctionDecl *FD); 285 void VisitFieldDecl(FieldDecl *FD); 286 void VisitMSPropertyDecl(MSPropertyDecl *FD); 287 void VisitIndirectFieldDecl(IndirectFieldDecl *FD); 450 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 452 // We only read it if FD doesn't already have a body (e.g., from another 456 if (auto *CD = dyn_cast<CXXConstructorDecl>(FD)) { 462 Reader.PendingBodies[FD] = GetCurrentCursorOffset(); 699 void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) { 700 RedeclarableResult Redecl = VisitRedeclarable(FD); [all...] |
/external/clang/include/clang/CodeGen/ |
CodeGenABITypes.h | 65 const FunctionDecl *FD);
|
/external/clang/lib/Analysis/ |
CallGraph.cpp | 116 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 119 if (FD->isDependentContext()) 122 IdentifierInfo *II = FD->getIdentifier(); 200 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(FD))
|
/prebuilts/gdb/darwin-x86/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...] |
/prebuilts/gdb/linux-x86/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...] |
/prebuilts/python/darwin-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...] |