Searched refs:recursive (Results 76 - 100 of 276) sorted by relevance

1234567891011>>

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java475 * @param recursive Flag is qualifier and child nodes shall be rendered too
478 public String dumpNode(boolean recursive) argument
481 this.dumpNode(result, recursive, 0, 0);
698 * @param recursive Flag is qualifier and child nodes shall be rendered too
702 private void dumpNode(StringBuffer result, boolean recursive, int indent, int index) argument
762 if (recursive && hasQualifier())
778 qualifier.dumpNode(result, recursive, indent + 2, i + 1);
783 if (recursive && hasChildren())
794 child.dumpNode(result, recursive, indent + 1, i + 1);
/external/chromium_org/content/shell/renderer/test_runner/
H A Dweb_test_proxy.cc255 std::string DumpFramesAsMarkup(blink::WebFrame* frame, bool recursive) { argument
260 if (recursive) {
263 result.append(DumpFramesAsMarkup(child, recursive));
278 std::string DumpFramesAsText(blink::WebFrame* frame, bool recursive) { argument
283 if (recursive) {
286 result.append(DumpFramesAsText(child, recursive));
292 std::string DumpFramesAsPrintedText(blink::WebFrame* frame, bool recursive) { argument
302 if (recursive) {
305 result.append(DumpFramesAsPrintedText(child, recursive));
311 std::string DumpFrameScrollPosition(blink::WebFrame* frame, bool recursive) { argument
429 bool recursive = local
435 bool recursive = local
440 bool recursive = test_interfaces_->GetTestRunner() local
[all...]
/external/bison/
H A DGNUmakefile114 # targets, and one of them can cause a recursive target to be invoked.
117 AM_RECURSIVE_TARGETS ?= $(RECURSIVE_TARGETS:-recursive=) \
118 $(RECURSIVE_CLEAN_TARGETS:-recursive=) \
/external/bison/build-aux/
H A Dgnu-web-doc-update144 $GIT submodule update --recursive
156 $GIT submodule update --recursive
/external/chromium_org/base/files/
H A Dfile_util_win.cc49 bool DeleteFile(const FilePath& path, bool recursive) { argument
60 if (!recursive) {
85 if (!recursive)
137 bool recursive) {
173 if (recursive)
175 FileEnumerator traversal(from_path, recursive, traverse_type);
183 DCHECK(recursive || DirectoryExists(from_path));
189 if (recursive && DirectoryExists(to_path)) {
136 CopyDirectory(const FilePath& from_path, const FilePath& to_path, bool recursive) argument
H A Dfile_path_watcher_kqueue.h44 bool recursive,
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dfake_provided_file_system.h98 bool recursive,
102 bool recursive,
H A Dprovided_file_system_interface.h124 // Requests creating a directory. If |recursive| is passed, then all non
129 bool recursive,
138 // Requests deleting a directory. If |recursive| is passed and the entry is
142 bool recursive,
H A Dprovided_file_system.cc180 bool recursive,
188 recursive,
201 bool recursive,
206 event_router_, file_system_info_, entry_path, recursive, callback)));
178 CreateDirectory( const base::FilePath& directory_path, bool recursive, const storage::AsyncFileUtil::StatusCallback& callback) argument
199 DeleteEntry( const base::FilePath& entry_path, bool recursive, const storage::AsyncFileUtil::StatusCallback& callback) argument
/external/chromium_org/chrome/browser/extensions/api/bookmarks/
H A Dbookmark_api_helpers.cc112 bool recursive,
127 if (node->is_folder() && !node->empty() && !recursive) {
109 RemoveNode(BookmarkModel* model, ChromeBookmarkClient* client, int64 id, bool recursive, std::string* error) argument
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_system_operation.h40 bool recursive,
60 bool recursive,
/external/chromium_org/content/child/fileapi/
H A Dfile_system_dispatcher.h85 bool recursive,
95 bool recursive,
/external/chromium_org/ppapi/cpp/private/
H A Dflash_file.cc65 bool recursive) {
70 PP_FromBool(recursive));
63 DeleteFileOrDir(const InstanceHandle& instance, const std::string& path, bool recursive) argument
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_operation.h143 // Here is an example callback sequence of recursive copy. Suppose
235 // |recursive| is true, create parent directories as needed just like
239 bool recursive,
252 // For recursive case this internally creates new FileSystemOperations and
271 // For recursive case this internally creates new FileSystemOperations and
300 // Removes a file or directory at |path|. If |recursive| is true, remove
302 virtual void Remove(const FileSystemURL& path, bool recursive,
H A Dfile_system_operation_impl.h39 bool recursive,
58 virtual void Remove(const FileSystemURL& url, bool recursive,
134 bool recursive);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DThreadingPthreads.cpp113 MutexBase::MutexBase(bool recursive) argument
117 pthread_mutexattr_settype(&attr, recursive ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL);
155 // succeed or not for the non-recursive mutex. On Linux the two implementations
157 // non-recursive mutex.
163 // The Mutex class is not recursive, so the recursionCount should be
H A DThreadingPrimitives.h94 MutexBase(bool recursive);
/external/oprofile/libutil++/
H A Dfile_manip.cpp121 string const & filter, bool recursive)
125 recursive ? MATCH_ANY_ENTRY_RECURSION :
120 create_file_list(list<string> & file_list, string const & base_dir, string const & filter, bool recursive) argument
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_flash_file_message_filter.h63 bool recursive);
/external/chromium_org/native_client_sdk/src/tools/
H A Dgenhttpfs.py34 parser.add_option('-r', '--recursive',
59 if os.path.isdir(filename) and options.recursive:
/external/chromium_org/ppapi/proxy/
H A Dflash_file_resource.h38 PP_Bool recursive) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPageSerializerImpl.h84 bool recursive,
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dscopes.rb107 /* recursive rule scopes, from the book, final beta, p.150 */
137 /* recursive rule scopes, access bottom-most scope */
151 /* recursive rule scopes, access with negative index */
/external/chromium_org/tools/telemetry/
H A Dcloud_storage67 parser.add_argument('-r', '--recursive', action='store_true')
77 def GetFilesInPaths(paths, recursive):
80 If recursive is true, walks subdirectories recursively."""
86 if recursive:
94 files = _FindFilesInCloudStorage(GetFilesInPaths(args.paths, args.recursive))
/external/e2fsprogs/misc/
H A Dchattr.c66 static int recursive; variable
136 recursive = 1;
250 if (S_ISDIR(st.st_mode) && recursive)

Completed in 2170 milliseconds

1234567891011>>