HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 26 - 50 of 1323) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
workspace_mock.py 31 def find_unused_filename(self, directory, name, extension, search_limit=10):
32 return "%s/%s.%s" % (directory, name, extension)
  /external/chromium_org/third_party/WebKit/public/web/
WebFileChooserParams.h 43 // If |directory| is true, the dialog allows the user to select a directory.
44 bool directory; member in struct:blink::WebFileChooserParams
77 , directory(false)
  /frameworks/base/core/tests/overlaytests/
Android.mk 1 # Dummy makefile to halt recursive directory traversal.
  /external/chromium_org/sync/syncable/
syncable_base_transaction.cc 8 #include "sync/syncable/directory.h"
18 Directory* BaseTransaction::directory() const { function in class:syncer::syncable::BaseTransaction
41 // Note: We dont call the Directory's OnUnrecoverableError method right
45 directory()->ReportUnrecoverableError();
54 directory()->OnUnrecoverableError(this,
63 Directory* directory)
65 directory_(directory), unrecoverable_error_set_(false) {
66 // TODO(lipalani): Don't issue a good transaction if the directory ha
    [all...]
syncable_write_transaction.h 21 WriterTag writer, Directory* directory);
29 Directory* directory, int64* transaction_version);
  /external/chromium_org/third_party/skia/tools/
