Home
last modified time | relevance | path

Searched refs:temporary (Results 1 – 25 of 871) sorted by relevance

12345678910>>...35

/external/vogar/src/vogar/android/
DDeviceFileCache.java69 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/
Danv_queue.c339 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/
Dtempfile.rst1 :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/
Dconst-init-cxx1y.cpp23 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/
Dapi_def_DestroyTemporaryVariable.pbtxt6 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/
Dtempfile.rst1 :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/
DTopicLazyEvaluation.dox13 …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…
DFunctionsTakingEigenTypes.dox5 …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/
DHostFileCache.java63 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/
Dbalancer.go125 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/
Ddecl-init-ref.cpp35 struct A { int &&temporary; int x, y; };
37 const A &c = { 10, ++c.temporary };
/external/cmockery/cmockery_0_1_2/src/example/
Dallocate_module.c30 int * const temporary = (int*)malloc(sizeof(int)); in leak_memory() local
31 *temporary = 0; in leak_memory()
/external/python/cpython2/Lib/
Dbdb.py142 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/
Dcontrol10 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/
Drewrite-unique-block-api.mm2 // 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…
Drewrite-byref-in-nested-blocks.mm2 // 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"_…
Drewrite-nested-ivar.mm2 // 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"_…
Drewrite-nested-blocks-2.mm2 // 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…
Drewrite-block-literal-1.mm2 // 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…
Drewrite-rewritten-initializer.mm2 // 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/
Dmips-noat.s3 # 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/
Dmips-noat.s3 # 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/
Dgenerated_examples_zip_test.cc185 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/
Dbdb.py234 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/
Dupgrade_schema.py58 temporary = tempfile.mkdtemp()
60 yield temporary
62 shutil.rmtree(temporary)

12345678910>>...35