/external/chromium/chrome/browser/sync/engine/ |
syncer_util.cc | 31 using syncable::Directory; 70 trans->directory()->GetUnsyncedMetaHandles(trans, handles); 81 syncable::Directory::ChildHandles* children) { 92 trans->directory()->GetChildHandles(trans, old_id, children); 93 Directory::ChildHandles::iterator i = children->begin(); 125 syncable::Directory::ChildHandles children; 138 const std::string& client_id = trans->directory()->cache_guid(); 263 // A note on non-directory parents: 280 Directory::ChildHandles handles; 281 trans->directory()->GetChildHandles(trans, id, &handles) [all...] |
conflict_resolver.cc | 21 using syncable::Directory; 123 Directory::ChildHandles children; 124 trans->directory()->GetChildHandles(trans, 128 VLOG(1) << "Entry is a server deleted directory with local contents, " 226 // We're trying to commit into a directory tree that's been deleted. To 227 // solve this we recreate the directory tree. 247 VLOG(1) << "Giving directory a new id so we can undelete it " << parent; 250 trans->directory()->NextId()); 272 // We've deleted a directory tree that's got contents on the server. We 273 // recreate the directory to solve the problem [all...] |
/ndk/build/core/ |
setup-toolchain.mk | 52 # setup sysroot-related variables. The SYSROOT point to a directory 98 # compute NDK_APP_DST_DIR as the destination directory for the generated files 133 $(hide) echo "directory $(call host-path,$(call remove-duplicates,$(PRIVATE_SRC_DIRS)))" >> $(PRIVATE_DST)
|
init.mk | 188 # The directory separator used on this host 376 $(call __ndk_info,Please define NDK_PLATFORMS_ROOT to point to a valid directory.)\ 378 $(call __ndk_info,Please run build/tools/build-platforms.sh to build the corresponding directory.)\ 383 $(call ndk_log,Found platform root directory: $(NDK_PLATFORMS_ROOT)) 386 $(call __ndk_info,Your NDK_PLATFORMS_ROOT points to an invalid directory)
|
/build/ |
envsetup.sh | 4 - croot: Changes directory to the top of the tree. 6 - mm: Builds all of the modules in the current directory. 11 - godir: Go to the directory containing a file. 33 make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-abs-$1) 45 make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-$1 319 # The product name is the name of the directory containing 536 # that we record the true directory name and not one that is 602 echo "Couldn't locate a makefile from the current directory."
|
/packages/apps/Contacts/src/com/android/contacts/vcard/ |
ImportVCardActivity.java | 212 * Caches given vCard files into a local directory, and sends actual import request to 668 private void getVCardFileRecursively(File directory) 674 // e.g. secured directory may return null toward listFiles(). 675 final File[] files = directory.listFiles(); 677 final String currentDirectoryPath = directory.getCanonicalPath(); 681 Log.w(LOG_TAG, "listFiles() returned null (directory: " + directory + ")"); 685 for (File file : directory.listFiles()) { [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
Utility.java | 571 * Creates a new empty file with a unique name in the given directory by appending a hyphen and 576 public static File createUniqueFile(File directory, String filename) throws IOException { 577 return createUniqueFileInternal(NewFileCreator.DEFAULT, directory, filename); 581 File directory, String filename) throws IOException { 582 File file = new File(directory, filename); 598 file = new File(directory, String.format(format, i)); [all...] |
/external/elfutils/tests/ |
run-show-die-info.sh | 35 directory : /home/drepper/gnu/new-bu/build/ttt 59 directory : /home/drepper/gnu/new-bu/build/ttt 83 directory : /home/drepper/gnu/new-bu/build/ttt 133 directory : /shoggoth/drepper 920 directory : /shoggoth/drepper [all...] |
/external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/ |
tst_qwebplugindatabase.cpp | 133 QDir directory(directories.at(i)); 134 if (!directory.exists() || !directory.count())
|
/external/chromium/third_party/libjingle/source/talk/ |
main.scons | 24 # If the name is the name of a directory then that directory shall contain a 25 # .scons file with the same name as the directory itself: 26 # Ex: The directory session/phone contains a file called phone.scons
|
/external/libpng/scripts/ |
makevms.com | 7 $! the programs from the contrib directory instead of libpng.
|
/external/libvpx/build/make/ |
Makefile | 18 $(MAKE) --no-print-directory target=$$t $(MAKECMDGOALS) || exit $$?;\ 36 $(MAKE) --no-print-directory target=$$t $(MAKECMDGOALS) || exit $$?;\
|
/external/valgrind/main/perf/ |
vg_perf | 63 [Valgrind in the current directory] 85 # Starting directory 319 # Test one directory (and any subdirs) 335 # Nb: Don't prepend a '/' to the base directory 386 die "`$f' neither a directory nor a readable test file/name\n"
|
vg_perf.in | 63 [Valgrind in the current directory] 85 # Starting directory 319 # Test one directory (and any subdirs) 335 # Nb: Don't prepend a '/' to the base directory 386 die "`$f' neither a directory nor a readable test file/name\n"
|
/external/webkit/LayoutTests/fast/url/script-tests/ |
path.js | 24 // directory names.
|
/external/webkit/Source/WebCore/platform/network/ |
FormData.cpp | 325 String directory = directoryName(e.m_generatedFilename); local 327 deleteEmptyDirectory(directory);
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
rebaselineserver.py | 30 results directory), provides comparisons of expected and actual results (both 359 def platform_from_directory(self, directory): 360 return self._platforms_by_directory[directory] 392 argument_names = "/path/to/results/directory"
|
/frameworks/support/v4/ |
Android.mk | 88 # Include this library in the build server's output directory
|
/libcore/luni/src/main/java/java/io/ |
File.java | 36 * pathname. The pathname may be absolute (relative to the root directory 37 * of the file system) or relative to the current directory in which the program 41 * also, despite the name {@code File}, be a directory or other non-regular 99 * slashes (except for the special case of the root directory). This 114 * Constructs a new file using the specified directory and name. 117 * the directory where the file is stored. 138 * Constructs a new File using the specified directory path and file name, 142 * the path to the directory where the file is stored. 372 * child must have the same working directory as its parent. 437 * Returns the name of the file or directory represented by this file [all...] |
/libcore/luni/src/main/java/libcore/net/http/ |
HttpResponseCache.java | 57 * Cache responses in a directory on the file system. Most clients should use 77 public HttpResponseCache(File directory, long maxSize) throws IOException { 78 cache = DiskLruCache.open(directory, VERSION, ENTRY_COUNT, maxSize);
|
/ndk/ |
ndk-gdb | 24 # need to launch ndk-gdb from your application project directory 97 # We use mixed mode (i.e. / as the directory separator) because 363 echo "ERROR: Your --project option does not point to a directory!" 372 # Assume we are in the project directory 386 echo "ERROR: Launch this script from an application project directory, or use --project=<path>." 527 log "Using app out directory: $APP_OUT" 532 echo "ERROR: Could not extract package's data directory. Are you sure that" 536 log "Found data directory: '$DATA_DIR'"
|
/ndk/toolchains/x86-4.4.3/ |
setup.mk | 63 # The ABI-specific sub-directory that the SDK tools recognize for
|
/external/webkit/Tools/Scripts/ |
old-run-webkit-tests | 37 # If no tests are passed, find all the .html, .shtml, .xml, .xhtml, .xhtmlmp, .pl, .php (and svg) files in the test directory. 279 --add-platform-exceptions Put new results for non-platform-specific failing tests into the platform-specific results directory 280 --additional-platform-directory path/to/directory 281 Look in the specified directory before looking in any of the default platform-specific directories 303 -o|--results-directory Output results directory (default: $testResultsDirectory) 330 'additional-platform-directory=s' => \@additionalPlatformDirectories, 354 'results-directory|o=s' => \$testResultsDirectory, [all...] |
/build/core/ |
envsetup.mk | 97 # This is the standard way to name a directory containing prebuilt host 141 # Move the host or target under the debug/ directory
|
/cts/libs/vogar-expect/src/vogar/commands/ |
Command.java | 95 processBuilder.directory(workingDirectory); 261 * Sets the working directory from which the command will be executed. 262 * This must be a <strong>local</strong> directory; Commands run on 264 * directory.
|