HomeSort by relevance Sort by last modified time
    Searched refs:temporary (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/cloud_print/gcp20/prototype/
conio_posix.h 10 void SetTemporaryTermiosSettings(bool temporary);
conio_posix.cc 13 void SetTemporaryTermiosSettings(bool temporary) {
16 if (temporary) {
  /external/clang/test/CodeGenCXX/
const-init-cxx1y.cpp 23 struct A { int &&temporary; int x; }; member in struct:ModifyStaticTemporary::A
25 A a = { 6, f(a.temporary) };
29 A b = { 7, ++b.temporary };
34 // 'c.temporary', not the value as modified by the partial evaluation within
36 A c = { 10, (++c.temporary, b.x) };
  /external/libcxx/test/utilities/memory/temporary.buffer/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/temporary.buffer/Android.mk
19 test_name := utilities/memory/temporary.buffer/temporary_buffer
  /build/core/combo/arch/mips64/
mips64r2.mk 3 # This target is for temporary use only, until mips64r6 is supported by Android's qemu.
  /external/clang/test/SemaCXX/
decl-init-ref.cpp 25 A& ra = f(); // expected-error {{non-const lvalue reference to type 'A' cannot bind to a temporary of type 'B'}}
29 PR6139 x = {{A()}}; // expected-error{{non-const lvalue reference to type 'A [1]' cannot bind to an initializer list temporary}}
32 PR6139b y = {A()}; // expected-error{{non-const lvalue reference to type 'A [1]' cannot bind to a temporary of type 'A'}}
35 struct A { int &&temporary; int x, y; }; member in struct:PR16502::A
37 const A &c = { 10, ++c.temporary };
  /external/cmockery/cmockery_0_1_2/src/example/
allocate_module.c 30 int * const temporary = (int*)malloc(sizeof(int)); local
31 *temporary = 0;
  /external/chromium_org/tools/relocation_packer/src/
main.cc 33 std::string temporary = argv0; local
34 const size_t last_slash = temporary.find_last_of("/");
35 if (last_slash != temporary.npos) {
36 temporary.erase(0, last_slash + 1);
38 const char* basename = temporary.c_str();
elf_file_unittest.cc 54 FILE* temporary = tmpfile(); local
55 ASSERT_FALSE(temporary == NULL);
63 ASSERT_EQ(bytes, fwrite(buffer, 1, bytes, temporary));
67 ASSERT_EQ(0, fseek(temporary, 0, SEEK_SET));
68 ASSERT_EQ(0, lseek(fileno(temporary), 0, SEEK_SET));
70 *stream = temporary;
90 void CloseRelocsTestFile(FILE* temporary) {
91 fclose(temporary);
  /external/llvm/test/MC/Mips/
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/wpa_supplicant_8/
Android.mk 5 # TODO: Clean up the Android.mks, reset all the temporary variables at the
  /hardware/ril/rild/
Android.mk 16 # temporary hack for broken vendor rils
  /external/valgrind/main/VEX/priv/
main_util.c 56 static HChar temporary[N_TEMPORARY_BYTES] __attribute__((aligned(8))); variable
57 static HChar* temporary_first = &temporary[0];
58 static HChar* temporary_curr = &temporary[0];
59 static HChar* temporary_last = &temporary[N_TEMPORARY_BYTES-1];
74 vassert(temporary_first == &temporary[0]);
75 vassert(temporary_last == &temporary[N_TEMPORARY_BYTES-1]);
154 HChar* private_LibVEX_alloc_first = &temporary[0];
155 HChar* private_LibVEX_alloc_curr = &temporary[0];
156 HChar* private_LibVEX_alloc_last = &temporary[N_TEMPORARY_BYTES-1];
162 if (private_LibVEX_alloc_first == &temporary[0]) pool = "TEMP"
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/view/
BitmapDrawableImageView.java 37 private static final boolean TEMPORARY = true;
38 private static final boolean PERMANENT = !TEMPORARY;
83 private void unbindDrawable(boolean temporary) {
85 mDrawable.unbind(temporary);
132 unbindDrawable(TEMPORARY);
140 unbindDrawable(TEMPORARY);
  /external/clang/lib/CodeGen/
CGCall.h 66 /// The temporary alloca.
67 llvm::Value *Temporary;
76 /// The "is active" insertion point. This instruction is temporary and
91 void addWriteback(LValue srcLV, llvm::Value *temporary,
95 writeback.Temporary = temporary;
  /external/chromium_org/media/base/
audio_video_metadata_extractor.cc 41 int temporary = -1; local
42 if (*destination < 0 && base::StringToInt(tag->value, &temporary) &&
43 temporary >= 0) {
44 *destination = temporary;
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
ref.pxd 36 # temporary variable, update the list data structure, and then
37 # call Py_DECREF() for the temporary variable.
51 # uses a temporary variable and sets the argument to NULL before
  /external/chromium_org/content/public/browser/
download_item.h 213 // temporary or intermediate file (specified by GetFullPath()); this is the
320 // Mark the download as temporary (not visible in persisted store or
322 virtual void SetIsTemporary(bool temporary) = 0;
  /external/chromium_org/v8/test/webkit/
dfg-constant-fold-uncaptured-variable-that-is-later-captured.js 40 // The temporary variable corresponding to the 'bar' callee coming out of the ternary expression will be allocated by
46 // The temporary variable corresponding to the first non-this argument to baz will be allocated to the same virtual
  /external/wpa_supplicant_8/wpa_supplicant/
config_ssid.h 492 * temporary - Whether this network is temporary and not to be saved
494 int temporary; member in struct:wpa_ssid
634 * This pointer can be used to delete temporary networks when a wpa_cred
  /cts/tests/tests/net/
Android.mk 31 # include CtsTestServer as a temporary hack to free net.cts from cts.stub.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
bdb.py 142 if (flag and bp.temporary):
251 def set_break(self, filename, lineno, temporary=0, cond = None,
264 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
453 Implements temporary breakpoints, ignore counts, disabling and
473 def __init__(self, file, line, temporary=0, cond=None, funcname=None):
479 self.temporary = temporary
511 if self.temporary:
566 that indicates if it is ok to delete a temporary bp.
586 # to delete if temporary
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
bdb.py 142 if (flag and bp.temporary):
251 def set_break(self, filename, lineno, temporary=0, cond = None,
264 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
453 Implements temporary breakpoints, ignore counts, disabling and
473 def __init__(self, file, line, temporary=0, cond=None, funcname=None):
479 self.temporary = temporary
511 if self.temporary:
566 that indicates if it is ok to delete a temporary bp.
586 # to delete if temporary
    [all...]
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app_worker.js 7 // data updates from a simulated server and stores them in a temporary IDB
9 // temporary store and combined into larger records in a permanent store.
  /external/chromium_org/v8/test/mjsunit/
constant-folding.js 219 // Answer is non-smi and lhs of << is a temporary heap number that we can
224 // Answer is non-smi and lhs of << is a temporary heap number that we think

Completed in 602 milliseconds

1 2 3 4 5 6 7 8