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

1 2 3 4

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
everything.js 62 // 'the quick brown fox jumped over the lazy dogs'.match(/((\w+)\s*)+/)
63 testcases[count++] = new TestCase ( SECTION, "'the quick brown fox jumped over the lazy dogs'.match(/((\\w+)\\s*)+/)",
64 String(['the quick brown fox jumped over the lazy dogs','dogs','dogs']),String('the quick brown fox jumped over the lazy dogs'.match(/((\w+)\s*)+/)));
  /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/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();
eigen2_triangular.cpp 60 m1.template part<Eigen::UpperTriangular>() = (m2.transpose() * m2).lazy();
66 m1.template part<Eigen::LowerTriangular>() = (m2.transpose() * m2).lazy();
eigen2_submatrices.cpp 74 VERIFY_IS_APPROX(square.row(r1).eigen2_dot(m1.col(c1)), (square.lazy() * m1.conjugate())(r1,c1));
  /external/chromium/base/
lazy_instance_unittest.cc 45 explicit SlowDelegate(base::LazyInstance<SlowConstructor>* lazy)
46 : 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/v8/test/mjsunit/regress/
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-1708.js 37 // Fill heap to increase old-space size and trigger lazy sweeping on
47 // located in a lazy swept page with intact marking bits. Now shift
57 // Scavenging operations cause lazy sweeping to advance and verify
regress-1201933.js 29 // failure during lazy compilation.
regress-1132.js 28 // Test the case when exception is thrown from the parser when lazy
regress-97116.js 31 // have a pending lazy deoptimization on the stack.
regress-lazy-deopt-reloc.js 33 // information enough to have room for lazy deoptimization.
  /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.
  /external/v8/test/mjsunit/compiler/
regress-lazy-deopt.js 30 // Test lazy deoptimization after CallFunctionStub.
  /external/v8/test/mjsunit/harmony/
block-lazy-compile.js 29 // Test deserialization of block contexts during lazy compilation
  /ndk/build/core/
default-build-commands.mk 54 TARGET_DISABLE_RELRO_LDFLAGS := -Wl,-z,norelro -Wl,-z,lazy
100 # IMPORTANT: The following definitions must use lazy assignment because
  /external/v8/test/mjsunit/
arguments-call-apply.js 37 assertEquals(6, sum.call(this, 1, 2, 3), "lazy call");
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 224 res.matrix().template block<Dim,HDim>(0,0) = (mat * t.matrix().template block<Dim,HDim>(0,0)).lazy();
386 linear() = (linear() * other.asDiagonal()).lazy();
411 m_matrix.template block<Dim,HDim>(0,0) = (other.asDiagonal() * m_matrix.template block<Dim,HDim>(0,0)).lazy();
760 res.linear() = (tr.linear() * other).lazy();

Completed in 615 milliseconds

1 2 3 4