git-sync-deps 18 will use the file ../DEPS relative to this script's directory.
58 def git_repository_sync_is_disabled(git, directory):
61 [git, 'config', 'sync-deps.disable'], cwd=directory)
67 def is_git_toplevel(git, directory):
68 """Return true iff the directory is the top level of a Git repository.
73 directory (string) the path into which the repository
78 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
79 return os.path.realpath(directory) == os.path.realpath(toplevel)
84 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
96 directory (string) the path into which the repositor
    [all...]
  /external/chromium_org/third_party/webrtc/build/
version.py 24 def popen_cmd_and_get_output(cmd, directory):
30 cwd=directory,
50 directory = os.path.dirname(sys.argv[0]);
51 version = popen_cmd_and_get_output(['git', 'svn', 'info'], directory)
53 version = popen_cmd_and_get_output(['svn', 'info'], directory)
  /external/skia/tools/
git-sync-deps 18 will use the file ../DEPS relative to this script's directory.
58 def git_repository_sync_is_disabled(git, directory):
61 [git, 'config', 'sync-deps.disable'], cwd=directory)
67 def is_git_toplevel(git, directory):
68 """Return true iff the directory is the top level of a Git repository.
73 directory (string) the path into which the repository
78 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
79 return os.path.realpath(directory) == os.path.realpath(toplevel)
84 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
96 directory (string) the path into which the repositor
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
FileUtil.java 28 * Deletes the given directory and all it's contents, including
31 * @param directory The directory to delete.
34 public static boolean deleteDirectoryRecursively(File directory) {
35 if (!directory.exists() || !directory.isDirectory()) {
39 for (File entry : directory.listFiles()) {
47 return directory.delete();
  /external/javassist/src/main/javassist/
URLClassPath.java 31 protected String directory; field in class:URLClassPath
47 * <code>port</code> is 80, and <code>directory</code> is "/java/classes/".
54 * @param directory directory name ending with "/".
55 * It can be "/" (root directory).
60 String directory, String packageName) {
63 this.directory = directory;
68 return hostname + ":" + port + directory;
89 = directory + classname.replace('.', '/') + ".class"
    [all...]
  /libcore/luni/src/main/java/java/lang/
ProcessBuilder.java 34 private File directory; field in class:ProcessBuilder
112 * Returns the working directory of this process builder. If {@code null} is
113 * returned, then the working directory of the Java process is used when a
116 * @return the current working directory, may be {@code null}.
118 public File directory() { method in class:ProcessBuilder
119 return directory;
123 * Changes the working directory of this process builder. If the specified
124 * directory is {@code null}, then the working directory of the Java
127 * @param directory
131 public ProcessBuilder directory(File directory) { method in class:ProcessBuilder
    [all...]
  /external/chromium_org/sync/engine/
apply_control_data_updates_unittest.cc 15 #include "sync/syncable/directory.h"
42 entry_factory_.reset(new TestEntryFactory(directory()));
49 syncable::Directory* directory() { function in class:syncer::ApplyControlDataUpdatesTest
50 return dir_maker_.directory();
56 base::MessageLoop loop_; // Needed for directory init.
72 syncable::ReadTransaction trans(FROM_HERE, directory());
73 cryptographer = directory()->GetCryptographer(&trans);
74 EXPECT_TRUE(directory()->GetNigoriHandler()->GetEncryptedTypes(&trans)
91 ApplyControlDataUpdates(directory());
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityTest.java 105 final File directory =
109 Utility.createUniqueFileInternal(getCountdownFileCreator(), directory, "file");
114 Utility.createUniqueFileInternal(getTrueFileCreator(), directory, "file");
119 Utility.createUniqueFileInternal(getCountdownFileCreator(), directory, "file.ext");
124 Utility.createUniqueFileInternal(getTrueFileCreator(), directory, "file.ext");
131 final File directory =
135 Utility.createUniqueFileInternal(getTrueFileCreator(), directory, "file%s");
139 Utility.createUniqueFileInternal(getTrueFileCreator(), directory, "file%s.ext");
145 final File directory =
149 Utility.createUniqueFileInternal(getTrueFileCreator(), directory, "file")
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
DirectoryWalker.java 29 * Abstract class that walks through a directory hierarchy and provides
65 * protected boolean handleDirectory(File directory, int depth, Collection results) {
67 * if (".svn".equals(directory.getName())) {
68 * directory.delete();
119 * // Combine the directory and file filters using an OR condition
226 * protected boolean handleDirectory(File directory, int depth, Collection results) throws IOException {
227 * // cancel if hidden directory
228 * if (directory.isHidden()) {
258 * The limit on the directory depth to walk.
287 * Construct an instance with a directory and a file filter and an optiona
    [all...]
  /external/chromium_org/sync/test/engine/
test_directory_setter_upper.cc 11 #include "sync/syncable/directory.h"
31 new syncable::Directory(
49 new syncable::Directory(directory_store,
59 if (!directory()->good())
63 directory()->SaveChanges();
65 directory()->SaveChanges();
72 syncable::ReadTransaction trans(FROM_HERE, directory());
74 // The TestUnrecoverableErrorHandler that this directory was constructed with
76 directory()->FullyCheckTreeInvariants(&trans);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
VersionNumberStripper.java 18 * A class that strips version numbers off built plugin directory names. This
25 //the directory containing the directories and files from which to remove version information
26 private String directory; field in class:VersionNumberStripper
32 public void setDirectory(String dir){directory=dir;}
34 public String getDirectory(){return directory;}
37 setDirectory(directory);
51 File file=new File(directory);
  /external/chromium_org/sync/internal_api/
read_transaction.cc 7 #include "sync/syncable/directory.h"
20 share->directory.get());
40 return transaction_->directory()->GetTransactionVersion(type);
46 return transaction_->directory()->GetDataTypeContext(
  /external/chromium_org/sync/internal_api/test/
sync_manager_for_profile_sync_test.cc 9 #include "sync/syncable/directory.h"
23 syncable::Directory* directory = user_share->directory.get(); local
33 if (!directory->InitialSyncEndedForType(it.Get())) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
check-dom-results 44 my @suites = ( {"name" => "DOM Level 1 Core (html)", "directory" => "dom/html/level1/core"},
45 {"name" => "DOM Level 2 Core (html)", "directory" => "dom/html/level2/core"},
46 {"name" => "DOM Level 2 Events (html)", "directory" => "dom/html/level2/events"},
47 {"name" => "DOM Level 2 HTML (html)", "directory" => "dom/html/level2/html"},
48 {"name" => "DOM Level 1 Core (xhtml)", "directory" => "dom/xhtml/level1/core"},
49 {"name" => "DOM Level 2 Core (xhtml)", "directory" => "dom/xhtml/level2/core"},
50 {"name" => "DOM Level 2 Events (xhtml)", "directory" => "dom/xhtml/level2/events"},
51 {"name" => "DOM Level 2 HTML (xhtml)", "directory" => "dom/xhtml/level2/html"},
52 {"name" => "DOM Level 3 Core (xhtml)", "directory" => "dom/xhtml/level3/core"},
53 {"name" => "DOM Level 3 XPath (svg)", "directory" => "dom/svg/level3/xpath"})
    [all...]
  /development/tools/line_endings/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /external/chromium_org/third_party/libjingle/source/talk/build/
common.gypi 43 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-6-sun\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
  /external/conscrypt/src/main/java/org/conscrypt/
FileClientSessionCache.java 36 * underlying directory at a time.
57 /** Directory to store session files in. */
58 final File directory; field in class:FileClientSessionCache.Impl
75 * Constructs a new cache backed by the given directory.
77 Impl(File directory) throws IOException {
78 boolean exists = directory.exists();
79 if (exists && !directory.isDirectory()) {
80 throw new IOException(directory + " exists but is not a directory.");
90 initialFiles = directory.list()
    [all...]
  /external/lldb/scripts/
install-lldb.sh 5 # directory into the developer folder specified.
12 echo This script will install the files from a 'Debug' or 'Release' build directory into the developer folder specified.
47 echo BUILD_DIR path to LLDB.framework is not a directory: "$BUILD_DIR/LLDB.framework"
52 echo DEVELOPER_DIR must be a directory: "$DEVELOPER_DIR"
57 echo BUILD_DIR must be a directory: "$BUILD_DIR"
  /external/nanopb-c/tests/
Makefile 18 lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/nanopb.info
  /external/valgrind/main/none/tests/darwin/
access_extended.stderr.exp 4 no_such_file(F_OK) = 2 (No such file or directory)

Completed in 1515 milliseconds

12 3 4 5 6 7 8 91011>>