Searched refs:generation (Results 1 - 25 of 44) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
H A Dinstanceof-001.js33 this.generation = 3;
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
41 this.generation = 2;
48 this.generation = 1;
55 this.generation = 0;
63 this.generation = "A";
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
72 this.generation = "B";
73 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
H A Dinstanceof-003-n.js33 this.generation = 3;
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
41 this.generation = 2;
48 this.generation = 1;
55 this.generation = 0;
63 this.generation = "A";
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
72 this.generation = "B";
73 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
H A Dinstanceof-004-n.js33 this.generation = 3;
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
41 this.generation = 2;
48 this.generation = 1;
55 this.generation = 0;
63 this.generation = "A";
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
72 this.generation = "B";
73 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
H A Dinstanceof-005-n.js33 this.generation = 3;
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
41 this.generation = 2;
48 this.generation = 1;
55 this.generation = 0;
63 this.generation = "A";
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
72 this.generation = "B";
73 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
H A Dinstanceof-006.js33 this.generation = 3;
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
41 this.generation = 2;
48 this.generation = 1;
55 this.generation = 0;
63 this.generation = "A";
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
72 this.generation = "B";
73 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
/external/v8/src/
H A Dcompilation-cache.cc78 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) { argument
79 ASSERT(generation < generations_);
81 if (tables_[generation]->IsUndefined()) {
83 tables_[generation] = *result;
86 CompilationCacheTable::cast(tables_[generation]);
98 // Set the first generation as unborn.
124 // Probe the script generation tables. Make sure not to leak handles
127 for (int generation = 0; generation < generations(); generation
176 int generation; local
262 int generation; local
320 int generation; local
[all...]
H A Dcompilation-cache.h38 // for each generation of the sub-cache. Since the same source code string has
51 // Index for the first generation in the cache.
54 // Get the compilation cache tables for a specific generation.
55 Handle<CompilationCacheTable> GetTable(int generation);
57 // Accessors for first generation.
66 // Age the sub-cache by evicting the oldest generation and creating a new
67 // young generation.
89 Object** tables_; // Compilation cache tables - one for each generation.
/external/webkit/Source/WebCore/platform/graphics/
H A DFontFallbackList.cpp45 , m_generation(fontCache()->generation())
60 m_generation = fontCache()->generation();
104 ASSERT(fontCache()->generation() == m_generation);
117 ASSERT(fontCache()->generation() == m_generation);
H A DFontFallbackList.h53 unsigned generation() const { return m_generation; } function in class:WebCore::FontFallbackList
H A DFontCache.h89 unsigned generation();
H A DFont.cpp112 && (m_fontList ? m_fontList->generation() : 0) == (other.m_fontList ? other.m_fontList->generation() : 0);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dportallocator.h75 uint32 generation() { return generation_; } function in class:cricket::PortAllocatorSession
76 void set_generation(uint32 generation) { generation_ = generation; } argument
H A Dcandidate.h46 uint32 generation)
49 type_(type), network_name_(network_name), generation_(generation) {}
88 // Candidates in a new generation replace those in the old generation.
89 uint32 generation() const { return generation_; } function in class:cricket::Candidate
90 void set_generation(uint32 generation) { generation_ = generation; } argument
42 Candidate(const std::string& name, const std::string& protocol, const talk_base::SocketAddress& address, float preference, const std::string& username, const std::string& password, const std::string& type, const std::string& network_name, uint32 generation) argument
H A Dport.h122 // Identifies the generation that this port was created in.
123 uint32 generation() { return generation_; } function in class:cricket::Port
124 void set_generation(uint32 generation) { generation_ = generation; } argument
H A Dp2ptransportchannel.cc447 // Remove any candidates whose generation is older than this one. The
448 // presence of a new generation indicates that the old ones are not useful.
451 if (remote_candidates_[i].generation() < remote_candidate.generation()) {
452 LOG(INFO) << "Pruning candidate from old generation: "
/external/dbus/dbus/
H A Ddbus-message-private.h121 int generation; /**< _dbus_current_generation when message was created */ member in struct:DBusMessage
/external/e2fsprogs/misc/
H A Dlsattr.c80 unsigned long generation; local
88 if (fgetversion (name, &generation) == -1) {
94 printf ("%5lu ", generation);
/external/qemu/distrib/sdl-1.2.12/src/video/ipod/
H A DSDL_ipodvideo.c64 static long generation = 0; variable
128 generation = iPod_GetGeneration();
262 if (dbgout) fprintf (dbgout, "Generation: %ld\n", generation);
264 if (generation >= 40000) {
294 if ((generation >= 60000) && (generation < 70000)) {
/external/llvm/lib/Support/Windows/
H A DProcess.inc113 // does what's necessary to prevent their generation.
/external/kernel-headers/original/linux/
H A Dfd.h209 int generation; /* how many diskchanges? */ member in struct:floppy_drive_struct
/external/llvm/
H A DREADME.android62 * Our ARM code generation fixes that upstream hasn't accepted yet. (This
/external/valgrind/tsan/
H A DAndroid.mk52 # TODO(eugenis): Add ts_event_names.h generation step
/external/chromium/net/http/
H A Dhttp_cache.cc567 // generation number. During playback, multiple fetches for the same
568 // item will use the same generation number and pull the proper
570 int generation = 0; local
573 generation = (*playback_cache_map_)[url];
574 (*playback_cache_map_)[url] = generation + 1;
577 std::string result = base::IntToString(generation);
/external/e2fsprogs/lib/blkid/
H A Dprobe.h419 __u64 __pad0; /* Was generation number in gfs1 */
657 /* expected generation for this device */
658 __u64 generation; member in struct:btrfs_dev_item
695 __u64 generation; member in struct:btrfs_super_block
/external/llvm/test/MC/MBlaze/
H A Dmblaze_imm.s9 # The generation of IMM instructions is handled automatically by the

Completed in 476 milliseconds

12