/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
D | BlockWriter.java | 26 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()
|
D | 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));
|
/external/python/cpython2/Lib/test/ |
D | test_transformer.py | 14 snippets = ['a, b = 1, 2', 18 for s in snippets:
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | ProducerFactoryGenerator.java | 425 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();"));
|
D | MapKeys.java | 249 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()
|
D | AbstractComponentWriter.java | 683 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/ |
D | README.txt | 41 unsupported/doc/snippets/.cpp <- code snippets for the doc
|
/external/eigen/unsupported/doc/ |
D | CMakeLists.txt | 4 add_subdirectory(snippets)
|
/external/eigen/unsupported/doc/snippets/ |
D | CMakeLists.txt | 10 CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/doc/snippets/compile_snippet.cpp.in
|
/external/libchrome/mojo/public/java/bindings/ |
D | README.md | 8 This document provides a brief guide to API usage with example code snippets.
|
/external/fonttools/Snippets/ |
D | README.md | 1 This directory includes snippets that people might useful to get ideas from.
|
/external/libchrome/mojo/public/java/system/ |
D | README.md | 9 code snippets.
|
/external/autotest/client/site_tests/accessibility_ChromeVoxSound/ |
D | control | 19 Uses audio loopback to record snippets of audio, checking whether there was any
|
/external/python/pyasn1/ |
D | TODO.rst | 49 Document more API, add notes and example snippets.
|
/external/python/cpython2/Doc/library/ |
D | timeit.rst | 1 :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/ |
D | CMakeLists.txt | 73 add_subdirectory(snippets)
|
/external/python/cpython3/Doc/library/ |
D | timeit.rst | 1 :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/ |
D | README.md | 105 Detailed documentation with code snippets and examples is available for the following topics:
|
/external/ltp/testcases/open_posix_testsuite/ |
D | README | 94 The code snippets need to be as simple as possible, for the sake of
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmFloatControlsTests.cpp | 2189 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/ |
D | style.md | 270 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/ |
D | ANNOUNCEMENT.txt | 43 …w documentation, which has been considerably improved (highlighted code snippets, detailed DTD, an…
|
/external/catch2/docs/ |
D | opensource-users.md | 63 A header-only framework for benchmarking small snippets of C++ code.
|
/external/libxkbcommon/xkbcommon/doc/ |
D | quick-guide.md | 16 The snippets are not complete, and some support code is omitted. You
|
/external/javapoet/ |
D | CHANGELOG.md | 47 * New: Named arguments in `CodeBlock`. These are intended to make larger code snippets easier to
|