/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/mesa3d/src/intel/vulkan/ |
D | anv_queue.c | 339 anv_fence_impl_cleanup(device, &fence->temporary); in anv_DestroyFence() 362 if (fence->temporary.type != ANV_FENCE_TYPE_NONE) { in anv_ResetFences() 363 anv_fence_impl_cleanup(device, &fence->temporary); in anv_ResetFences() 364 fence->temporary.type = ANV_FENCE_TYPE_NONE; in anv_ResetFences() 397 fence->temporary.type != ANV_FENCE_TYPE_NONE ? in anv_GetFenceStatus() 398 &fence->temporary : &fence->permanent; in anv_GetFenceStatus() 403 assert(fence->temporary.type == ANV_FENCE_TYPE_NONE); in anv_GetFenceStatus() 476 fence->temporary.type != ANV_FENCE_TYPE_NONE ? in anv_wait_for_syncobj_fences() 477 &fence->temporary : &fence->permanent; in anv_wait_for_syncobj_fences() 553 assert(fence->temporary.type == ANV_FENCE_TYPE_NONE); in anv_wait_for_bo_fences() [all …]
|
/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/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/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/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…
|
D | FunctionsTakingEigenTypes.dox | 5 …ter of type Matrix, your expression will implicitly be evaluated into a temporary Matrix, which wi… 6 \li The evaluation into a temporary may be useless and inefficient; 92 …e have a generic expression that will be automatically evaluated into a temporary MatrixXf by the … 124 …on that works with double matrices too and unless you do not care about temporary objects. Why is … 129 …he compiler creates a temporary and evaluates the expression x+z into this temporary. Once the fun… 152 …riting your result to a temporary object. In this special case this protection is not intended -- … 171 The implementation above does now not only work with temporary expressions but it also allows to us… 211 …ram. However, a naive implementation is likely to introduce unnecessary temporary objects in your …
|
/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/syzkaller/vendor/google.golang.org/grpc/ |
D | balancer.go | 125 temporary bool member 131 func (e downErr) Temporary() bool { return e.temporary } 133 func downErrorf(timeout, temporary bool, format string, a ...interface{}) downErr { 136 temporary: temporary,
|
/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/cmockery/cmockery_0_1_2/src/example/ |
D | allocate_module.c | 30 int * const temporary = (int*)malloc(sizeof(int)); in leak_memory() local 31 *temporary = 0; in leak_memory()
|
/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/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/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"__…
|
/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/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/tensorflow/tensorflow/lite/testing/ |
D | generated_examples_zip_test.cc | 185 tensorflow::Status MakeTemporaryDirectory(string* temporary) { in MakeTemporaryDirectory() argument 186 if (env->LocalTempFilename(temporary)) { in MakeTemporaryDirectory() 187 TF_CHECK_OK(env->CreateDir(*temporary)); in MakeTemporaryDirectory() 188 temporary_directories_.push_back(*temporary); in MakeTemporaryDirectory()
|
/external/python/cpython3/Lib/ |
D | bdb.py | 234 if (flag and bp.temporary): 366 def set_break(self, filename, lineno, temporary=False, cond=None, argument 381 bp = Breakpoint(filename, lineno, temporary, cond, funcname) 669 def __init__(self, file, line, temporary=False, cond=None, funcname=None): argument 675 self.temporary = temporary 729 if self.temporary:
|
/external/tensorflow/tensorflow/lite/schema/ |
D | upgrade_schema.py | 58 temporary = tempfile.mkdtemp() 60 yield temporary 62 shutil.rmtree(temporary)
|