Searched defs:lambda (Results 1 - 16 of 16) sorted by relevance

/art/runtime/lambda/
H A Dclosure_builder-inl.h20 #include "lambda/closure_builder.h"
24 namespace lambda { namespace in namespace:art
42 } // namespace lambda
H A Dleaking_allocator.cc18 #include "lambda/leaking_allocator.h"
23 namespace lambda { namespace in namespace:art
26 // TODO: use GetAllocatorForClassLoader to allocate lambda ArtMethod data.
32 } // namespace lambda
H A Dbox_table.h36 namespace lambda { namespace in namespace:art
41 * when a lambda is re-boxed.
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
H A Dart_lambda_method.cc17 #include "lambda/art_lambda_method.h"
20 #include "lambda/shorty_field_type.h"
23 namespace lambda { namespace in namespace:art
76 } // namespace lambda
H A Dclosure_builder.h22 #include "lambda/shorty_field_type.h"
34 namespace lambda { namespace in namespace:art
54 // Mark this lambda closure to be captured.
101 } // namespace lambda
H A Dleaking_allocator.h25 namespace lambda { namespace in namespace:art
69 } // namespace lambda
H A Dart_lambda_method.h25 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 closure
[all...]
H A Dclosure.h21 #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
H A Dclosure_builder.cc16 #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
H A Dbox_table.cc16 #include "lambda/box_table.h"
21 #include "lambda/closure.h"
22 #include "lambda/leaking_allocator.h"
30 namespace lambda { namespace in namespace:art
31 // Temporarily represent the lambda Closure as its raw bytes in an array.
61 new_weaks_condition_("lambda box table allowed weaks", *Locks::lambda_table_lock_) {}
91 // Functional f = () -> 5; // vF = create-lambda
92 // Object a = f; // vA = box-lambda vA
93 // Object b = f; // vB = box-lambda vB
103 // Release the lambda tabl
[all...]
H A Dclosure.cc17 #include "lambda/closure.h"
20 #include "lambda/art_lambda_method.h"
27 namespace lambda { namespace in namespace:art
330 "result must be a lambda type");
413 } // namespace lambda
H A Dclosure_test.cc18 #include "lambda/art_lambda_method.h"
19 #include "lambda/closure.h"
20 #include "lambda/closure_builder.h"
21 #include "lambda/closure_builder-inl.h"
33 using Closure = art::lambda::Closure;
62 namespace lambda { namespace in namespace:art
90 // The lambda method's captured variables types must match the ones in 'args'.
124 // The lambda method's captured variables types must match the ones in 'args'.
234 // Important: This fake lambda method needs to out-live any Closures we create with it.
355 } // namespace lambda
[all...]
H A Dshorty_field_type.h33 namespace lambda { namespace in namespace:art
248 // Is this a lambda?
386 // Returns true if 'T' is a lambda (i.e. it is a closure with unknown static data);
472 } // namespace lambda
H A Dshorty_field_type_test.cc17 #include "lambda/shorty_field_type.h"
29 namespace lambda { namespace in namespace:art
111 // The letters are the same as JNI letters, with kS_ being a lambda since \ is not available.
345 SCOPED_TRACE("lambda");
353 } // namespace lambda
/art/compiler/utils/arm/
H A Dassembler_arm32_test.cc448 auto lambda = [&] (Args... args) { f(*reg, args...); }; // NOLINT [readability/braces] [4] local
449 TemplateHelper(std::function<void(Args...)>(lambda), depth + 1, without_pc,
475 auto lambda = [&] (Args... args) { f(shift, args...); }; // NOLINT [readability/braces] [4] local
476 TemplateHelper(std::function<void(Args...)>(lambda), depth, without_pc,
501 auto lambda = [&] (Args... args) { f(c, args...); }; // NOLINT [readability/braces] [4] local
502 TemplateHelper(std::function<void(Args...)>(lambda), depth, without_pc,
527 auto lambda = [&] (Args... args) { f(s, args...); }; // NOLINT [readability/braces] [4] local
528 TemplateHelper(std::function<void(Args...)>(lambda), depth, without_pc,
/art/runtime/
H A Druntime.h58 namespace lambda { namespace in namespace:art
60 } // namespace lambda
560 lambda::BoxTable* GetLambdaBoxTable() const {
753 std::unique_ptr<lambda::BoxTable> lambda_box_table_;

Completed in 77 milliseconds