HomeSort by relevance Sort by last modified time
    Searched refs:File (Results 626 - 650 of 3205) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_task_helper.cc 3 // found in the LICENSE file.
36 base::File::Info FileInfoFromMTPFileEntry(const MtpFileEntry& file_entry) {
37 base::File::Info file_entry_info;
83 return HandleDeviceError(error_callback, base::File::FILE_ERROR_FAILED);
99 return HandleDeviceError(error_callback, base::File::FILE_ERROR_FAILED);
111 const base::File::Info& snapshot_file_info) {
115 base::File::FILE_ERROR_FAILED);
129 base::File::FILE_ERROR_FAILED);
165 base::File::FILE_ERROR_NOT_FOUND);
181 return HandleDeviceError(error_callback, base::File::FILE_ERROR_FAILED)
    [all...]
  /external/chromium_org/chrome/utility/media_galleries/
iapps_xml_utils.h 3 // found in the LICENSE file.
10 #include "base/files/file.h"
34 // Read in the contents of the given library xml |file| and return as a string.
35 std::string ReadFileAsString(base::File file);
  /external/chromium_org/net/base/
file_stream_unittest.cc 3 // found in the LICENSE file.
10 #include "base/files/file.h"
55 // FileStreamContexts must be asynchronously closed on the file task runner
74 int flags = base::File::FLAG_OPEN |
75 base::File::FLAG_READ |
76 base::File::FLAG_ASYNC;
92 int flags = base::File::FLAG_OPEN | base::File::FLAG_READ |
93 base::File::FLAG_ASYNC;
101 // File isn't actually closed yet
    [all...]
  /external/chromium_org/remoting/host/it2me/
