Home
last modified time | relevance | path

Searched refs:FileContents (Results 1 – 17 of 17) sorted by relevance

/external/llvm-project/compiler-rt/test/asan/TestCases/Linux/
Dnohugepage_test.cpp28 char FileContents[1 << 16]; variable
31 FileContents[0] = 0; in FileToString()
34 char *p = FileContents; in FileToString()
35 ssize_t size = sizeof(FileContents) - 1; in FileToString()
49 } while (size > 0 && res < sizeof(FileContents)); in FileToString()
51 FileContents[res] = 0; in FileToString()
57 char *s = strstr(FileContents, "2008fff7000-10007fff8000"); in ReadShadowRss()
/external/compiler-rt/test/asan/TestCases/Linux/
Dnohugepage_test.cc28 char FileContents[1 << 16]; variable
31 FileContents[0] = 0; in FileToString()
34 char *p = FileContents; in FileToString()
35 ssize_t size = sizeof(FileContents) - 1; in FileToString()
49 } while (size > 0 && res < sizeof(FileContents)); in FileToString()
51 FileContents[res] = 0; in FileToString()
57 char *s = strstr(FileContents, "2008fff7000-10007fff8000"); in ReadShadowRss()
/external/libiio/src/cmake/
DCheckCaseSensitiveFileSystem.cmake22 set(FileContents "") variable
24 file(READ "${CMAKE_BINARY_DIR}/${TMP_FILE_L}" FileContents)
32 if ("${FileContents}" STREQUAL "${TMP_FILE_CONTENTS}")
/external/llvm-project/clang/unittests/Rename/
DClangRenameTest.h55 tooling::FileContentMappings FileContents = {{HeaderName, HeaderContent}, in runClangRenameOnCode() local
68 FileContents)) in runClangRenameOnCode()
81 FileContents)) in runClangRenameOnCode()
/external/clang/unittests/AST/
DExternalASTSourceTest.cpp47 StringRef FileContents) { in testExternalASTSource() argument
53 "test.cc", MemoryBuffer::getMemBuffer(FileContents).release()); in testExternalASTSource()
/external/llvm-project/clang/unittests/AST/
DExternalASTSourceTest.cpp47 StringRef FileContents) { in testExternalASTSource() argument
53 "test.cc", MemoryBuffer::getMemBuffer(FileContents).release()); in testExternalASTSource()
DASTImporterTest.cpp5811 auto FileContents = in TEST_P() local
5813 FromSM.overrideFileContents(&FE, std::move(FileContents)); in TEST_P()
/external/llvm-project/llvm/lib/Object/
DIRSymtab.cpp350 static Expected<FileContents> upgrade(ArrayRef<BitcodeModule> BMs) { in upgrade()
351 FileContents FC; in upgrade()
381 Expected<FileContents> irsymtab::readBitcode(const BitcodeFileContents &BFC) { in readBitcode()
401 FileContents FC; in readBitcode()
DIRObjectFile.cpp147 Expected<irsymtab::FileContents> FCOrErr = irsymtab::readBitcode(*BFCOrErr); in readIRSymtab()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DIRSymtab.cpp346 static Expected<FileContents> upgrade(ArrayRef<BitcodeModule> BMs) { in upgrade()
347 FileContents FC; in upgrade()
377 Expected<FileContents> irsymtab::readBitcode(const BitcodeFileContents &BFC) { in readBitcode()
397 FileContents FC; in readBitcode()
DIRObjectFile.cpp146 Expected<irsymtab::FileContents> FCOrErr = irsymtab::readBitcode(*BFCOrErr); in readIRSymtab()
/external/llvm-project/llvm/tools/llvm-rc/
Dllvm-rc.cpp117 std::unique_ptr<MemoryBuffer> FileContents = std::move(*File); in main() local
118 StringRef Contents = FileContents->getBuffer(); in main()
/external/llvm-project/clang/lib/Format/
DSortJavaScriptImports.cpp123 FileContents(Env.getSourceManager().getBufferData(Env.getFileID())) {} in JavaScriptImportSorter()
211 StringRef FileContents; member in clang::format::JavaScriptImportSorter
238 return FileContents.substr(SM.getFileOffset(Begin), in getSourceText()
/external/clang/lib/Format/
DSortJavaScriptImports.cpp125 FileContents(Env.getSourceManager().getBufferData(Env.getFileID())) {} in JavaScriptImportSorter()
208 StringRef FileContents; member in clang::format::JavaScriptImportSorter
235 return FileContents.substr(SM.getFileOffset(Begin), in getSourceText()
/external/llvm-project/llvm/include/llvm/Object/
DIRSymtab.h363 struct FileContents { struct
369 Expected<FileContents> readBitcode(const BitcodeFileContents &BFC); argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DIRSymtab.h362 struct FileContents { struct
368 Expected<FileContents> readBitcode(const BitcodeFileContents &BFC); argument
/external/llvm-project/clang/unittests/Tooling/
DTransformerTest.cpp93 void appendToHeader(StringRef S) { FileContents[0].second += S; } in appendToHeader()
96 FileContents.emplace_back(std::string(Filename), std::string(Content)); in addFile()
105 FileContents)) { in rewrite()
159 FileContentMappings FileContents = {{"header.h", ""}}; member in __anon989986640111::ClangRefactoringTestBase