Home
last modified time | relevance | path

Searched refs:snippets (Results 1 – 25 of 28) sorted by relevance

12

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
DBlockWriter.java26 private final List<Snippet> snippets; field in BlockWriter
29 this.snippets = Lists.newArrayList(); in BlockWriter()
33 snippets.add(Snippet.format(snippet, args)); in addSnippet()
38 snippets.add(snippet); in addSnippet()
43 return snippets.isEmpty(); in isEmpty()
48 for (Snippet snippet : snippets) { in write()
57 return FluentIterable.from(snippets) in referencedClasses()
DSnippet.java89 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));
/external/python/cpython2/Lib/test/
Dtest_transformer.py14 snippets = ['a, b = 1, 2',
18 for s in snippets:
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DProducerFactoryGenerator.java425 ImmutableList.Builder<Snippet> snippets = ImmutableList.builder();
428 snippets.add(Snippet.format(
435 snippets.add(frameworkTypeUsageStatement(
439 return snippets.build();
463 ImmutableList.Builder<Snippet> snippets = ImmutableList.builder();
464 snippets.add(Snippet.format("monitor.methodStarting();"));
DMapKeys.java249 ImmutableList.Builder<Snippet> snippets = ImmutableList.builder(); in visitArray() local
251 snippets.add(this.visit(values.get(i), p)); in visitArray()
253 return Snippet.format("{%s}", makeParametersSnippet(snippets.build())); in visitArray()
DAbstractComponentWriter.java683 ImmutableList<Snippet> snippets = snippetsBuilder.build(); in initializeFrameworkTypes() local
685 List<List<Snippet>> partitions = Lists.partition(snippets, SNIPPETS_PER_INITIALIZATION_METHOD); in initializeFrameworkTypes()
1127 ImmutableList.Builder<dagger.internal.codegen.writer.Snippet> snippets = in initializeMapBinding() local
1129 snippets.add(Snippet.format("%s.<%s, %s>builder(%d)", in initializeMapBinding()
1136 snippets.add( in initializeMapBinding()
1143 snippets.add(Snippet.format(" .build()")); in initializeMapBinding()
1145 return Snippet.concat(snippets.build()); in initializeMapBinding()
/external/eigen/unsupported/doc/
DCMakeLists.txt4 add_subdirectory(snippets)
/external/eigen/unsupported/
DREADME.txt41 unsupported/doc/snippets/.cpp <- code snippets for the doc
/external/eigen/unsupported/doc/snippets/
DCMakeLists.txt10 CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/doc/snippets/compile_snippet.cpp.in
/external/autotest/client/site_tests/accessibility_ChromeVoxSound/
Dcontrol19 Uses audio loopback to record snippets of audio, checking whether there was any
/external/harfbuzz_ng/win32/
Dcreate-lists.bat2 rem Simple .bat script for creating the NMake Makefile snippets.
/external/eigen/doc/
DCMakeLists.txt73 add_subdirectory(snippets)
DDoxyfile.in735 "${Eigen_SOURCE_DIR}/doc/snippets" \
737 "${Eigen_SOURCE_DIR}/unsupported/doc/snippets"
783 EXAMPLE_PATH = "${Eigen_SOURCE_DIR}/doc/snippets" \
784 "${Eigen_BINARY_DIR}/doc/snippets" \
789 "${Eigen_SOURCE_DIR}/unsupported/doc/snippets" \
790 "${Eigen_BINARY_DIR}/unsupported/doc/snippets" \
/external/python/cpython2/Doc/library/
Dtimeit.rst1 :mod:`timeit` --- Measure execution time of small code snippets
5 :synopsis: Measure the execution time of small code snippets.
93 Class for timing execution speed of small code snippets.
/external/curl/packages/Win32/cygwin/
DREADME106 example source code snippets, and the libcurl man pages."
/external/ltp/testcases/open_posix_testsuite/
DREADME94 The code snippets need to be as simple as possible, for the sake of
/external/universal-tween-engine/
DREADME.md105 Detailed documentation with code snippets and examples is available for the following topics:
/external/testng/
DANNOUNCEMENT.txt43 …w documentation, which has been considerably improved (highlighted code snippets, detailed DTD, an…
/external/skia/site/dev/tools/
Dmarkdown.md93 Format code snippets or other preformatted text. Just surround the code
/external/python/cpython2/Doc/using/
Dwindows.rst236 and external, and snippets exist to use these features.
/external/python/cpython2/Doc/tutorial/
Ddatastructures.rst290 same in both these snippets.
/external/llvm/docs/
DDeveloperPolicy.rst314 code snippets and gory details should be left to bug comments, web
/external/bison/
DChangeLog2693 * NEWS: Fix indentation of code snippets.
3226 Number mfcalc.y snippets so that they are output in
3498 doc: reformat grammar snippets.
/external/python/cpython2/Doc/whatsnew/
D2.3.rst1538 * The new :mod:`timeit` module helps measure how long snippets of Python code
D2.5.rst1326 being executed at all. This is intended for code snippets that are usage

12