HomeSort by relevance Sort by last modified time
    Searched refs:captures (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /external/v8/src/regexp/
interpreter-irregexp.h 22 int* captures,
  /external/r8/src/main/java/com/android/tools/r8/ir/desugar/
SynthesizedLambdaSourceCode.java 33 final DexType[] captures() { method in class:SynthesizedLambdaSourceCode
34 DexTypeList captures = descriptor().captures; local
35 assert captures != null;
36 return captures.values;
LambdaConstructorSourceCode.java 30 DexType[] capturedTypes = captures();
51 return captures().length == 0
60 if (captures().length == 0) {
62 return ((LambdaConstructorSourceCode) obj).captures().length == 0;
LambdaDescriptor.java 43 final DexTypeList captures; field in class:LambdaDescriptor
54 captures = null;
60 DexMethodHandle implHandle, DexType mainInterface, DexTypeList captures) {
68 assert captures != null;
75 this.captures = captures;
85 DexType[] captures = this.captures.values; local
86 assert captures.length > 0 || params.length > 0;
87 return captures.length > 0 ? captures[0] : params[0]
254 DexTypeList captures = lambdaFactoryProto.parameters; local
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/util/
RegexTrie.java 40 * to the list of captures (if enabled) and return the value associated with the wildcard.
44 * List<List<String>> captures = new LinkedList<List<String>>();
48 * trie.retrieve(captures, "a", "c", "e");
49 * // returns 2. captures is now [[], ["c"], ["e"]]
50 * trie.retrieve(captures, "a", "b");
51 * // returns 4. captures is now [[], []]
52 * trie.retrieve(captures, "a", "b", "c");
53 * // returns null. captures is now [[], []]
195 V recursiveRetrieve(List<List<String>> captures, List<String> strings) {
217 if (captures != null)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
RegexTrie.java 41 * to the list of captures (if enabled) and return the value associated with the wildcard.
45 * List&lt;List&lt;String&gt;&gt; captures = new LinkedList&lt;List&lt;String&gt;&gt;();
49 * trie.retrieve(captures, "a", "c", "e");
50 * // returns 2. captures is now [[], ["c"], ["e"]]
51 * trie.retrieve(captures, "a", "b");
52 * // returns 4. captures is now [[], []]
53 * trie.retrieve(captures, "a", "b", "c");
54 * // returns null. captures is now [[], []]
195 V recursiveRetrieve(List<List<String>> captures, List<String> strings) {
217 if (captures != null)
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/
ConsoleTest.java 219 CaptureList captures = new CaptureList(); local
226 Runnable runnable = trie.retrieve(captures, command);
229 mConsole.executeCmdRunnable(runnable, captures);
239 CaptureList captures = new CaptureList(); local
246 Runnable runnable = trie.retrieve(captures, command);
249 mConsole.executeCmdRunnable(runnable, captures);
263 CaptureList captures = new CaptureList(); local
270 Runnable runnable = trie.retrieve(captures, command);
273 mConsole.executeCmdRunnable(runnable, captures);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 19 T captures(T x, T y) { function
35 template int captures(int, int);
36 template X captures(X, X);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 25 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 28 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 31 (* proto - This type represents the "prototype" for a function, which captures
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 25 (* proto - This type represents the "prototype" for a function, which captures
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 28 (* proto - This type represents the "prototype" for a function, which captures
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 31 (* proto - This type represents the "prototype" for a function, which captures
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 81 for (const auto &I : block->captures()) {
  /art/tools/ahat/src/heapdump/
AhatSnapshot.java 19 import com.android.tools.perflib.captures.DataBuffer;
20 import com.android.tools.perflib.captures.MemoryMappedFileBuffer;
  /prebuilts/go/darwin-x86/src/runtime/trace/
trace.go 6 // The tracer captures a wide range of execution events like goroutine
  /prebuilts/go/linux-x86/src/runtime/trace/
trace.go 6 // The tracer captures a wide range of execution events like goroutine
  /external/autotest/server/cros/chaos_lib/
chaos_analyzer.py 152 packet captures.
226 packet captures.
277 help='analyze only packet captures.')

Completed in 1959 milliseconds

1 2 3 4 5 6 7 8