Home
last modified time | relevance | path

Searched refs:File (Results 1 – 25 of 4433) sorted by relevance

12345678910>>...178

/external/smali/util/src/test/java/org/jf/util/
DPathUtilTest.java33 import java.io.File;
39 File[] roots = File.listRoots(); in pathUtilTest1()
42File basePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar + "te… in pathUtilTest1()
43File relativePath = new File(roots[1] + "some" + File.separatorChar + "dir" + File.separatorChar +… in pathUtilTest1()
53 File[] roots = File.listRoots(); in pathUtilTest2()
55File basePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar + "te… in pathUtilTest2()
56File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar +… in pathUtilTest2()
68 File[] roots = File.listRoots(); in pathUtilTest3()
70File basePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar); in pathUtilTest3()
71File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar); in pathUtilTest3()
[all …]
/external/tcpdump/win32/prj/
DWinDump.dsp1 # Microsoft Developer Studio Project File - Name="WinDump" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
86 # Begin Source File
89 # End Source File
90 # Begin Source File
93 # End Source File
94 # Begin Source File
97 # End Source File
98 # Begin Source File
101 # End Source File
[all …]
/external/python/cpython2/PC/VC6/
Dpythoncore.dsp1 # Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
94 # Begin Source File
97 # End Source File
98 # Begin Source File
101 # End Source File
102 # Begin Source File
105 # End Source File
106 # Begin Source File
109 # End Source File
[all …]
/external/lzma/CPP/7zip/Bundles/SFXCon/
DSFXCon.dsp1 # Microsoft Developer Studio Project File - Name="SFXCon" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
89 # Begin Source File
92 # End Source File
93 # Begin Source File
96 # End Source File
97 # Begin Source File
101 # End Source File
102 # Begin Source File
105 # End Source File
[all …]
/external/lzma/CPP/7zip/Bundles/SFXWin/
DSFXWin.dsp1 # Microsoft Developer Studio Project File - Name="SFXWin" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
125 # Begin Source File
129 # End Source File
130 # Begin Source File
133 # End Source File
138 # Begin Source File
141 # End Source File
142 # Begin Source File
145 # End Source File
[all …]
/external/lzma/CPP/7zip/Bundles/Alone7z/
DAlone.dsp1 # Microsoft Developer Studio Project File - Name="Alone" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
145 # Begin Source File
148 # End Source File
149 # Begin Source File
152 # End Source File
153 # Begin Source File
156 # End Source File
157 # Begin Source File
160 # End Source File
[all …]
/external/lzma/CPP/7zip/Bundles/SFXSetup/
DSFXSetup.dsp1 # Microsoft Developer Studio Project File - Name="SFXSetup" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
125 # Begin Source File
128 # End Source File
129 # Begin Source File
133 # End Source File
134 # Begin Source File
137 # End Source File
146 # Begin Source File
149 # End Source File
[all …]
/external/lzma/CPP/7zip/Bundles/LzmaCon/
DLzmaCon.dsp1 # Microsoft Developer Studio Project File - Name="LzmaCon" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
88 # Begin Source File
92 # End Source File
93 # Begin Source File
96 # End Source File
101 # Begin Source File
104 # End Source File
105 # Begin Source File
108 # End Source File
[all …]
/external/clang/unittests/Lex/
DHeaderMapTest.cpp63 FileTy &File; member
66 FileMaker(FileTy &File) : File(File) {} in FileMaker()
69 assert(SI + S.size() + 1 <= sizeof(File.Bytes)); in addString()
70 std::copy(S.begin(), S.end(), File.Bytes + SI); in addString()
76 assert(!(File.Header.NumBuckets & (File.Header.NumBuckets - 1))); in addBucket()
77 unsigned I = Hash & (File.Header.NumBuckets - 1); in addBucket()
79 if (!File.Buckets[I].Key) { in addBucket()
80 File.Buckets[I].Key = Key; in addBucket()
81 File.Buckets[I].Prefix = Prefix; in addBucket()
82 File.Buckets[I].Suffix = Suffix; in addBucket()
[all …]
/external/libchrome/base/files/
Dfile_unittest.cc18 using base::File;
28 File file; in TEST()
30 EXPECT_EQ(base::File::FILE_ERROR_FAILED, file.error_details()); in TEST()
32 File file2(base::File::FILE_ERROR_TOO_MANY_OPENED); in TEST()
34 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, file2.error_details()); in TEST()
39 File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ); in TEST()
41 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, file.error_details()); in TEST()
42 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, base::File::GetLastFileError()); in TEST()
47 File file(file_path, base::File::FLAG_OPEN_ALWAYS | base::File::FLAG_READ); in TEST()
50 EXPECT_EQ(base::File::FILE_OK, file.error_details()); in TEST()
[all …]
Dfile.cc18 File::Info::Info() in Info()
24 File::Info::~Info() = default;
26 File::File() in File() function in base::File
33 File::File(const FilePath& path, uint32_t flags) in File() function in base::File
39 File::File(PlatformFile platform_file) : File(platform_file, false) {} in File() function in base::File
41 File::File(PlatformFile platform_file, bool async) in File() function in base::File
51 File::File(Error error_details) in File() function in base::File
57 File::File(File&& other) in File() function in base::File
64 File::~File() { in ~File()
69 File& File::operator=(File&& other) { in operator =()
[all …]
/external/google-breakpad/src/processor/
Dpathname_stripper_unittest.cc48 ASSERT_EQ(PathnameStripper::File("/dir/file"), "file"); in RunTests()
49 ASSERT_EQ(PathnameStripper::File("\\dir\\file"), "file"); in RunTests()
50 ASSERT_EQ(PathnameStripper::File("/dir\\file"), "file"); in RunTests()
51 ASSERT_EQ(PathnameStripper::File("\\dir/file"), "file"); in RunTests()
52 ASSERT_EQ(PathnameStripper::File("dir/file"), "file"); in RunTests()
53 ASSERT_EQ(PathnameStripper::File("dir\\file"), "file"); in RunTests()
54 ASSERT_EQ(PathnameStripper::File("dir/\\file"), "file"); in RunTests()
55 ASSERT_EQ(PathnameStripper::File("dir\\/file"), "file"); in RunTests()
56 ASSERT_EQ(PathnameStripper::File("file"), "file"); in RunTests()
57 ASSERT_EQ(PathnameStripper::File("dir/"), ""); in RunTests()
[all …]
/external/libchrome/mojo/public/cpp/base/
Dfile_error_mojom_traits.h14 struct EnumTraits<mojo_base::mojom::FileError, base::File::Error> {
15 static mojo_base::mojom::FileError ToMojom(base::File::Error error) {
17 case base::File::FILE_OK:
19 case base::File::FILE_ERROR_FAILED:
21 case base::File::FILE_ERROR_IN_USE:
23 case base::File::FILE_ERROR_EXISTS:
25 case base::File::FILE_ERROR_NOT_FOUND:
27 case base::File::FILE_ERROR_ACCESS_DENIED:
29 case base::File::FILE_ERROR_TOO_MANY_OPENED:
31 case base::File::FILE_ERROR_NO_MEMORY:
[all …]
/external/speex/win32/libspeexdsp/
Dlibspeexdsp.dsp1 # Microsoft Developer Studio Project File - Name="libspeexdsp" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
90 # Begin Source File
93 # End Source File
94 # Begin Source File
97 # End Source File
98 # Begin Source File
101 # End Source File
102 # Begin Source File
105 # End Source File
[all …]
Dlibspeexdsp_dynamic.dsp1 # Microsoft Developer Studio Project File - Name="libspeexdsp_dynamic" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
95 # Begin Source File
98 # End Source File
99 # Begin Source File
102 # End Source File
103 # Begin Source File
106 # End Source File
107 # Begin Source File
110 # End Source File
[all …]
/external/lzma/C/Util/SfxSetup/
DSfxSetup.dsp1 # Microsoft Developer Studio Project File - Name="SfxSetup" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
92 # Begin Source File
95 # End Source File
96 # Begin Source File
99 # End Source File
100 # Begin Source File
103 # End Source File
104 # Begin Source File
107 # End Source File
[all …]
/external/curl/projects/Windows/VC6/lib/
Dlibcurl.dsp1 # Microsoft Developer Studio Project File - Name="libcurl" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
731 # Begin Source File
734 # End Source File
735 # Begin Source File
738 # End Source File
739 # Begin Source File
742 # End Source File
743 # Begin Source File
746 # End Source File
[all …]
/external/lzma/C/Util/7z/
D7z.dsp1 # Microsoft Developer Studio Project File - Name="7z" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
89 # Begin Source File
92 # End Source File
93 # Begin Source File
96 # End Source File
97 # Begin Source File
100 # End Source File
101 # Begin Source File
104 # End Source File
[all …]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/io/
DFileMatchers.java8 import java.io.File;
15 public static Matcher<File> anExistingDirectory() { in anExistingDirectory()
19 public static Matcher<File> anExistingFileOrDirectory() { in anExistingFileOrDirectory()
23 public static Matcher<File> anExistingFile() { in anExistingFile()
27 public static Matcher<File> aReadableFile() { in aReadableFile()
31 public static Matcher<File> aWritableFile() { in aWritableFile()
35 public static Matcher<File> aFileWithSize(long size) { in aFileWithSize()
39 public static Matcher<File> aFileWithSize(final Matcher<Long> expected) { in aFileWithSize()
40 return new FeatureMatcher<File, Long>(expected, "A file with size", "size") { in aFileWithSize()
41 @Override protected Long featureValueOf(File actual) { return actual.length(); } in aFileWithSize()
[all …]
/external/llvm/lib/DebugInfo/PDB/Raw/
DPDBFileBuilder.cpp26 : File(llvm::make_unique<PDBFile>(std::move(PdbFileBuffer))) {} in PDBFileBuilder()
30 File->Allocator.Allocate(sizeof(PDBFile::SuperBlock), in setSuperBlock()
33 return File->setSuperBlock(SB); in setSuperBlock()
37 File->StreamSizes = S; in setStreamSizes()
41 File->DirectoryBlocks = D; in setDirectoryBlocks()
46 File->StreamMap = S; in setStreamMap()
50 if (File->StreamSizes.empty()) in generateSimpleStreamMap()
54 File->StreamMap.clear(); in generateSimpleStreamMap()
60 uint32_t TotalFileBlocks = File->getBlockCount(); in generateSimpleStreamMap()
63 ReservedBlocks.push_back(File->SB->BlockMapAddr); in generateSimpleStreamMap()
[all …]
/external/lzma/CPP/7zip/UI/Client7z/
DClient7z.dsp1 # Microsoft Developer Studio Project File - Name="Client7z" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
88 # Begin Source File
91 # End Source File
92 # Begin Source File
96 # End Source File
97 # Begin Source File
100 # End Source File
105 # Begin Source File
108 # End Source File
[all …]
/external/junit/src/main/java/org/junit/rules/
DTemporaryFolder.java3 import java.io.File;
32 private final File parentFolder;
33 private File folder;
39 public TemporaryFolder(File parentFolder) { in TemporaryFolder()
65 public File newFile(String fileName) throws IOException { in newFile()
66 File file = new File(getRoot(), fileName); in newFile()
77 public File newFile() throws IOException { in newFile()
78 return File.createTempFile("junit", null, getRoot()); in newFile()
85 public File newFolder(String folder) throws IOException { in newFolder()
93 public File newFolder(String... folderNames) throws IOException { in newFolder()
[all …]
/external/freetype/builds/windows/visualce/
Dfreetype.dsp1 # Microsoft Developer Studio Project File - Name="freetype" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
196 # Begin Source File
199 # End Source File
200 # Begin Source File
203 # End Source File
204 # Begin Source File
207 # End Source File
208 # Begin Source File
211 # End Source File
[all …]
/external/freetype/builds/windows/visualc/
Dfreetype.dsp1 # Microsoft Developer Studio Project File - Name="freetype" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
196 # Begin Source File
199 # End Source File
200 # Begin Source File
203 # End Source File
204 # Begin Source File
207 # End Source File
208 # Begin Source File
211 # End Source File
[all …]
/external/vogar/src/vogar/android/
DAndroidSdk.java20 import java.io.File;
56 private final File[] compilationClasspath;
62 public static Collection<File> defaultExpectations() { in defaultExpectations()
63 return Collections.singletonList(new File("libcore/expectations/knownfailures.txt")); in defaultExpectations()
80 File buildTool = new File(path.get(0)).getAbsoluteFile(); in createAndroidSdk()
88 File adb; in createAndroidSdk()
90 adb = new File(adbPath.get(0)); in createAndroidSdk()
107 File[] compilationClasspath; in createAndroidSdk()
118 File sdkRoot = buildToolsPathValid in createAndroidSdk()
121 File newestPlatform = getNewestPlatform(sdkRoot); in createAndroidSdk()
[all …]

12345678910>>...178