Searched defs:Lambda (Results 1 - 25 of 31) sorted by relevance

12

/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/core_library/java/lang/
H A DAutoboxedTypes.java29 public interface Lambda { interface in class:AutoboxedTypes
33 public static Lambda autoboxedTypeLambda(Integer i) {
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
H A DLambda.java21 public class Lambda { class
25 public Lambda(List<String> names) { method in class:Lambda
/external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
H A Dtraining_utils.py114 from tensorflow.python.keras._impl.keras.layers.core import Lambda namespace
182 slice_i = Lambda(
/external/clang/unittests/Tooling/
H A DRecursiveASTVisitorTest.cpp19 bool VisitLambdaExpr(LambdaExpr *Lambda) { argument
20 PendingBodies.push(Lambda);
21 Match("", Lambda->getIntroducerRange().getBegin());
26 bool TraverseLambdaBody(LambdaExpr *Lambda) { argument
28 EXPECT_EQ(PendingBodies.top(), Lambda);
30 return TraverseStmt(Lambda->getBody());
59 bool VisitLambdaExpr(LambdaExpr *Lambda) { argument
60 if (Lambda->getCaptureDefault() != LCD_None) {
61 Match("", Lambda->getCaptureDefaultLoc());
/external/libopus/silk/float/
H A Dstructs_FLP.h78 silk_float Lambda; member in struct:__anon12255
/external/tensorflow/tensorflow/python/keras/_impl/keras/applications/
H A Dinception_resnet_v2.py44 from tensorflow.python.keras._impl.keras.layers import Lambda namespace
185 x = Lambda(
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
H A Dcore.py542 @tf_export('keras.layers.Lambda')
543 class Lambda(Layer): class in inherits:Layer
550 model.add(Lambda(lambda x: x ** 2))
564 model.add(Lambda(antirectifier))
595 super(Lambda, self).__init__(**kwargs)
607 raise TypeError('In Lambda, `output_shape` '
674 base_config = super(Lambda, self).get_config()
689 printable_module_name='function in Lambda layer')
702 printable_module_name='output_shape function in Lambda layer')
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1009 const LambdaExpr *Lambda = cast<LambdaExpr>(E); local
1012 Cap = Lambda->capture_init_begin(),
1013 CapEnd = Lambda->capture_init_end();
H A DSemaTemplateVariadic.cpp171 bool TraverseLambdaExpr(LambdaExpr *Lambda) { argument
174 if (!Lambda->containsUnexpandedParameterPack())
182 for (LambdaExpr::capture_iterator I = Lambda->capture_begin(),
183 E = Lambda->capture_end();
192 inherited::TraverseLambdaExpr(Lambda);
H A DAnalysisBasedWarnings.cpp424 enum { Function, Block, Lambda } funMode; enumerator in enum:__anon1777::CheckFallThroughDiagnostics::__anon1778
486 D.funMode = Lambda;
1286 Lambda enumerator in enum:__anon1781
1292 FunctionKind = Lambda;
H A DSemaLambda.cpp156 /// 'this' by passing in the index of the Lambda identified in step 'a')
446 LSI->Lambda = LambdaClass;
791 Context, LSI->Lambda, Var->getLocation(), Var->getLocation(),
796 LSI->Lambda->addDecl(Field);
1135 CXXRecordDecl *Class = LSI->Lambda;
1171 "Lambda's call operator should not have a reference qualifier");
1508 Class = LSI->Lambda;
1595 LambdaExpr *Lambda = LambdaExpr::Create(Context, Class, IntroducerRange, local
1634 ExprEvalContexts.back().Lambdas.push_back(Lambda);
1644 return MaybeBindToTemporary(Lambda);
1652 CXXRecordDecl *Lambda = Conv->getParent(); local
[all...]
/external/python/cpython2/Lib/compiler/
H A Dast.py772 class Lambda(Node): class in inherits:Node
801 return "Lambda(%s, %s, %s, %s)" % (repr(self.argnames), repr(self.defaults), repr(self.flags), repr(self.code))
/external/tensorflow/tensorflow/contrib/keras/api/keras/layers/
H A D__init__.py75 from tensorflow.python.keras._impl.keras.layers.core import Lambda namespace
/external/tensorflow/tensorflow/python/keras/layers/
H A D__init__.py78 from tensorflow.python.keras._impl.keras.layers.core import Lambda namespace
/external/clang/test/CXX/expr/expr.const/
H A Dp2-0x.cpp279 struct Lambda { struct
/external/clang/test/SemaCXX/
H A Dcxx98-compat.cpp48 void Lambda() { function
H A Ddllimport.cpp1485 auto Lambda = []() __declspec(dllimport) -> bool { return true; }; variable
H A Ddllexport.cpp1099 auto Lambda = []() __declspec(dllexport) -> bool { return true; }; variable
/external/clang/include/clang/Sema/
H A DScopeInfo.h669 CXXRecordDecl *Lambda; member in class:clang::sema::final
738 : CapturingScopeInfo(Diag, ImpCap_None), Lambda(nullptr),
/external/python/cpython2/Include/
H A DPython-ast.h215 } Lambda; member in union:_expr::__anon19188
458 #define Lambda(a0, a1, a2, a3, a4) _Py_Lambda(a0, a1, a2, a3, a4) macro
/external/clang/lib/AST/
H A DItaniumMangle.cpp180 // Lambda closure types are already numbered.
496 void mangleLambda(const CXXRecordDecl *Lambda);
1283 "Lambda type cannot have additional abi tags");
1571 void CXXNameMangler::mangleLambda(const CXXRecordDecl *Lambda) { argument
1581 if (Decl *Context = Lambda->getLambdaContextDecl()) {
1593 const FunctionProtoType *Proto = Lambda->getLambdaTypeInfo()->getType()->
1596 Lambda->getLambdaStaticInvoker());
1604 unsigned Number = Lambda->getLambdaManglingNumber();
1605 assert(Number > 0 && "Lambda should be mangled as an unnamed class");
/external/python/cpython3/Include/
H A DPython-ast.h238 } Lambda; member in union:_expr::__anon19743
533 #define Lambda(a0, a1, a2, a3, a4) _Py_Lambda(a0, a1, a2, a3, a4) macro
/external/clang/lib/CodeGen/
H A DCGClass.cpp2936 const CXXRecordDecl *Lambda = variable->getType()->getAsCXXRecordDecl(); local
2941 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda));
2949 assert(!Lambda->isGenericLambda() &&
2951 EmitForwardingCallToLambda(Lambda->getLambdaCallOperator(), CallArgs);
2966 const CXXRecordDecl *Lambda = MD->getParent(); local
2971 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda));
2979 const CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
2982 if (Lambda->isGenericLambda()) {
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1520 CXXRecordDecl::LambdaDefinitionData &Lambda local
1522 Lambda.Dependent = Record[Idx++];
1523 Lambda.IsGenericLambda = Record[Idx++];
1524 Lambda.CaptureDefault = Record[Idx++];
1525 Lambda.NumCaptures = Record[Idx++];
1526 Lambda.NumExplicitCaptures = Record[Idx++];
1527 Lambda.ManglingNumber = Record[Idx++];
1528 Lambda.ContextDecl = ReadDecl(Record, Idx);
1529 Lambda.Captures
1530 = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda
[all...]
/external/python/cpython2/Python/
H A DPython-ast.c748 Lambda_type = make_type("Lambda", expr_type, Lambda_fields, 2);
1558 Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, PyArena function
1564 "field args is required for Lambda");
1569 "field body is required for Lambda");
1576 p->v.Lambda.args = args;
1577 p->v.Lambda.body = body;
2626 value = ast2obj_arguments(o->v.Lambda.args);
2631 value = ast2obj_expr(o->v.Lambda.body);
4986 PyErr_SetString(PyExc_TypeError, "required field \"args\" missing from Lambda");
4998 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Lambda");
[all...]

Completed in 1588 milliseconds

12