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

  /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/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
723 constexpr A a = { 6, f(a.temporary), a.temporary }; // expected-warning {{uninitialized}} expected-note {{temporary created here}}
726 constexpr int k = a.temporary++; // expected-error {{constant expression}} expected-note {{outside the expression that created the 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/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/tools/site_compare/commands/
maskmaker.py 14 import tempfile # Get a temporary directory to hold intermediates namespace
timeload.py 16 import tempfile # Get a temporary directory to hold intermediates namespace
compare2.py 14 import tempfile # Get a temporary directory to hold intermediates namespace
  /external/chromium_org/chrome/browser/background/
background_application_list_model_unittest.cc 143 scoped_refptr<Extension> temporary = local
146 temporary->permissions_data()->active_permissions();
  /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...]
  /external/chromium_org/tools/ipc_fuzzer/mutate/
generate.cc 462 int temporary; local
463 if (!GenerateParam(&temporary, generator))
465 *p = static_cast<base::File::Error>(temporary);
    [all...]
  /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
config.h 58 * temporary - Whether this credential is temporary and not to be saved
60 int temporary; member in struct:wpa_cred
    [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/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 

Completed in 511 milliseconds