HomeSort by relevance Sort by last modified time
    Searched defs:indentation (Results 1 - 25 of 227) sorted by null

1 2 3 4 5 6 7 8 910

  /external/mesa3d/src/compiler/glsl/
ir_print_visitor.h 93 int indentation; member in class:ir_print_visitor
ir_builder_print_visitor.cpp 83 int indentation; member in class:ir_builder_print_visitor
142 : next_ir_index(1), f(f), indentation(0)
155 for (int i = 0; i < indentation; i++)
286 indentation++;
307 indentation--;
627 indentation++;
654 indentation--;
727 indentation++;
741 indentation--;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
IndentingAppendable.java 23 private final String indentation; field in class:IndentingAppendable
31 IndentingAppendable(String indentation, Appendable delegate) {
32 this.indentation = indentation;
67 delegate.append(indentation);
  /external/nist-sip/java/gov/nist/javax/sip/header/
Indentation.java 37 class Indentation {
39 private int indentation; field in class:Indentation
44 protected Indentation() {
45 indentation = 0;
54 protected Indentation(int initval) {
55 indentation = initval;
59 * set the indentation field
65 indentation = initval;
69 * get the number of indentation.
74 return indentation;
    [all...]
  /external/v8/src/wasm/
wasm-text.cc 92 int indentation = std::min(kMaxIndentation, 2 * control_depth); local
94 offset_table->emplace_back(i.pc_offset(), line_nr, indentation);
100 os.write(padding, indentation);
function-body-decoder.cc 670 char* indentation() { function in class:v8::internal::wasm::WasmFullDecoder
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
SourcePrinter.java 29 private final String indentation; field in class:SourcePrinter
37 SourcePrinter(final String indentation, final String endOfLineCharacter) {
38 this.indentation = indentation;
39 this.indentationLength = indentation.length();
55 buf.append(indentation);
62 * If this is being appended at the beginning of a line, performs indentation first.
85 * If this is being appended at the beginning of a line, performs indentation first.
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
source.go 365 srcIndent := indentation(fn.Info.Name)
614 func indentation(line string) int { func
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
source.go 365 srcIndent := indentation(fn.Info.Name)
614 func indentation(line string) int { func
  /cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
ImeEventStream.java 145 final String indentation = getWhiteSpaces(event.getNestLevel() * 2 + 2); local
152 .append(indentation);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
Difference.java 408 private List<TextElement> processIndentation(List<TokenTextElement> indentation, List<TextElement> prevElements) {
410 res.addAll(indentation);
456 * the same as the indentation.
488 List<TokenTextElement> indentation = LexicalPreservingPrinter.findIndentation(node); local
530 indentation.add(new TokenTextElement(GeneratedJavaParserConstants.SPACE));
537 for (int i=0;i<STANDARD_INDENTATION_SIZE && !indentation.isEmpty();i++){
538 indentation.remove(indentation.size() - 1);
547 for (TextElement e : processIndentation(indentation, nodeText.getElements().subList(0, nodeTextIndex - 1))) {
559 for (TextElement e : processIndentation(indentation, nodeText.getElements().subList(0, nodeTextIndex - 1)))
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 53 uint indentation; member in struct:dump_ctx
703 /* update indentation */
708 ctx->indentation += indent_spaces;
728 ctx.indentation = 0;
853 ctx.base.indentation = 0;
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.cpp 191 int indentation = (event.source == REQUEST) ? 15 : 30; local
194 indentation,
205 indentation + 18);
217 int type, int count, int indentation) {
236 dprintf(fd, "%*s[", (j != 0) ? indentation + 4 : 0, "");
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 94 protected int indentation; field in class:GenericObjectList
107 char[] chars = new char[indentation];
260 indentation--;
266 indentation++;
284 sprint(((GenericObject) obj).debugDump(this.indentation));
294 * indentation given.
298 int save = indentation;
299 indentation = indent;
301 indentation = save;
GenericObject.java 37 * Provides a few utility funcitons such as indentation and
80 protected int indentation; field in class:GenericObject
293 indentation = 0;
298 char [] chars = new char [indentation];
314 indentation--;
320 indentation++;
430 if (fieldName.compareTo("indentation") == 0) {
515 if (fieldName.compareTo("indentation") == 0) {
611 if (fieldName.compareTo("indentation") == 0) {
647 indentation + 1))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationUserDefinedIO.cpp 123 const std::string indentation = std::string(indentationDepth, '\t'); local
126 return indentation + "for (int " + loopIndexName + " = 0; " + loopIndexName + " < " + de::toString(rootType.getArraySize()) + "; ++" + loopIndexName + ")\n" +
127 indentation + "{\n" +
129 indentation + "}\n";
156 const std::string indentation = std::string(indentationDepth, '\t'); local
159 result << indentation << name << " = ";
168 << indentation << "v += 0.4;\n"; local
176 const std::string indentation = std::string(indentationDepth, '\t'); local
179 result << indentation << "allOk = allOk && compare_" << glu::getDataTypeName(type) << "(" << name << ", ";
188 << indentation << "v += 0.4;\n
189 << indentation << "if (allOk) ++firstFailedInputIndex;\\n"; local
378 const std::string indentation = std::string(indentationDepth, '\\t'); local
382 << indentation << "{\\n"; local
385 result << indentation + "}\\n"; local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DumpVisitor.java 64 private final String indentation; field in class:DumpVisitor.SourcePrinter
66 public SourcePrinter(final String indentation) {
67 this.indentation = indentation;
86 buf.append(indentation);
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
LexicalPreservingPrinterTest.java 235 List<TokenTextElement> indentation = LexicalPreservingPrinter.findIndentation(node); local
236 assertEquals(Arrays.asList(" ", " ", " "), indentation.stream().map(TokenTextElement::expand).collect(Collectors.toList()));
243 List<TokenTextElement> indentation = LexicalPreservingPrinter.findIndentation(node); local
244 assertEquals(Arrays.asList(" ", " ", " "), indentation.stream().map(TokenTextElement::expand).collect(Collectors.toList()));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 305 // Look up the indentation level of the start node, if it is an element
308 // Measure the indentation of the start node such that we can indent
310 // in if the surrounding content does not use the same indentation size etc.
318 // level it is, and we also need to know the indentation level to use
320 // since from the initial indentation level and on down we want to normalize
330 // the parent chain and looking up the indentation for each. The reason for
332 // may be sharing lines with other nodes, and we disregard indentation for
333 // any nodes that don't start a line since the indentation may only be correct
335 // level that do have indentation info at the front of the line.
400 // remove the initial indentation in the reformatted elemen
707 String indentation = entry.getValue(); local
    [all...]
  /prebuilts/tools/common/m2/repository/com/puppycrawl/tools/checkstyle/5.9/
checkstyle-5.9.jar 
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 70 private static final String INDENTATION = " ";
74 private int indentation; field in class:ClassPrinter
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp 5095 std::string indentation = settings_["indentation"].asString(); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-artifact/3.2.1/
maven-artifact-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-artifact/3.3.9/
maven-artifact-3.3.9.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/stringtemplate/3.2.1/
stringtemplate-3.2.1.jar 

Completed in 653 milliseconds

1 2 3 4 5 6 7 8 910