Searched refs:beginControlFlow (Results 1 – 6 of 6) sorted by relevance
/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | TypeSpecTest.java | 1130 .beginControlFlow("if (!a.equals(b))") in codeBlocks() 1136 .beginControlFlow("for ($T i = 0; i < size; i++)", int.class) in codeBlocks() 1202 .beginControlFlow("if ($1L != null || $1L == $2L)", "taco", "otherTaco") in indexedElseIf() 1228 .beginControlFlow("if (5 < 4) ") in elseIf() 1254 .beginControlFlow("do") in doWhile() 1907 .beginControlFlow("try") in tryCatch() 1933 .beginControlFlow("if (count > 0)") in ifElse()
|
/external/javapoet/src/main/java/com/squareup/javapoet/ |
D | MethodSpec.java | 451 public Builder beginControlFlow(String controlFlow, Object... args) { in beginControlFlow() method in MethodSpec.Builder 452 code.beginControlFlow(controlFlow, args); in beginControlFlow()
|
D | CodeBlock.java | 367 public Builder beginControlFlow(String controlFlow, Object... args) {
|
D | TypeSpec.java | 547 staticBlock.beginControlFlow("static").add(block).endControlFlow(); in addStaticBlock()
|
/external/javapoet/ |
D | README.md | 88 `beginControlFlow()` + `endControlFlow()` which are used together for braces, newlines, and 94 .beginControlFlow("for (int i = 0; i < 10; i++)") 108 .beginControlFlow("for (int i = " + from + "; i < " + to + "; i++)") 134 The string-concatenation in calls to `beginControlFlow()` and `addStatement` is distracting. Too 144 .beginControlFlow("for (int i = $L; i < $L; i++)", from, to)
|
/external/dagger2/lib/ |
D | auto-value-1.4.1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |