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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
function-length-accessor.js 10 // long comment to trigger lazy compilation.
11 // long comment to trigger lazy compilation.
12 // long comment to trigger lazy compilation.
13 // long comment to trigger lazy compilation.
14 // long comment to trigger lazy compilation.
15 // long comment to trigger lazy compilation.
16 // long comment to trigger lazy compilation.
17 // long comment to trigger lazy compilation.
18 // long comment to trigger lazy compilation.
19 // long comment to trigger lazy compilation
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkTLazy.h 18 template <typename T> void* operator new(size_t, SkTLazy<T>* lazy);
64 * will always return the same pointer, so if it is called on a lazy that
78 * Destroy the lazy object (if it was created via init() or set())
106 friend void* operator new<T>(size_t, SkTLazy* lazy);
113 template <typename T> void* operator new(size_t, SkTLazy<T>* lazy) {
114 SkASSERT(!lazy->isValid());
115 lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
116 return lazy->fPtr;
  /external/skia/include/core/
SkTLazy.h 18 template <typename T> void* operator new(size_t, SkTLazy<T>* lazy);
64 * will always return the same pointer, so if it is called on a lazy that
78 * Destroy the lazy object (if it was created via init() or set())
106 friend void* operator new<T>(size_t, SkTLazy* lazy);
113 template <typename T> void* operator new(size_t, SkTLazy<T>* lazy) {
114 SkASSERT(!lazy->isValid());
115 lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
116 return lazy->fPtr;
  /external/chromium_org/third_party/skia/tests/
CachedDecodingPixelRefTest.cpp 116 SkBitmap lazy; local
117 bool installSuccess = install(encoded.get(), &lazy);
122 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
124 SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
125 REPORTER_ASSERT(reporter, NULL != lazy.getPixels());
126 if (NULL == lazy.getPixels()) {
131 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
133 SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
134 REPORTER_ASSERT(reporter, NULL != lazy.getPixels());
135 if (NULL == lazy.getPixels())
257 SkBitmap lazy; local
    [all...]
  /external/skia/tests/
CachedDecodingPixelRefTest.cpp 116 SkBitmap lazy; local
117 bool installSuccess = install(encoded.get(), &lazy);
122 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
124 SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
125 REPORTER_ASSERT(reporter, NULL != lazy.getPixels());
126 if (NULL == lazy.getPixels()) {
131 REPORTER_ASSERT(reporter, NULL == lazy.getPixels());
133 SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
134 REPORTER_ASSERT(reporter, NULL != lazy.getPixels());
135 if (NULL == lazy.getPixels())
257 SkBitmap lazy; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-350434.js 18 // This allocates a heap number, causing a GC, triggering lazy deopt.
22 // a lazy deopt when that map dies.
regress-1145.js 28 // Flags: --opt-eagerly --debug-code --lazy
38 // This file must be at least 1024 bytes long to trigger lazy compilation.
42 // Must be lazy. Must throw SyntaxError during compilation.
regress-parse-use-strict.js 28 // Filler long enough to trigger lazy parsing.
40 // lazy parsing is triggered. Otherwise the bug won't reproduce.
  /external/eigen/bench/
basicbenchmark.h 19 m = (I + 0.00005 * (m + m.lazy() * m)).eval();
25 m = (I + 0.00005 * (m + m.lazy() * m)).evalOMP();
  /development/apps/Development/src/com/android/development/
Details.java 90 mLinearLayout.addView(label, lazy());
91 mLinearLayout.addView(contents, lazy());
109 LinearLayout.LayoutParams lazy() method in class:Details
134 mLinearLayout.addView(error, 0, lazy());
  /external/eigen/Eigen/src/Eigen2Support/
Lazy.h 15 /** \deprecated it is only used by lazy() which is deprecated
43 MatrixBase<Derived>::lazy() const function in class:Eigen::MatrixBase
50 * Overloaded to perform an efficient C += (A*B).lazy() */
60 * Overloaded to perform an efficient C -= (A*B).lazy() */
  /external/chromium_org/extensions/browser/
extension_message_filter.h 65 bool lazy);
69 bool lazy);
extension_message_filter.cc 140 bool lazy) {
148 event_name, process, extension_id, filter, lazy);
155 bool lazy) {
163 event_name, process, extension_id, filter, lazy);
  /external/eigen/test/eigen2/
product.h 70 VERIFY_IS_APPROX(m3, m1.lazy() * (m1.transpose()*m2));
81 s1 += (square.lazy() * m1)(r,c);
101 res += (m1 * m2.transpose()).lazy();
108 vcres += (m1.transpose() * v1).lazy();
124 res2 += (m1.transpose() * m2).lazy();
  /external/chromium_org/base/
lazy_instance_unittest.cc 46 explicit SlowDelegate(base::LazyInstance<SlowConstructor>* lazy)
47 : lazy_(lazy) {}
  /external/markdown/MarkdownTest/Tests_2004/
Ordered and unordered lists.text 89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
  /external/clang/test/SemaCXX/
warn-unused-result.cpp 60 void lazy() { function in namespace:warn_unused_CXX11
  /external/eigen/bench/btl/libs/eigen2/
eigen2_interface.hh 97 X = (A*B).lazy();
101 X = (A.transpose()*B.transpose()).lazy();
105 X = (A.transpose()*A).lazy();
109 X = (A*A.transpose()).lazy();
113 X = (A*B)/*.lazy()*/;
117 X = (A.transpose()*B)/*.lazy()*/;
  /external/chromium_org/extensions/renderer/
event_bindings.cc 158 // the background page is the only lazy page, we know this is the first
242 bool lazy = IsLazyBackgroundPage(context()->GetRenderView(), local
245 extension_id, event_name, *filter, lazy));
270 bool lazy = is_manual && IsLazyBackgroundPage(context()->GetRenderView(), local
274 extension_id, event_name, *event_matcher->value(), lazy));
  /external/eigen/doc/
tutorial.cpp 50 Eigen::Matrix4f other = (m4 * m4).lazy(); // forces lazy evaluation
51 m4 = m4 + m4; // here Eigen goes for lazy evaluation, as with most expressions
52 m4 = -m4 + m4 + 5 * m4; // same here, Eigen chooses lazy evaluation for all that.
58 m4 = m4 * m4.transpose(); // same here, lazy evaluation of the transpose.
  /hardware/intel/common/libwsbm/src/
wsbm_mallocpool.c 81 pool_waitIdle(struct _WsbmBufStorage *buf __attribute__ ((unused)), int lazy __attribute__ ((unused)))
wsbm_pool.h 79 int (*waitIdle) (struct _WsbmBufStorage * buf, int lazy);
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-lazy-deopt.js 30 // Test lazy deoptimization after CallFunctionStub.

Completed in 1858 milliseconds

1 2 3 4 5 6 7 8 91011>>