HomeSort by relevance Sort by last modified time
    Searched defs:temporary (Results 1 - 14 of 14) 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/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/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 1074 milliseconds