HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 351 - 375 of 2419) sorted by null

<<11121314151617181920>>

  /external/selinux/policycoreutils/sandbox/
Makefile 42 indent:
  /external/selinux/policycoreutils/secon/
Makefile 32 indent:
  /external/selinux/policycoreutils/semanage/
Makefile 32 indent:
  /external/selinux/policycoreutils/semodule/
Makefile 34 indent:
  /external/selinux/policycoreutils/sestatus/
Makefile 29 indent:
  /external/selinux/policycoreutils/setsebool/
Makefile 33 indent:
  /frameworks/base/core/java/android/text/style/
LeadingMarginSpan.java 106 * @param first the indent for the first line of the paragraph
107 * @param rest the indent for the remaining lines of the paragraph
115 * Constructor taking an indent for all lines.
116 * @param every the indent of each line
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
OMAConstants.java 46 private static final byte[] INDENT = new byte[1024];
94 Arrays.fill(INDENT, (byte) ' ');
120 public static void indent(int level, OutputStream out) throws IOException { method in class:OMAConstants
121 out.write(INDENT, 0, level);
  /frameworks/base/tools/split-select/
Rule.h 67 android::String8 toJson(int indent=0) const;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/
scrape_gtest_log.py 25 print json.dumps(json.loads(json_string), indent=4, sort_keys=True)
  /prebuilts/gdb/darwin-x86/include/python2.7/
token.h 17 #define INDENT 5
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
  /prebuilts/gdb/linux-x86/include/python2.7/
token.h 17 #define INDENT 5
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
token.h 17 #define INDENT 5
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
token.h 17 #define INDENT 5
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 406 // Indent. Use the existing indent found for previous <style> elements in
407 // the resource file - but if that indent was 0 (e.g. <style> elements are
408 // at the left margin) only use it to indent the style elements and use a real
409 // nonzero indent for its children.
410 String indent = " "; //$NON-NLS-1$ local
412 initialIndent = indent;
414 indent = initialIndent;
429 sb.append(initialIndent).append(indent);
452 * the exact indent string to use to indent the {@code <style>} element
460 String indent = null; local
    [all...]
  /external/autotest/tko/parsers/
version_0_unittest.py 182 self.assertEquals(line.indent, 5)
208 self.assertEquals(line.indent, 3)
223 self.assertEquals(line.indent, 2)
239 self.assertEquals(line.indent, 1)
253 self.assertEquals(line.indent, 0)
268 self.assertEquals(line.indent, 2)
282 self.assertEquals(line.indent, 1)
version_1_unittest.py 66 self.assertEquals(line.indent, 5)
95 self.assertEquals(line.indent, 3)
111 self.assertEquals(line.indent, 2)
128 self.assertEquals(line.indent, 0)
144 self.assertEquals(line.indent, 2)
327 self.indent = 3
336 self.indent, None, self.testname, self.timestamp, self.reason)
339 '\t' * self.indent, self.testname, self.timestamp, self.reason))
345 self.indent, None, self.testname, None, self.reason)
348 '\t' * self.indent, self.testname, self.reason)
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/
testharnessreport.js 152 jsonifyArray: function(arrayValue, indent) {
161 output += ',\n ' + indent;
170 jsonifyObject: function(objectValue, indent) {
196 output += '\n ' + indent + '"' + property + '": ';
199 output += this.jsonifyArray(value, indent +
203 output += this.jsonifyObject(value, indent + ' ');
210 output += '\n' + indent;
  /external/deqp/framework/opengl/
gluVarType.hpp 288 struct Indent
291 Indent (int level_) : level(level_) {}
319 std::ostream& operator<< (std::ostream& str, const Indent& indent);
326 inline decl::Indent indent (int indentLevel) { return decl::Indent(indentLevel); } function in namespace:glu
  /external/llvm/tools/llvm-cov/
SourceCoverageView.cpp 76 OS.indent(2);
101 OS.indent(LineCoverageColumnWidth) << '|';
105 OS.indent(LineCoverageColumnWidth - C.size());
120 OS.indent(LineNumberColumnWidth - Str.size()) << Str << '|';
131 OS.indent(S->Col - PrevColumn);
218 OS.indent(CombinedColumnWidth);
234 OS.indent(CombinedColumnWidth + (IndentLevel == 0 ? 0 : 1));
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 134 private String indent; field in class:JsonWriter
155 * in the encoded document. If {@code indent.isEmpty()} the encoded document
159 * @param indent a string containing only whitespace.
161 public void setIndent(String indent) {
162 if (indent.isEmpty()) {
163 this.indent = null;
166 this.indent = indent;
406 if (indent == null) {
412 out.write(indent);
    [all...]

Completed in 650 milliseconds

<<11121314151617181920>>