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

1 2 3 4 5 6

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-003-n.js 33 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+\")\"" );
instanceof-004-n.js 33 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+\")\"" );
instanceof-005-n.js 33 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+\")\"" );
instanceof-006.js 33 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+\")\"" );
instanceof-001.js 33 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Main.java 38 GenerateResults generation = new GenerateResults(); local
40 generation.run(args);
  /ndk/tests/device/static-executable/jni/
Android.mk 6 LOCAL_LDFLAGS := -static # this forces the generation of a static executable
  /external/v8/src/
compilation-cache.cc 75 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) {
76 ASSERT(generation < generations_);
78 if (tables_[generation]->IsUndefined()) {
80 tables_[generation] = *result;
83 CompilationCacheTable::cast(tables_[generation]);
95 // Set the first generation as unborn.
121 // Probe the script generation tables. Make sure not to leak handles
124 for (int generation = 0; generation < generations(); generation++)
173 int generation; local
260 int generation; local
323 int generation; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
CyclicBarrier.java 107 * Each use of the barrier is represented as a generation instance.
108 * The generation changes whenever the barrier is tripped, or
114 * There need not be an active generation if there has been a break
117 private static class Generation {
129 /** The current generation */
130 private Generation generation = new Generation(); field in class:CyclicBarrier
134 * on each generation. It is reset to parties on each new
135 * generation or when broken
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FontFallbackList.cpp 45 , m_generation(fontCache()->generation())
60 m_generation = fontCache()->generation();
104 ASSERT(fontCache()->generation() == m_generation);
117 ASSERT(fontCache()->generation() == m_generation);
FontCache.h 89 unsigned generation();
FontFallbackList.h 53 unsigned generation() const { return m_generation; } function in class:WebCore::FontFallbackList
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
portallocator.h 75 uint32 generation() { return generation_; } function in class:cricket::PortAllocatorSession
76 void set_generation(uint32 generation) { generation_ = generation; }
candidate.h 46 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; }
  /bionic/libc/private/
resolv_cache.h 45 extern void _resolv_cache_reset( unsigned generation );
  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 115 int32_t generation = -1; local
116 CHECK(msg->findInt32("generation", &generation));
117 if (generation != mSendSubtitleGeneration) {
157 int32_t generation; local
158 CHECK(msg->findInt32("generation", &generation));
159 if (generation != mSendSubtitleGeneration) {
242 msg->setInt32("generation", mSendSubtitleGeneration);
262 msg->setInt32("generation", mSendSubtitleGeneration)
    [all...]
  /external/e2fsprogs/misc/
lsattr.c 80 unsigned long generation; local
88 if (fgetversion (name, &generation) == -1) {
94 printf ("%5lu ", generation);
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 131 int32_t generation; local
132 CHECK(msg->findInt32("generation", &generation));
134 if (generation != mPullGeneration) {
216 msg->setInt32("generation", mPullGeneration);
  /external/qemu/distrib/sdl-1.2.15/src/video/ipod/
SDL_ipodvideo.c 64 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)) {
  /packages/apps/Browser/src/com/android/browser/util/
ThreadedCursorAdapter.java 57 long generation; field in class:ThreadedCursorAdapter.LoadContainer
119 || container.generation != mGeneration) {
177 && container.generation == mGeneration) {
185 container.generation = mGeneration;
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 73 * <li>"%g" represents the generation number to distinguish rotated logs</li>
81 * Normally, the generation numbers are not larger than the given file count and
83 * generation field("%g") has not been specified in the pattern, then the
84 * generation number after a dot will be added to the end of the file name.
92 * right of a dot. The generation of unique IDs for avoiding conflicts is only
167 for (int generation = 0; generation < count; generation++) {
169 files[generation] = new File(parseFileName(generation));
    [all...]
  /external/eigen/bench/btl/data/
mk_gnuplot_script.sh 4 echo $WHAT script generation
  /frameworks/base/libs/androidfw/
InputDevice.cpp 145 void InputDeviceInfo::initialize(int32_t id, int32_t generation,
148 mGeneration = generation;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
firewire-cdev.h 59 * @generation: New bus generation
73 __u32 generation; member in struct:fw_cdev_event_bus_reset
222 * @generation: The bus generation where packet is valid
236 __u32 generation; member in struct:fw_cdev_send_request
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
firewire-cdev.h 59 * @generation: New bus generation
73 __u32 generation; member in struct:fw_cdev_event_bus_reset
222 * @generation: The bus generation where packet is valid
236 __u32 generation; member in struct:fw_cdev_send_request

Completed in 857 milliseconds

1 2 3 4 5 6