/external/python/cpython2/Doc/library/ |
D | mhlib.rst | 18 particular collection of folders, :class:`Folder`, which represents a single 19 folder, and :class:`Message`, which represents a single message. 27 .. class:: Folder(mh, name) 29 The :class:`Folder` class represents a single folder and its messages. 32 .. class:: Message(folder, number[, name]) 34 :class:`Message` objects represent individual messages in a folder. The Message 63 Return the current folder name. 68 Set the current folder name. 83 Return a list of direct subfolders of the given folder. 88 Return a list of all subfolders of the given folder. [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | tagmanager_v1.accounts.containers.folders.html | 84 <p class="firstline">Creates a GTM Folder.</p> 87 <p class="firstline">Deletes a GTM Folder.</p> 90 <p class="firstline">Gets a GTM Folder.</p> 96 <p class="firstline">Updates a GTM Folder.</p> 100 <pre>Creates a GTM Folder. 108 { # Represents a Google Tag Manager Folder. 109 "folderId": "A String", # The Folder ID uniquely identifies the GTM Folder. 110 …ring", # The fingerprint of the GTM Folder as computed at storage time. This value is recomputed w… 112 "name": "A String", # Folder display name. 120 { # Represents a Google Tag Manager Folder. [all …]
|
D | cloudresourcemanager_v2beta1.folders.html | 79 <p class="firstline">Creates a Folder in the resource hierarchy.</p> 82 <p class="firstline">Requests deletion of a Folder. The Folder is moved into the</p> 85 <p class="firstline">Retrieves a Folder identified by the supplied resource name.</p> 88 <p class="firstline">Gets the access control policy for a Folder. The returned policy may be</p> 97 <p class="firstline">Moves a Folder under a new resource parent.</p> 100 <p class="firstline">Updates a Folder, changing its display_name.</p> 109 <p class="firstline">Sets the access control policy on a Folder, replacing any existing policy.</p> 112 <p class="firstline">Returns permissions that a caller has on the specified Folder.</p> 115 <p class="firstline">Cancels the deletion request for a Folder. This method may only be</p> 119 <pre>Creates a Folder in the resource hierarchy. [all …]
|
D | cloudresourcemanager_v2.folders.html | 79 <p class="firstline">Creates a Folder in the resource hierarchy.</p> 82 <p class="firstline">Requests deletion of a Folder. The Folder is moved into the</p> 85 <p class="firstline">Retrieves a Folder identified by the supplied resource name.</p> 88 <p class="firstline">Gets the access control policy for a Folder. The returned policy may be</p> 97 <p class="firstline">Moves a Folder under a new resource parent.</p> 100 <p class="firstline">Updates a Folder, changing its display_name.</p> 109 <p class="firstline">Sets the access control policy on a Folder, replacing any existing policy.</p> 112 <p class="firstline">Returns permissions that a caller has on the specified Folder.</p> 115 <p class="firstline">Cancels the deletion request for a Folder. This method may only be</p> 119 <pre>Creates a Folder in the resource hierarchy. [all …]
|
D | tagmanager_v2.accounts.containers.workspaces.folders.html | 79 <p class="firstline">Creates a GTM Folder.</p> 82 <p class="firstline">Deletes a GTM Folder.</p> 85 <p class="firstline">List all entities in a GTM Folder.</p> 91 <p class="firstline">Gets a GTM Folder.</p> 100 <p class="firstline">Moves entities to a GTM Folder.</p> 103 <p class="firstline">Reverts changes to a GTM Folder in a GTM Workspace.</p> 106 <p class="firstline">Updates a GTM Folder.</p> 110 <pre>Creates a GTM Folder. 117 { # Represents a Google Tag Manager Folder. 119 "notes": "A String", # User notes on how to apply this folder in the container. [all …]
|
D | tagmanager_v1.accounts.containers.move_folders.html | 79 <p class="firstline">Moves entities to a GTM Folder.</p> 83 <pre>Moves entities to a GTM Folder. 88 folderId: string, The GTM Folder ID. (required) 92 { # Represents a Google Tag Manager Folder. 93 "folderId": "A String", # The Folder ID uniquely identifies the GTM Folder. 94 …ring", # The fingerprint of the GTM Folder as computed at storage time. This value is recomputed w… 96 "name": "A String", # Folder display name. 100 variableId: string, The variables to be moved to the folder. (repeated) 101 tagId: string, The tags to be moved to the folder. (repeated) 102 triggerId: string, The triggers to be moved to the folder. (repeated)
|
D | drive_v2.children.html | 79 <p class="firstline">Removes a child from a folder.</p> 85 <p class="firstline">Inserts a file into a folder.</p> 88 <p class="firstline">Lists a folder's children.</p> 95 <pre>Removes a child from a folder. 98 folderId: string, The ID of the folder. (required) 108 folderId: string, The ID of the folder. (required) 114 { # A reference to a folder's child. 124 <pre>Inserts a file into a folder. 127 folderId: string, The ID of the folder. (required) 131 { # A reference to a folder's child. [all …]
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/sevenz/ |
D | FolderTest.java | 27 * Unit tests for class {@link Folder}. 30 * @see Folder 38 Folder folder = new Folder(); in testGetUnpackSizeForCoderOne() local 41 folder.coders = coderArray; in testGetUnpackSizeForCoderOne() 43 assertEquals(0L, folder.getUnpackSizeForCoder(coder)); in testGetUnpackSizeForCoderOne() 51 Folder folder = new Folder(); in testGetUnpackSizeOne() local 52 folder.totalOutputStreams = 266L; in testGetUnpackSizeOne() 56 folder.bindPairs = bindPairArray; in testGetUnpackSizeOne() 57 folder.totalOutputStreams = 1L; in testGetUnpackSizeOne() 59 assertEquals(0L, folder.getUnpackSize()); in testGetUnpackSizeOne() [all …]
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/ |
D | ReportOutputFolder.java | 22 * Logical representation of a folder in the output structure. This utility 33 /** Cached sub-folder instances to guarantee stable normalization */ 39 * Creates a new root folder for the given output. 49 * Creates a new root folder for the given output. 63 * Creates a sub-folder with the given name. 66 * name of the sub-folder 67 * @return handle for output into the sub-folder 71 ReportOutputFolder folder = subFolders.get(normalizedName); in subFolder() local 72 if (folder != null) { in subFolder() 73 return folder; in subFolder() [all …]
|
/external/junit/src/main/java/org/junit/rules/ |
D | TemporaryFolder.java | 23 * public TemporaryFolder folder= new TemporaryFolder(); 27 * File createdFile= folder.newFile("myfile.txt"); 28 * File createdFolder= folder.newFolder("subfolder"); 40 * public TemporaryFolder folder= TemporaryFolder.builder().assureDeletion().build(); 48 private File folder; field in TemporaryFolder 54 * Create a temporary folder which uses system default temporary-file 62 * Create a temporary folder which uses the specified directory to create 65 * @param parentFolder folder where temporary resources will be created. 103 * Specifies which folder to use for creating temporary resources. 150 folder = createTemporaryFolderIn(parentFolder); in create() [all …]
|
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/ |
D | Folder_Actions_Suite.py | 1 """Suite Folder Actions Suite: Terms and Events for controlling Folder Actions 20 """attach action to: Attach an action to a folder 42 """attached scripts: List the actions attached to a folder 69 """do folder action: Event the Finder sends to the Folder Actions FBA 71 … Keyword argument with_window_size: the new window size for the folder action message to process 72 Keyword argument with_item_list: a list of items for the folder action message to process 73 Keyword argument folder_action_code: the folder action message to process 99 """edit action of: Edit as action of a folder 127 """remove action from: Remove a folder action from a folder 151 """application - The Folder Actions Suite host program """ [all …]
|
D | Disk_Folder_File_Suite.py | 1 """Suite Disk-Folder-File Suite: Terms and Events for controlling Disks, Folders, and Files 43 """application - The Disk-Folder-File Suite host program """ 51 """folder actions enabled - Are Folder Actions currently being processed? """ 56 """properties - every property of the Disk-Folder-File Suite host program """ 118 """volume - the volume on which the folder resides """ 127 class folder(aetools.ComponentItem): class 128 """folder - A folder in the file system """ 137 folders = folder 159 """package folder - Is the item a package? """ 228 'folder' : folder, [all …]
|
/external/rust/crates/rayon/src/ |
D | split_producer.rs | 5 use crate::iter::plumbing::{Folder, UnindexedProducer}; 23 fn fold_splits<F>(self, separator: &P, folder: F, skip_last: bool) -> F in fold_splits() 25 F: Folder<Self>, in fold_splits() 43 pub(super) fn fold_with<F>(self, folder: F, skip_last: bool) -> F in fold_with() 45 F: Folder<V>, in fold_with() 55 data.fold_splits(separator, folder, skip_last) in fold_with() 60 let folder = left.fold_splits(separator, folder, false); in fold_with() localVariable 61 if skip_last || folder.full() { in fold_with() 62 folder in fold_with() 64 folder.consume(right) in fold_with() [all …]
|
D | str.rs | 277 use crate::iter::plumbing::Folder; 288 fn fold_splits<'ch, F>(&self, haystack: &'ch str, folder: F, skip_last: bool) -> F in fold_splits() 290 F: Folder<&'ch str>; in fold_splits() 291 fn fold_matches<'ch, F>(&self, haystack: &'ch str, folder: F) -> F in fold_matches() 293 F: Folder<&'ch str>; in fold_matches() 294 fn fold_match_indices<'ch, F>(&self, haystack: &'ch str, folder: F, base: usize) -> F in fold_match_indices() 296 F: Folder<(usize, &'ch str)>; in fold_match_indices() 324 fn fold_splits<'ch, F>(&self, chars: &'ch str, folder: F, skip_last: bool) -> F in fold_splits() 326 F: Folder<&'ch str>, in fold_splits() 332 folder.consume_iter(split) in fold_splits() [all …]
|
/external/autotest/site_utils/ |
D | perf_csv_uploader.py | 46 # Timeout in minutes for upload attempts for a given folder. 54 """A class contains the information of a folder storing csv files to be 69 @param perf_csv_folder: Path of the folder contains csv files in test 86 """Get the url to the folder storing csv files in GS. 88 The url can be formulated based on csv folder, test_name and hostname. 97 """Download the folder containing csv files to the given dest_dir. 102 downloaded folder. 120 """Upload the folder to cns. 126 # File in cns is stored under folder with format of: 248 for folder in folders: [all …]
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | mbox.py | 3 # Scan MH folder, display results in window 21 global folder, seq 26 folder = 'inbox' 35 folder = arg[1:] 42 mhf = mh.openfolder(folder) 52 # Build right part: folder list 65 {'label': 'Open Folder', 163 global folder, mhf 167 msg = "Please open one folder at a time" 169 msg = "Please select a folder to open" [all …]
|
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/ |
D | Containers_and_folders.py | 81 class folder(aetools.ComponentItem): class 82 """folder - A folder """ 95 folders = folder 105 """container window - the container window for this folder """ 170 'folder' : folder, 187 'folder' : folder, 192 folder._superclassnames = ['container'] 193 folder._privpropdict = { 196 folder._privelemdict = { 203 'folder' : folder, [all …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/ |
D | SevenZFile.java | 425 final Folder folder = archive.folders[0]; in readEncodedHeader() local 433 for (final Coder coder : folder.getOrderedCoders()) { in readEncodedHeader() 438 folder.getUnpackSizeForCoder(coder), coder, password); in readEncodedHeader() 440 if (folder.hasCrc) { in readEncodedHeader() 442 folder.getUnpackSize(), folder.crc); in readEncodedHeader() 444 final byte[] nextHeader = new byte[(int)folder.getUnpackSize()]; in readEncodedHeader() 464 archive.folders = new Folder[0]; in readStreamsInfo() 512 final Folder[] folders = new Folder[(int)numFolders]; in readUnpackInfo() 526 for (final Folder folder : folders) { in readUnpackInfo() 527 folder.unpackSizes = new long[(int)folder.totalOutputStreams]; in readUnpackInfo() [all …]
|
/external/llvm-project/clang/test/Modules/ |
D | module-imported-by-pch-with-modulemap.m | 2 // RUN: mkdir -p %t.dst/folder-with-modulemap %t.dst/pch-folder 3 // RUN: echo '#import "folder-with-modulemap/included.h"' > %t.dst/header.h 4 // RUN: echo 'extern int MyModuleVersion;' > %t.dst/folder-with-modulemap/MyModule.h 5 // RUN: echo '@import MyModule;' > %t.dst/folder-with-modulemap/included.h 6 // RUN: echo 'module MyModule { header "MyModule.h" }' > %t.dst/folder-with-modulemap/MyModule.modu… 8 // RUN: %clang_cc1 -emit-pch -o %t.dst/pch-folder/header.pch -fmodule-map-file=%t.dst/folder-with-m… 9 …=%t.dst/folder-with-modulemap/MyModule.modulemap -fmodules-cache-path=%t.cache -fmodules -fimplici…
|
D | module-imported-by-pch-path.m | 2 // RUN: mkdir -p %t.dst/folder-with-modulemap %t.dst/pch-folder 3 // RUN: echo '#import "folder-with-modulemap/included.h"' > %t.dst/header.h 4 // RUN: echo 'extern int MyModuleVersion;' > %t.dst/folder-with-modulemap/MyModule.h 5 // RUN: echo '@import MyModule;' > %t.dst/folder-with-modulemap/included.h 6 // RUN: echo 'module MyModule { header "MyModule.h" }' > %t.dst/folder-with-modulemap/module.module… 8 // RUN: %clang -o %t.dst/pch-folder/header.pch -x objective-c-header -fmodules-cache-path=%t.cache … 9 …-only -fmodules-cache-path=%t.cache -fmodules %s -include-pch %t.dst/pch-folder/header.pch 2>&1 | … 15 …not defined in any loaded module map file; maybe you need to load '[[PATH:.*folder-with-modulemap]]
|
/external/catch2/CMake/ |
D | MiscFunctions.cmake | 1 #checks that the given hard-coded list contains all headers + sources in the given folder 2 function(CheckFileList LIST_VAR FOLDER) 5 file(GLOB GLOBBED_LIST "${FOLDER}/*.cpp" 6 "${FOLDER}/*.hpp" 7 "${FOLDER}/*.h") 15 function(CheckFileListRec LIST_VAR FOLDER) 18 file(GLOB_RECURSE GLOBBED_LIST "${FOLDER}/*.cpp" 19 "${FOLDER}/*.hpp" 20 "${FOLDER}/*.h")
|
/external/rust/crates/syn/src/ |
D | gen_helper.rs | 37 pub fn tokens_helper<F: Fold + ?Sized, S: Spans>(folder: &mut F, spans: &S) -> S { in tokens_helper() 38 spans.fold(folder) in tokens_helper() 42 fn fold<F: Fold + ?Sized>(&self, folder: &mut F) -> Self; in fold() 46 fn fold<F: Fold + ?Sized>(&self, folder: &mut F) -> Self { in fold() 47 folder.fold_span(*self) in fold() 52 fn fold<F: Fold + ?Sized>(&self, folder: &mut F) -> Self { in fold() 53 [folder.fold_span(self[0])] in fold() 58 fn fold<F: Fold + ?Sized>(&self, folder: &mut F) -> Self { in fold() 59 [folder.fold_span(self[0]), folder.fold_span(self[1])] in fold() 64 fn fold<F: Fold + ?Sized>(&self, folder: &mut F) -> Self { in fold() [all …]
|
/external/jsr305/ri/nbproject/ |
D | project.xml | 13 <source-folder> 18 </source-folder> 19 <source-folder> 24 </source-folder> 25 <source-folder> 29 </source-folder> 44 <type>folder</type> 50 <source-folder style="packages"> 53 </source-folder> 54 <source-folder style="packages"> [all …]
|
/external/python/cpython2/Lib/ |
D | mhlib.py | 14 name = mh.getcontext() # name of current folder 15 mh.setcontext(name) # set name of current folder 19 list = mh.listsubfolders(name) # direct subfolders of given folder 20 list = mh.listallsubfolders(name) # all subfolders of given folder 22 mh.makefolder(name) # create new folder 23 mh.deletefolder(name) # delete folder -- must have no subfolders 25 f = mh.openfolder(name) # new open folder object 28 path = f.getfullname() # folder's full pathname 29 path = f.getsequencesfilename() # full pathname of folder's sequences file 30 path = f.getmessagefilename(n) # full pathname of message n in folder [all …]
|
/external/llvm-project/mlir/lib/Dialect/Linalg/Transforms/ |
D | Promotion.cpp | 72 OperationFolder *folder, in allocBuffer() argument 92 folded_std_muli(folder, folded_std_constant_index(folder, width), size); in allocBuffer() 109 Optional<unsigned> alignment, OperationFolder *folder) { in defaultAllocBufferCallBack() argument 114 auto zero = folded_std_constant_index(folder, 0); in defaultAllocBufferCallBack() 115 auto one = folded_std_constant_index(folder, 1); in defaultAllocBufferCallBack() 119 allocSize = folded_std_muli(folder, allocSize, size.value()); in defaultAllocBufferCallBack() 121 dynamicBuffers, folder, alignment); in defaultAllocBufferCallBack() 125 folder, MemRefType::get(dynSizes, viewType.getElementType()), buffer, in defaultAllocBufferCallBack() 194 OperationFolder *folder) -> Optional<Value> { in LinalgOpInstancePromotionOptions() argument 197 alignment, folder); in LinalgOpInstancePromotionOptions() [all …]
|