Home
last modified time | relevance | path

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

123

/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/
DREADME.txt41 unsupported/doc/snippets/.cpp <- code snippets for the doc
/external/eigen/unsupported/doc/
DCMakeLists.txt4 add_subdirectory(snippets)
/external/eigen/unsupported/doc/snippets/
DCMakeLists.txt10 CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/doc/snippets/compile_snippet.cpp.in
/external/libchrome/mojo/public/java/bindings/
DREADME.md8 This document provides a brief guide to API usage with example code snippets.
/external/fonttools/Snippets/
DREADME.md1 This directory includes snippets that people might useful to get ideas from.
/external/libchrome/mojo/public/java/system/
DREADME.md9 code snippets.
/external/autotest/client/site_tests/accessibility_ChromeVoxSound/
Dcontrol19 Uses audio loopback to record snippets of audio, checking whether there was any
/external/python/pyasn1/
DTODO.rst49 Document more API, add notes and example 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/eigen/doc/
DCMakeLists.txt73 add_subdirectory(snippets)
/external/python/cpython3/Doc/library/
Dtimeit.rst1 :mod:`timeit` --- Measure execution time of small code snippets
5 :synopsis: Measure the execution time of small code snippets.
95 Class for timing execution speed of small code snippets.
/external/universal-tween-engine/
DREADME.md105 Detailed documentation with code snippets and examples is available for the following topics:
/external/ltp/testcases/open_posix_testsuite/
DREADME94 The code snippets need to be as simple as possible, for the sake of
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmFloatControlsTests.cpp2189 TypeSnippetsSP snippets; member
2205 m_typeData[FP16].snippets = TypeSnippetsSP(new TypeSnippets<deFloat16>); in TestGroupBuilderBase()
2209 m_typeData[FP32].snippets = TypeSnippetsSP(new TypeSnippets<float>); in TestGroupBuilderBase()
2213 m_typeData[FP64].snippets = TypeSnippetsSP(new TypeSnippets<double>); in TestGroupBuilderBase()
2231 const TypeSnippetsSP outTypeSnippets = m_typeData.at(outFloatType).snippets; in specializeOperation()
2239 TypeSnippetsSP inTypeSnippets = m_typeData.at(inFloatType).snippets; in specializeOperation()
/external/google-styleguide/docguide/
Dstyle.md270 language. We encourage their use when writing many short snippets:
288 Because most commandline snippets are intended to be copied and pasted directly
/external/testng/
DANNOUNCEMENT.txt43 …w documentation, which has been considerably improved (highlighted code snippets, detailed DTD, an…
/external/catch2/docs/
Dopensource-users.md63 A header-only framework for benchmarking small snippets of C++ code.
/external/libxkbcommon/xkbcommon/doc/
Dquick-guide.md16 The snippets are not complete, and some support code is omitted. You
/external/javapoet/
DCHANGELOG.md47 * New: Named arguments in `CodeBlock`. These are intended to make larger code snippets easier to

123