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

1 2

  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
BlockWriter.java 26 private final List<Snippet> snippets; field in class:BlockWriter
29 this.snippets = Lists.newArrayList();
33 snippets.add(Snippet.format(snippet, args));
38 snippets.add(snippet);
43 return snippets.isEmpty();
48 for (Snippet snippet : snippets) {
57 return FluentIterable.from(snippets)
Snippet.java 89 final ImmutableList<Snippet> snippets;
91 CompoundSnippet(String joinToken, ImmutableList<Snippet> snippets) {
93 this.snippets = snippets;
98 return FluentIterable.from(snippets)
111 Iterator<Snippet> snippetIterator = snippets.iterator();
167 public static Snippet concat(Iterable<Snippet> snippets) {
168 return join("\n", snippets);
174 public static Snippet join(String joinToken, Iterable<Snippet> snippets) {
175 return new CompoundSnippet(joinToken, ImmutableList.copyOf(snippets));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_transformer.py 14 snippets = ['a, b = 1, 2',
18 for s in snippets:
  /external/python/cpython2/Lib/test/
test_transformer.py 14 snippets = ['a, b = 1, 2',
18 for s in snippets:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_transformer.py 14 snippets = ['a, b = 1, 2',
18 for s in snippets:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_transformer.py 14 snippets = ['a, b = 1, 2',
18 for s in snippets:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 14 snippets = ['a, b = 1, 2',
18 for s in snippets:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 14 snippets = ['a, b = 1, 2',
18 for s in snippets:
  /prebuilts/go/darwin-x86/doc/progs/
defer.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
defer2.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
error2.go 5 // This file contains the code snippets included in "Error Handling and Go."
interface.go 5 // This file contains the code snippets included in "The Laws of Reflection."
error3.go 5 // This file contains the code snippets included in "Error Handling and Go."
error4.go 5 // This file contains the code snippets included in "Error Handling and Go."
error.go 5 // This file contains the code snippets included in "Error Handling and Go."
interface2.go 5 // This file contains the code snippets included in "The Laws of Reflection."
  /prebuilts/go/linux-x86/doc/progs/
defer.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
defer2.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
error2.go 5 // This file contains the code snippets included in "Error Handling and Go."
interface.go 5 // This file contains the code snippets included in "The Laws of Reflection."
error3.go 5 // This file contains the code snippets included in "Error Handling and Go."
error4.go 5 // This file contains the code snippets included in "Error Handling and Go."
error.go 5 // This file contains the code snippets included in "Error Handling and Go."
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProducerFactoryGenerator.java 242 /** The snippets to be passed to the produces method itself. */
425 ImmutableList.Builder<Snippet> snippets = ImmutableList.builder();
428 snippets.add(Snippet.format(
435 snippets.add(frameworkTypeUsageStatement(
439 return snippets.build();
449 * @param parameterSnippets The snippets for all the parameters to the producer method.
463 ImmutableList.Builder<Snippet> snippets = ImmutableList.builder();
464 snippets.add(Snippet.format("monitor.methodStarting();"));
MapKeys.java 55 * Methods for extracting {@link MapKey} annotations and key snippets from binding elements.
249 ImmutableList.Builder<Snippet> snippets = ImmutableList.builder(); local
251 snippets.add(this.visit(values.get(i), p));
253 return Snippet.format("{%s}", makeParametersSnippet(snippets.build()));

Completed in 471 milliseconds

1 2