HomeSort by relevance Sort by last modified time
    Searched refs:Lambda (Results 26 - 50 of 117) sorted by null

12 3 4 5

  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
ReflectionUtil.cs 65 return Expression.Lambda<Func<IMessage, object>>(upcast, parameter).Compile();
78 return Expression.Lambda<Func<IMessage, T>>(upcast, parameter).Compile();
92 return Expression.Lambda<Action<IMessage, object>>(call, targetParameter, argParameter).Compile();
104 return Expression.Lambda<Action<IMessage>>(call, targetParameter).Compile();
  /external/dokka/maven/org/jetbrains/dokka/dokka-gradle-plugin/0.9.17-g20190326/
dokka-gradle-plugin-0.9.17-g20190326.jar 
  /external/kotlinc/lib/
android-extensions-compiler.jar 
kotlin-scripting-common.jar 
kotlin-reflect.jar 
kotlin-daemon-client.jar 
jvm-abi-gen.jar 
kotlin-runner.jar 
kotlin-compiler.jar 
kotlin-source-sections-compiler-plugin.jar 
kotlin-imports-dumper-compiler-plugin.jar 
  /external/google-benchmark/include/benchmark/
benchmark.h     [all...]
  /external/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h     [all...]
  /external/tensorflow/tensorflow/python/autograph/impl/
conversion_test.py 143 f = lambda x: b * x if x > 0 else -x
149 self.assertIsInstance(fn_node.value, gast.Lambda)
155 f, _ = (lambda x: a * x, lambda y: b * y)
161 self.assertIsInstance(fn_node.value, gast.Lambda)
167 f, _ = (lambda x: a * x, lambda x: b * x)
174 # pylint:disable=g-long-lambda
176 lambda x: (x # intentional wrap
178 # pylint:enable=g-long-lambda
    [all...]
  /external/tensorflow/tensorflow/python/keras/utils/
multi_gpu_utils.py 153 from tensorflow.python.keras.layers.core import Lambda
227 slice_i = Lambda(
tf_utils_test.py 60 CustomClass, lambda value, **_: value.value())
97 Foo, lambda x, *args, **kwargs: x.value)
100 class PlumbingLayer(keras.layers.Lambda):
  /external/clang/lib/Sema/
SemaLambda.cpp 10 // This file implements semantic analysis for C++ lambda expressions.
28 /// enclosing lambda (to the current lambda) that is 'capture-ready' for
29 /// the variable referenced in the current lambda (i.e. \p VarToCapture).
31 /// of the capture-ready lambda's LambdaScopeInfo.
33 /// Climbs down the stack of lambdas (deepest nested lambda - i.e. current
34 /// lambda - is on top) to determine the index of the nearest enclosing/outer
35 /// lambda that is ready to capture the \p VarToCapture being referenced in
36 /// the current lambda.
37 /// As we climb down the stack, we want the index of the first such lambda
    [all...]
SemaTemplateVariadic.cpp 166 /// \brief Note whether we're traversing a lambda containing an unexpanded
169 /// lambda, we don't propagate the 'contains unexpanded parameter pack' bit
171 bool TraverseLambdaExpr(LambdaExpr *Lambda) {
172 // The ContainsUnexpandedParameterPack bit on a lambda is always correct,
173 // even if it's contained within another lambda.
174 if (!Lambda->containsUnexpandedParameterPack())
181 // when the lambda is expanded.
182 for (LambdaExpr::capture_iterator I = Lambda->capture_begin(),
183 E = Lambda->capture_end();
192 inherited::TraverseLambdaExpr(Lambda);
    [all...]
ScopeInfo.cpp 11 // information about a single function, block, lambda, or method body.
109 RD = LSI->Lambda;
  /external/tensorflow/tensorflow/python/keras/layers/
core.py 161 lambda: array_ops.identity(inputs))
646 @keras_export('keras.layers.Lambda')
647 class Lambda(Layer):
650 The `Lambda` layer exists so that aribtrary TensorFlow functions
652 models. `Lambda` layers are best suited for simple operations or
655 when saving a Model, `Lambda` layers are saved by serializing the
665 model.add(Lambda(lambda x: x ** 2))
679 model.add(Lambda(antirectifier))
682 Variables can be created within a `Lambda` layer. Like wit
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 11 // information about a single function, block, lambda, or method body.
502 /// the type of the non-static data member in the lambda/block structure
531 /// is deduced (e.g. a lambda or block with omitted return type).
668 /// \brief The class that describes the lambda.
669 CXXRecordDecl *Lambda;
671 /// \brief The lambda's compiler-generated \c operator().
674 /// \brief Source range covering the lambda introducer [...].
685 /// \brief Whether this is a mutable lambda.
694 /// \brief Whether the lambda contains an unexpanded parameter pack.
697 /// \brief If this is a generic lambda, use this as the depth of
    [all...]
  /external/libopus/silk/float/
encode_frame_FLP.c 262 sEncCtrl.Lambda = silk_max_float(sEncCtrl.Lambda*1.5f, 1.5f);
wrappers_FLP.c 133 Lambda_Q10 = ( opus_int )silk_float2int( psEncCtrl->Lambda * 1024.0f );
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 48 void Lambda() {
49 []{}(); // expected-warning {{lambda expressions are incompatible with C++98}}
  /external/python/cpython3/Python/
symtable.c 202 static identifier top = NULL, lambda = NULL, genexpr = NULL, variable
    [all...]

Completed in 766 milliseconds

12 3 4 5