/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p20.cpp | 11 auto lambda = []{}; local 12 destroy(&lambda);
|
p3.cpp | 4 auto lambda = [i]() -> void {}; // expected-note 2{{candidate constructor}} local 5 decltype(lambda) foo = { 1 }; // expected-error{{no matching constructor}} 6 static_assert(!__is_literal(decltype(lambda)), "");
|
p6.cpp | 7 const auto lambda = [](int x) { }; local 8 void (*fp3)(int) = lambda;
|
p23.cpp | 55 auto lambda = [](Args... inner_args) { return g(inner_args...); }; local 56 lambda(args...); 69 [as(args...)] {} (); // expected-error {{initializer missing for lambda capture 'as'}} expected-error {{multiple}}
|
/art/runtime/lambda/ |
leaking_allocator.cc | 18 #include "lambda/leaking_allocator.h" 23 namespace lambda { namespace in namespace:art 26 // TODO: use GetAllocatorForClassLoader to allocate lambda ArtMethod data. 32 } // namespace lambda
|
closure_builder-inl.h | 20 #include "lambda/closure_builder.h" 24 namespace lambda { namespace in namespace:art 42 } // namespace lambda
|
leaking_allocator.h | 25 namespace lambda { namespace in namespace:art 69 } // namespace lambda
|
art_lambda_method.cc | 17 #include "lambda/art_lambda_method.h" 20 #include "lambda/shorty_field_type.h" 23 namespace lambda { namespace in namespace:art 76 } // namespace lambda
|
box_table.h | 36 namespace lambda { namespace in namespace:art 41 * when a lambda is re-boxed. 43 * Conceptually, we store a mapping of Closures -> Weak Reference<Boxed Lambda Object>. 48 using ClosureType = art::lambda::Closure*; 54 // Unboxes an object back into the lambda. Returns false and throws an exception on failure. 58 // Sweep weak references to lambda boxes. Update the addresses if the objects have been 92 // Attempt to look up the lambda in the map, or return null if it's not there yet. 143 } // namespace lambda
|
closure_builder.h | 22 #include "lambda/shorty_field_type.h" 34 namespace lambda { namespace in namespace:art 54 // Mark this lambda closure to be captured. 101 } // namespace lambda
|
art_lambda_method.h | 25 namespace lambda { namespace in namespace:art 29 // Construct an art lambda method. 30 // The target method is the one invoked by invoke-lambda. 33 // Innate lambda means that the lambda was originally created via invoke-lambda. 34 // -- Non-innate lambdas (learned lambdas) come from a regular class that was boxed to lambda. 41 // Get the target method for this lambda that would be used by the invoke-lambda dex instruction. 46 // Get the compile-time size of lambda closures for this method in bytes [all...] |
closure.h | 21 #include "lambda/shorty_field_type.h" 32 namespace lambda { namespace in namespace:art 36 // Inline representation of a lambda closure. 52 // Get the target method, i.e. the method that will be dispatched into with invoke-lambda. 90 // The type at the index *must* be a lambda closure or a CHECK failure will occur. 93 // Copies a nested lambda closure at the captured variable index. 98 // Read out any non-lambda value as a copy. 160 // Compile-time known lambda information such as the type descriptor and size. 181 } // namespace lambda
|
closure_builder.cc | 16 #include "lambda/closure_builder.h" 20 #include "lambda/art_lambda_method.h" 21 #include "lambda/closure.h" 22 #include "lambda/shorty_field_type.h" 29 namespace lambda { namespace in namespace:art 40 * in the lower 2 bits of the lambda art method pointer. Whenever a closure is copied 184 << " don't support writing dynamically sized types other than lambda"; 209 } // namespace lambda
|
/external/eigen/doc/snippets/ |
ComplexEigenSolver_compute.cpp | 9 complex<float> lambda = ces.eigenvalues()[0]; variable 10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; 12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
|
EigenSolver_EigenSolver_MatrixType.cpp | 8 complex<double> lambda = es.eigenvalues()[0]; variable 9 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; 11 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
|
SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp | 9 double lambda = es.eigenvalues()[0]; variable 10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; 12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
|
SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp | 12 double lambda = es.eigenvalues()[0]; variable 13 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; 16 cout << "... and lambda * B * v = " << endl << lambda * B * v << endl << endl;
|
/external/clang/test/Index/ |
cxx11-lambdas.cpp | 7 auto lambda = [&localA, localB] (Integer x) -> Integer { local
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/ |
RaycastResult.java | 29 public float lambda = 0.0f; field in class:RaycastResult 33 lambda = argOther.lambda;
|
/external/clang/test/Analysis/ |
lambdas-generalized-capture.cpp | 7 auto lambda = [x=v]() { local 11 int result = lambda(); 17 auto lambda = [x=v++]() { local 22 int r1 = lambda(); 23 int r2 = lambda(); 35 auto lambda = [x=addOne(v)]() { local 39 int result = lambda(); 44 auto lambda = [x=(p ? 1 : 2)]() { local 48 int result = lambda();
|
/external/clang/test/CodeGenCXX/ |
exceptions-seh-filter-captures.cpp | 62 auto lambda = [&]() { local 67 // FIXME: Test 'l1' when we can capture the lambda's 'this' decl. 70 lambda();
|
blocks-cxx11.cpp | 98 auto lambda = [a]() { local 101 lambda(); // make sure we emit the invocation function
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/ |
btGjkConvexCast.cpp | 55 btScalar lambda = btScalar(0.); local 66 btScalar lastLambda = lambda; 117 lambda = lambda - dLambda; 119 if (lambda > btScalar(1.)) 122 if (lambda < btScalar(0.)) 126 if (lambda <= lastLambda) 132 lastLambda = lambda; 134 //interpolate to next lambda 135 result.DebugDraw( lambda ); [all...] |
/external/opencv3/modules/imgproc/perf/ |
perf_filter2d.cpp | 60 double lambda = 11; local 63 Mat gaborKernel = getGaborKernel(Size(kernelSize, kernelSize), sigma, theta, lambda, gamma);
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_framestitching.cpp | 30 double N[16],q[4],lambda[4],lambda_max; local 50 db_RealEigenvalues4x4(lambda,&nr_roots,N,1); 53 lambda_max=lambda[0]; 56 if(lambda[1]>lambda_max) lambda_max=lambda[1]; 59 if(lambda[2]>lambda_max) lambda_max=lambda[2]; 61 if(nr_roots>=4) if(lambda[3]>lambda_max) lambda_max=lambda[3];
|