Home
last modified time | relevance | path

Searched refs:lambdas (Results 1 – 22 of 22) sorted by relevance

/external/clang/test/Profile/
Dcxx-lambda.cpp19 void lambdas() { in lambdas() function
56 lambdas(); in main()
/external/desugar/java/com/google/devtools/build/android/desugar/
DDesugar.java208 private final LambdaClassMaker lambdas; field in Desugar
224 this.lambdas = new LambdaClassMaker(dumpDirectory); in Desugar()
317 ImmutableMap<Path, LambdaInfo> lambdasLeftBehind = lambdas.drain(); in desugarOneInput()
395 ImmutableMap<Path, LambdaInfo> lambdaClasses = lambdas.drain(); in desugarAndWriteDumpedLambdaClassesToOutput()
481 visitor = new LambdaDesugaring(visitor, loader, lambdas, null, allowDefaultMethods); in createClassVisitorsForDumpedLambdaClasses()
522 visitor, loader, lambdas, interfaceLambdaMethodCollector, allowDefaultMethods); in createClassVisitorsForClassesInInputs()
DLambdaDesugaring.java56 private final LambdaClassMaker lambdas; field in LambdaDesugaring
68 LambdaClassMaker lambdas, in LambdaDesugaring() argument
73 this.lambdas = lambdas; in LambdaDesugaring()
387 lambdas.generateLambdaClass( in visitInvokeDynamicInsn()
/external/clang/test/CodeGenCXX/
Dpass-object-size.cpp5 namespace lambdas { namespace
/external/clang/test/Lexer/
Dcxx-features.cpp82 #if check(lambdas, 0, 200907, 200907, 200907)
/external/clang/test/SemaCXX/
Dpass-object-size.cpp118 namespace lambdas { namespace
Duninitialized.cpp881 namespace lambdas { namespace
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp1.cpp197 namespace lambdas { namespace
/external/clang/test/Analysis/
Dlambdas.mm1 …analyzer-checker=core,deadcode,debug.ExprInspection -analyzer-config inline-lambdas=true -verify %s
/external/googletest/googlemock/docs/
DDesignDoc.md229 C++0x will support lambdas, but they are not part of C++ right now.
258 available, we may want to support using lambdas as actions.
/external/clang/docs/
DMSVCCompatibility.rst111 implementation of lambdas except for providing overloads for conversion to
DLanguageExtensions.rst658 C++11 lambdas
662 determine if support for lambdas is enabled.
836 C++1y generic lambdas
841 (polymorphic) lambdas is enabled
1141 Interoperability with C++11 lambdas
1144 Clang provides interoperability between C++11 lambdas and blocks-based APIs, by
/external/llvm/docs/tutorial/
DBuildingAJIT1.rst245 function. This function takes two lambdas [3]_ and returns a
370 .. [3] Actually they don't have to be lambdas, any object with a call operator
/external/python/cpython2/Doc/faq/
Dprogramming.rst348 Why do lambdas defined in a loop with different values all return the same result?
351 Assume you use a for loop to define a few different lambdas (or even plain
358 This gives you a list that contains 5 lambdas that calculate ``x**2``. You
368 This happens because ``x`` is not local to the lambdas, but is defined in
372 changing the value of ``x`` and see how the results of the lambdas change::
379 lambdas, so that they don't rely on the value of the global ``x``::
396 Note that this behaviour is not peculiar to lambdas, but applies to regular
Ddesign.rst381 where they add functionality, Python lambdas are only a shorthand notation if
/external/libcxx/utils/google-benchmark/
DREADME.md224 as a benchmark. Including capturing lambdas and function objects. This
/external/llvm/docs/
DCodingStandards.rst110 * But *not* lambdas with default arguments.
535 If there are multiple multi-line lambdas in a statement, or there is anything
568 function arguments, and lambdas. We suggest new code use a simple rule for
/external/google-benchmark/
DREADME.md226 as a benchmark. Including capturing lambdas and function objects. This
/external/eigen/doc/
DQuickReference.dox475 …ref</a> (c++11), or <a href="http://en.cppreference.com/w/cpp/language/lambda">lambdas</a> (c++11):
/external/python/cpython2/Doc/whatsnew/
D2.5.rst115 comprehensions and lambdas could look like incorrect conditional expressions.
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/python/cpython2/Misc/
DNEWS4134 - Issue #13094: add "Why do lambdas defined in a loop with different values