HomeSort by relevance Sort by last modified time
    Searched refs:dedent (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/antlr/antlr-3.4/runtime/Python/tests/
t012lexerXML.py 54 input = textwrap.dedent("""\
78 input = textwrap.dedent("""\
102 input = textwrap.dedent("""\
t047treeparser.py 37 input = textwrap.dedent(
102 input = textwrap.dedent(
  /system/media/camera/docs/
metadata_helpers_test.py 210 self.assertEquals("bar\nline1\nline2", dedent("bar\n line1\n line2"))
212 self.assertEquals("bar\nline1\nline2", dedent(" bar\n line1\n line2"))
214 self.assertEquals("bar\n line1\nline2", dedent(" bar\n line1\n line2"))
CameraMetadataKeys.mako 32 # Dedent fixes markdown not to generate code blocks. Then do the rest.
35 description = dedent(entry.description) + "\n\n"
38 details = dedent(entry.details)
metadata_helpers.py 670 text += '\n\n<b>Units</b>: %s\n' % (dedent(entry.units))
682 text += '%s\n' % (dedent(entry.range))
785 def dedent(text): function
792 text: A string of text to dedent.
798 assertEquals("bar\nline1\nline2", dedent("bar\n line1\n line2"))
799 assertEquals("bar\nline1\nline2", dedent(" bar\n line1\n line2"))
800 assertEquals("bar\n line1\nline2", dedent(" bar\n line1\n line2"))
802 text = textwrap.dedent(text)
805 text_not_first = textwrap.dedent(text_not_first)
829 <!--- can't use dedent directly since 'foo' has no indent --
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
coffeescript.js 47 return "dedent";
52 dedent(stream, state);
228 function dedent(stream, state) {
269 state.dedent += 1;
285 dedent(stream, state);
289 if (style === "dedent") {
290 if (dedent(stream, state)) {
301 if (state.dedent > 0 && stream.eol() && state.scope.type == "coffee") {
303 state.dedent -= 1;
316 dedent:
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testdottreegen.py 45 expected = textwrap.dedent(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_indent.py 11 expect = textwrap.dedent("""\
test_tool.py 18 expect = textwrap.dedent("""\
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_indent.py 11 expect = textwrap.dedent("""\
test_tool.py 18 expect = textwrap.dedent("""\
  /frameworks/native/include/binder/
TextOutput.h 67 TextOutput& dedent(TextOutput& to);
143 inline TextOutput& dedent(TextOutput& to) function in namespace:android
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pdb.py 22 f.write(textwrap.dedent(script))
64 f.write(textwrap.dedent(bar))
test_netrc.py 12 test_data = textwrap.dedent(test_data)
test_zipimport_support.py 195 test_src = textwrap.dedent("""\
224 test_src = textwrap.dedent("""\
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pdb.py 22 f.write(textwrap.dedent(script))
64 f.write(textwrap.dedent(bar))
test_netrc.py 12 test_data = textwrap.dedent(test_data)
test_zipimport_support.py 195 test_src = textwrap.dedent("""\
224 test_src = textwrap.dedent("""\
  /external/chromium_org/tools/deep_memory_profiler/tests/
dmprof_test.py 44 _TEST_FUNCTION_CACHE = textwrap.dedent("""\
50 _EXPECTED_TEST_FUNCTION_CACHE = textwrap.dedent("""\
116 _TEST_POLICY = textwrap.dedent("""\
  /external/chromium_org/tools/real_world_impact/
real_world_impact.py 368 html_start = textwrap.dedent("""\
475 html_end = textwrap.dedent("""\
501 epilog=textwrap.dedent("""\
517 help=textwrap.dedent("""\
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 99 self.dedent()
120 def dedent(self): member in class:XMLWriter
  /frameworks/native/libs/binder/
IPCThreadState.cpp 176 out << dedent; local
235 out << dedent; local
557 << indent << data << dedent << endl;
597 if (reply) alog << indent << *reply << dedent << endl;
836 alog << dedent; local
893 alog << dedent; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
textwrap.py 28 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']
374 def dedent(text): function
423 #print dedent("\tfoo\n\tbar")
424 #print dedent(" \thello there\n \t how are you?")
425 print dedent("Hello there.\n This is indented.")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
textwrap.py 28 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']
374 def dedent(text): function
423 #print dedent("\tfoo\n\tbar")
424 #print dedent(" \thello there\n \t how are you?")
425 print dedent("Hello there.\n This is indented.")
  /external/lldb/test/unittest2/test/
test_result.py 396 expectedOutMessage = textwrap.dedent("""
402 expectedErrMessage = textwrap.dedent("""

Completed in 600 milliseconds

12 3 4