it2me_native_messaging_host_main.cc 3 // found in the LICENSE file.
46 // looked up in the config file.
60 // Required to find the ICU data file, used by some file_util routines.
84 // redirected to a pipe or file.
85 base::File read_file(GetStdHandle(STD_INPUT_HANDLE));
86 base::File write_file(GetStdHandle(STD_OUTPUT_HANDLE));
95 // handles as soon as we retrieve the corresponding file handles.
100 base::File read_file(STDIN_FILENO);
101 base::File write_file(STDOUT_FILENO);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileList.cpp 37 File* FileList::item(unsigned index) const
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileEntrySync.cpp 35 #include "core/fileapi/File.h"
46 PassRefPtrWillBeRawPtr<File> FileEntrySync::file(ExceptionState& exceptionState) function in class:WebCore::FileEntrySync
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
report-include-statistics 32 use File::Find;
42 my $file = $_;
44 if ($file eq "icu") {
45 $File::Find::prune = 1;
49 if ($file !~ /^\./ && $file =~ /\.(h|cpp|c|mm|m)$/) {
50 $paths{$file} = $File::Find::name;
51 $sources{$file} = $File::Find::name if $file !~ /\.h/
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
copy_or_move_file_validator.h 3 // found in the LICENSE file.
9 #include "base/files/file.h"
23 // base::File::FILE_OK means the file validated.
24 typedef base::Callback<void(base::File::Error result)> ResultCallback;
28 // Called on a source file before copying or moving to the final
33 // Called on a destination file after copying or moving to the final
45 // in addition to |platform_path| because in the obfuscated file system
isolated_file_system_backend.cc 3 // found in the LICENSE file.
69 base::File::FILE_ERROR_SECURITY));
89 FileSystemType type, base::File::Error* error_code) {
91 *error_code = base::File::FILE_OK;
98 base::File::Error* error_code) const {
  /external/doclava/src/com/google/doclava/
JarUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
30 * Returns the jar file used to load class clazz, or defaultJar if clazz was not loaded from a
42 String JAR_URI_PREFIX = "jar:file:";
47 throw new IllegalStateException("Error loading jar file.", e);
55 * Copies a directory from a jar file to an external directory.
62 File dest = new File(destDir + "/" + entry.getName().substring(jarDir.length() + 1));
63 File parent = dest.getParentFile();
79 throw new IOException("Could not copy asset from jar file", e)
    [all...]
  /external/llvm/utils/
UpdateCMakeLists.pl 3 use File::Find;
4 use File::Copy;
22 my $file = $_;
23 my $dir = $File::Find::dir;
24 # Record if a CMake file was found.
25 if ($file eq "CMakeLists.txt") {
26 $dirCMake{$dir} = $File::Find::name;
29 # Grab the extension of the file.
30 $file =~ /\.([^.]+)$/;
38 push @$files, $file;
    [all...]
  /external/proguard/src/proguard/
LineWordReader.java 42 File baseDir) throws IOException
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricConfig.java 11 import java.io.File;
19 private final File androidManifestFile;
20 private final File resourceDirectory;
21 private final File assetsDirectory;
44 public RobolectricConfig(final File baseDir) {
45 this(new File(baseDir, "AndroidManifest.xml"), new File(baseDir, "res"), new File(baseDir, "assets"));
48 public RobolectricConfig(final File androidManifestFile, final File resourceDirectory)
    [all...]
  /external/smack/asmack-master/static-src/custom/org/jivesoftware/smack/
AndroidConnectionConfiguration.java 3 import java.io.File;
62 path = System.getProperty("java.home") + File.separator + "etc"
63 + File.separator + "security" + File.separator
  /external/smack/src/org/jivesoftware/smack/
AndroidConnectionConfiguration.java 3 import java.io.File;
62 path = System.getProperty("java.home") + File.separator + "etc"
63 + File.separator + "security" + File.separator
  /frameworks/compile/mclinker/include/mcld/Script/
InputToken.h 5 // This file is distributed under the University of Illinois Open Source
18 * \brief This class defines the interfaces to a file/namespec token.
26 File,
  /frameworks/testing/support/src/android/support/test/internal/runner/listener/
CoverageListener.java 5 * you may not use this file except in compliance with the License.
22 import java.io.File;
36 * identifies the path to the generated code coverage file.
39 // Default file name for code coverage
47 * @param customCoverageFilePath an optional user specified path for the coverage file
48 * If null, file will be generated in test app's file directory.
59 File.separator + DEFAULT_COVERAGE_FILE_NAME;
71 java.io.File coverageFile = new java.io.File(mCoverageFilePath)
    [all...]
  /frameworks/webview/chromium/tests/java/src/com/android/uiautomator/platform/
WebViewFlingTest.java 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
21 import java.io.File;
31 * file as the main file of the test page.
32 * 3) Build this test and push the resulting Jar file to /data/local/tmp/WebViewJankTests.jar
54 File webpage = new File(url);
101 private void runBrowserPageFling(File testFile) throws UiObjectNotFoundException, IOException {
102 loadUrl("file://" + testFile.getAbsolutePath());
  /libcore/luni/src/main/java/java/lang/
ProcessBuilder.java 2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
34 private File directory;
118 public File directory() {
131 public ProcessBuilder directory(File directory) {
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Package.java 5 * use this file except in compliance with the License. You may obtain a copy of
21 import java.io.File;
43 return COMMAND + " <src_filename> <dst_filename>: Package a file for distribution";
51 final File intermediateFile = File.createTempFile(PREFIX, SUFFIX);
73 return COMMAND + " <src_filename> <dst_filename>: Detects how a file is packaged and\n"
74 + "decrypts/uncompresses as necessary to produce a raw binary file.";
83 BinaryDictOffdeviceUtils.getRawDictionaryOrNull(new File(mArgs[0]));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportProjectWizard.java 5 * you may not use this file except in compliance with the License.
32 import java.io.File;
74 File file = new File(AdtPlugin.getOsSdkFolder(), OS_SDK_TOOLS_LIB_FOLDER + File.separator local
76 if (!file.exists()) {
80 + "first. (Could not find %1$s)", file.getPath()));
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkEnvSupplier.java 5 * you may not use this file except in compliance with the License.
25 import java.io.File;
55 File bin = new File("C:\\MinGW\\msys\\1.0\\bin"); //$NON-NLS-1$
60 bin = new File("C:\\cygwin\\bin"); //$NON-NLS-1$
  /cts/tests/tests/os/src/android/os/cts/
FileObserverTest.java 5 * you may not use this file except in compliance with the License.
22 import java.io.File;
30 private File mTestFile;
31 private File mTestDir;
32 private File mMoveDestFile;
44 File dir = getContext().getFilesDir();
45 mTestFile = new File(dir, TEST_FILE);
47 mTestDir = new File(dir, TEST_DIR);
80 * 1. Observe a dir, when it's child file have been written and closed,
82 * 2. While stop observer a dir, observer should't get any event while delete it's child file
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
PrintStreamPrinterTest.java 5 * you may not use this file except in compliance with the License.
20 import java.io.File;
31 private File mFile;
35 mFile = new File(getContext().getFilesDir(), "PrintStreamPrinter.log");
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CtsApiCoverage.java 5 * you may not use this file except in compliance with the License.
24 import java.io.File;
58 System.out.println(" -o FILE output file or standard out if not given");
61 System.out.println(" -a PATH path to the API XML file");
69 List<File> testApks = new ArrayList<File>();
70 File outputFile = null;
81 outputFile = new File(getExpectedArg(args, ++i));
105 testApks.add(new File(args[i]))
    [all...]

Completed in 1597 milliseconds

<<21222324252627282930>>