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

1 2

  /external/cmockery/cmockery_0_1_2/src/example/
allocate_module.c 30 int * const temporary = (int*)malloc(sizeof(int)); local
31 *temporary = 0;
  /bionic/tools/relocation_packer/src/
main.cc 31 std::string temporary = argv0; local
32 const size_t last_slash = temporary.find_last_of("/");
33 if (last_slash != temporary.npos) {
34 temporary.erase(0, last_slash + 1);
36 const char* basename = temporary.c_str();
elf_file_unittest.cc 46 FILE* temporary = tmpfile(); local
47 ASSERT_FALSE(temporary == NULL);
55 ASSERT_EQ(bytes, fwrite(buffer, 1, bytes, temporary));
59 ASSERT_EQ(0, fseek(temporary, 0, SEEK_SET));
60 ASSERT_EQ(0, lseek(fileno(temporary), 0, SEEK_SET));
62 *stream = temporary;
74 void CloseRelocsTestFile(FILE* temporary) {
75 fclose(temporary);
  /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 };
constant-expression-cxx1y.cpp 247 constexpr int &&dead() { return id(0); } // expected-note {{temporary created here}}
248 constexpr int bad() { int &&n = dead(); n = 1; return n; } // expected-note {{assignment to temporary whose lifetime has ended}}
720 struct A { int &&temporary; int x; int y; }; member in struct:loops::modify_temporary_during_construction::A
722 constexpr A a = { 6, f(a.temporary), a.temporary }; // expected-note {{temporary created here}}
725 constexpr int k = a.temporary++; // expected-error {{constant expression}} expected-note {{outside the expression that created the temporary}}
  /external/vogar/src/vogar/
HostFileCache.java 63 File temporary = new File(cachedFile + ".tmp"); local
64 cp(source, temporary);
65 mv(temporary, cachedFile);
  /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/vogar/src/vogar/android/
DeviceFileCache.java 66 File temporary = new File(cachedFile + ".tmp"); local
67 cp(source, temporary);
68 mv(cachedFile, temporary);
71 private void mv(File cachedFile, File temporary) {
72 new Command(log, "adb", "shell", "mv", temporary.getPath(), cachedFile.getPath()).execute();
75 private void cp(File source, File temporary) {
77 new Command(log, "adb", "shell", "cat", source.getPath(), ">", temporary.getPath())
  /external/ImageMagick/MagickCore/
constitute.c 478 read_info->temporary=MagickTrue;
516 if (read_info->temporary != MagickFalse)
540 read_info->temporary=MagickTrue;
563 if (read_info->temporary != MagickFalse)
566 read_info->temporary=MagickFalse;
981 temporary; local
    [all...]
delegate.c 1638 temporary; local
    [all...]
blob.c 138 temporary;
384 Write blob to a temporary file on disk.
471 clone_info->temporary=blob_info->temporary;
135 temporary; member in struct:_BlobInfo
    [all...]
image.h 375 temporary, /* image file to be deleted after read "empemeral:" */ member in struct:_ImageInfo
  /external/valgrind/VEX/priv/
main_util.c 57 static HChar temporary[N_TEMPORARY_BYTES] __attribute__((aligned(REQ_ALIGN))); variable
58 static HChar* temporary_first = &temporary[0];
59 static HChar* temporary_curr = &temporary[0];
60 static HChar* temporary_last = &temporary[N_TEMPORARY_BYTES-1];
71 HChar* private_LibVEX_alloc_first = &temporary[0];
72 HChar* private_LibVEX_alloc_curr = &temporary[0];
73 HChar* private_LibVEX_alloc_last = &temporary[N_TEMPORARY_BYTES-1];
80 vassert(temporary_first == &temporary[0]);
81 vassert(temporary_last == &temporary[N_TEMPORARY_BYTES-1]);
162 if (private_LibVEX_alloc_first == &temporary[0]) pool = "TEMP"
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
DistributionPointFetcher.java 629 TrustAnchor temporary; local
631 temporary = new TrustAnchor(prevCert, null);
634 temporary = new TrustAnchor(principal, prevKey, null);
636 newTrustAnchors.add(temporary);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_ssid.h 562 * temporary - Whether this network is temporary and not to be saved
564 int temporary; member in struct:wpa_ssid
704 * This pointer can be used to delete temporary networks when a wpa_cred
config.h 72 * temporary - Whether this credential is temporary and not to be saved
74 int temporary; member in struct:wpa_cred
    [all...]
  /external/tpm2/
Global.h 142 unsigned temporary : 1; member in struct:__anon23213
143 //6) SET for a temporary object
    [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.cc 526 Register temporary = t8; local
539 // Passing temporary register, otherwise JumpIfNotSmi modifies register at.
540 JumpIfNotSmi(scratch, &has_context, temporary);
671 // at - Temporary (avoid MacroAssembler instructions also using 'at').
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 522 Register temporary = t8; local
535 // Passing temporary register, otherwise JumpIfNotSmi modifies register at.
536 JumpIfNotSmi(scratch, &has_context, temporary);
666 // at - Temporary (avoid MacroAssembler instructions also using 'at').
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /external/robolectric/v1/lib/main/
h2-1.2.147.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit/2.14/
htmlunit-2.14.jar 

Completed in 712 milliseconds

1 2