/external/vogar/src/vogar/android/ |
D | DeviceFileCache.java | 69 File temporary = new File(cachedFile + ".tmp"); in copyToCache() local 70 cp(source, temporary); in copyToCache() 71 mv(cachedFile, temporary); in copyToCache() 74 private void mv(File cachedFile, File temporary) { in mv() argument 75 new Command(log, "adb", "shell", "mv", temporary.getPath(), cachedFile.getPath()).execute(); in mv() 78 private void cp(File source, File temporary) { in cp() argument 80 new Command(log, "adb", "shell", "cat", source.getPath(), ">", temporary.getPath()) in cp()
|
/external/clang/test/CodeGenCXX/ |
D | const-init-cxx1y.cpp | 23 struct A { int &&temporary; int x; }; 25 A a = { 6, f(a.temporary) }; 29 A b = { 7, ++b.temporary }; 36 A c = { 10, (++c.temporary, b.x) };
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_DestroyTemporaryVariable.pbtxt | 6 A reference to the temporary variable tensor. 12 Name of the temporary variable, usually the name of the matching 16 summary: "Destroys the temporary variable and returns its final value." 19 the temporary variable called 'var_name'.
|
/external/python/cpython3/Doc/library/ |
D | tempfile.rst | 1 :mod:`tempfile` --- Generate temporary files and directories 5 :synopsis: Generate temporary files and directories. 12 pair: temporary; file name 13 pair: temporary; file 17 This module creates temporary files and directories. It works on all 25 allow direct control over the location and name of temporary files and 28 shared temporary directories. 36 Return a :term:`file-like object` that can be used as a temporary storage area. 41 this; your code should not rely on a temporary file created using this 46 destruction of the file object the temporary file will be removed [all …]
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_queue.c | 301 assert(semaphore->temporary.type == ANV_SEMAPHORE_TYPE_NONE); in anv_queue_submit_timeline_locked() 419 assert(semaphore->temporary.type == ANV_SEMAPHORE_TYPE_NONE); in anv_queue_task() 862 struct anv_semaphore_impl *impl = &semaphore->temporary; in maybe_transfer_temporary_semaphore() 1032 semaphore->temporary.type != ANV_SEMAPHORE_TYPE_NONE ? in anv_queue_submit() 1033 &semaphore->temporary : &semaphore->permanent; in anv_queue_submit() 1099 fence->temporary.type != ANV_FENCE_TYPE_NONE ? in anv_queue_submit() 1100 &fence->temporary : &fence->permanent; in anv_queue_submit() 1147 assert(fence->temporary.type == ANV_FENCE_TYPE_NONE); in anv_queue_submit() 1405 if (fence->temporary.type == ANV_FENCE_TYPE_NONE) in anv_fence_reset_temporary() 1408 anv_fence_impl_cleanup(device, &fence->temporary); in anv_fence_reset_temporary() [all …]
|
/external/python/cpython2/Doc/library/ |
D | tempfile.rst | 1 :mod:`tempfile` --- Generate temporary files and directories 8 :synopsis: Generate temporary files and directories. 12 pair: temporary; file name 13 pair: temporary; file 19 This module generates temporary files and directories. It works on all 30 allow direct control over the location and name of temporary files. It is 40 Return a file-like object that can be used as a temporary storage area. 45 this; your code should not rely on a temporary file created using this 69 used to open the file a second time, while the named temporary file is 106 Creates a temporary file in the most secure manner possible. There are [all …]
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_drm.c | 40 uint32_t permanent, temporary; member 473 sync->temporary = 0; in sync_create() 482 if (sync->temporary) { in sync_set_temporary() 484 &(struct drm_syncobj_destroy) { .handle = sync->temporary }); in sync_set_temporary() 486 sync->temporary = syncobj; in sync_set_temporary() 505 sync_import(VkDevice _device, struct tu_syncobj *sync, bool temporary, bool sync_fd, int fd) in sync_import() argument 511 uint32_t *dst = temporary ? &sync->temporary : &sync->permanent; in sync_import() 525 assert(temporary); in sync_import() 562 .handle = sync->temporary ?: sync->permanent, in sync_export() 651 .handle = sem->temporary ?: sem->permanent, in tu_QueueSubmit() [all …]
|
/external/eigen/doc/ |
D | TopicLazyEvaluation.dox | 13 …evaluate it into a temporary variable. Indeed, in certain cases it is better to evaluate immediate… 19 a traditional library would evaluate \c vec2 + vec3 into a temporary \c vec4 and then copy \c vec4 … 23 …lazy evaluation, and when on the contrary it should evaluate immediately into a temporary variable. 43 Eigen first evaluates <tt>matrix * matrix</tt> into a temporary matrix, and then copies it into the… 55 the product <tt>matrix3 * matrix4</tt> gets evaluated immediately into a temporary matrix. Indeed, … 57 …st of an operation is reduced if a sub-expression gets evaluated into a temporary. Indeed, in cert… 61 …it once and store it in a temporary variable. Eigen understands this and evaluates <tt>matrix3 + m…
|
/external/vogar/src/vogar/ |
D | HostFileCache.java | 63 File temporary = new File(cachedFile + ".tmp"); in copyToCache() local 64 cp(source, temporary); in copyToCache() 65 mv(temporary, cachedFile); in copyToCache()
|
/external/clang/test/SemaCXX/ |
D | decl-init-ref.cpp | 35 struct A { int &&temporary; int x, y; }; 37 const A &c = { 10, ++c.temporary };
|
/external/angle/tools/flex-bison/third_party/m4sugar/ |
D | foreach.m4 | 67 # that temporary macro. Thus, the recursion is done in m4_for without 88 # Use m4_for to create a temporary macro in terms of a boilerplate 90 # odd, then rounding the last $# up in the temporary macro is 119 # We build the temporary macro _m4_b: 151 # We only have to speed up _m4_cond, by building the temporary _m4_c: 180 # temporary _m4_p: 203 # _m4_shiftn. If N is 3, then we build the temporary _m4_s, defined as 217 # Here, we use the temporary macro _m4_do, defined as 236 # Invoke _m4_r($@) with the temporary _m4_r built as 250 # Build the temporary macro _m4_map_args_pair, with the $2([$m+1]) [all …]
|
/external/clang/test/Rewriter/ |
D | rewrite-unique-block-api.mm | 2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.c… 4 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-mode…
|
D | rewrite-byref-in-nested-blocks.mm | 2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"_… 4 // RUN: %clang_cc1 -fsyntax-only -Werror -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"_…
|
D | rewrite-nested-ivar.mm | 2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"_… 4 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"_…
|
D | rewrite-nested-blocks-2.mm | 2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"_… 5 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"__declspec…
|
D | rewrite-block-literal-1.mm | 2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -Did="void *" -D"SEL=void*" -D"__declspe… 5 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -Did="void *" -D"SEL=void*" -D"__declspe…
|
D | rewrite-rewritten-initializer.mm | 2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec… 4 // RUN: %clang_cc1 -fsyntax-only -Werror -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__…
|
D | rewrite-nested-blocks.mm | 2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.c… 4 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-mode…
|
D | rewrite-foreach-in-block.mm | 2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"id=struct objc_object*" -D"SEL=void*"… 4 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"id=struct objc_object*" -D"SEL=void*"…
|
/external/autotest/client/site_tests/network_Dhcpv6Basic/ |
D | control | 10 non-temporary address and prefix delegation via DHCPv6 server. 19 Tests that we can acquire an DHCPv6 non-temporary address and prefix
|
/external/llvm/test/MC/Mips/ |
D | mips-noat.s | 3 # Check that using the assembler temporary when .set noat is in effect is an error. 5 # We start with the assembler temporary enabled
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/ |
D | mips-noat.s | 3 # Check that using the assembler temporary when .set noat is in effect is an error. 5 # We start with the assembler temporary enabled
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_wsi.c | 264 fence->temporary.kind != RADV_FENCE_NONE ? in radv_AcquireNextImage2KHR() 265 &fence->temporary : &fence->permanent; in radv_AcquireNextImage2KHR() 282 semaphore->temporary.kind != RADV_SEMAPHORE_NONE ? in radv_AcquireNextImage2KHR() 283 &semaphore->temporary : &semaphore->permanent; in radv_AcquireNextImage2KHR()
|
/external/python/cpython2/Lib/ |
D | bdb.py | 142 if (flag and bp.temporary): 251 def set_break(self, filename, lineno, temporary=0, cond = None, argument 264 bp = Breakpoint(filename, lineno, temporary, cond, funcname) 473 def __init__(self, file, line, temporary=0, cond=None, funcname=None): argument 479 self.temporary = temporary 511 if self.temporary:
|
/external/autotest/client/site_tests/cellular_DeferredRegistration/ |
D | control.pseudomodem | 10 - Shill destroys a service due to temporary registration loss 19 Tests that shill can handle temporary registration loss without destroying
|