/frameworks/native/libs/binder/ |
IPCThreadState.cpp | 159 out << dedent; local 218 out << dedent; local 606 << indent << data << dedent << endl; 644 if (reply) alog << indent << *reply << dedent << endl; 888 alog << dedent; local 947 alog << dedent; local [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_zipimport_support.py | 195 test_src = textwrap.dedent("""\ 224 test_src = textwrap.dedent("""\
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_zipimport_support.py | 195 test_src = textwrap.dedent("""\ 224 test_src = textwrap.dedent("""\
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
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_zipimport_support.py | 195 test_src = textwrap.dedent("""\ 224 test_src = textwrap.dedent("""\
|
/system/libhwbinder/ |
IPCThreadState.cpp | 158 out << dedent; local 217 out << dedent; local 616 << indent << data << dedent << endl; 653 if (reply) alog << indent << *reply << dedent << endl; 901 alog << dedent; local 959 alog << dedent; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
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.")
|
tokenize.py | 239 elif toknum == DEDENT:
359 yield (DEDENT, '', (lnum, pos), (lnum, pos), line)
424 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
textwrap.py | 20 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']
366 def dedent(text):
function 415 #print dedent("\tfoo\n\tbar")
416 #print dedent(" \thello there\n \t how are you?")
417 print dedent("Hello there.\n This is indented.")
|
tokenize.py | 233 elif toknum == DEDENT:
353 yield (DEDENT, '', (lnum, pos), (lnum, pos), line)
416 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
|
/external/python/cpython2/Lib/ |
textwrap.py | 28 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent'] 374 def dedent(text): function 427 #print dedent("\tfoo\n\tbar") 428 #print dedent(" \thello there\n \t how are you?") 429 print dedent("Hello there.\n This is indented.")
|
/external/python/cpython3/Lib/idlelib/ |
config-keys.def | 51 dedent-region=<Control-Key-bracketleft> 102 dedent-region=<Control-Key-bracketleft> 153 dedent-region = <Control-Key-bracketleft> 204 dedent-region=<Command-Key-bracketleft> 250 dedent-region = <Command-Key-bracketleft>
|
/external/python/cpython3/Lib/test/ |
test_cmd_line_script.py | 487 script = textwrap.dedent("""\ 526 script = textwrap.dedent("""\ 553 script = textwrap.dedent("""\ 582 script = textwrap.dedent("""\ 614 script = textwrap.dedent("""\
|
/external/python/cpython3/Lib/ |
textwrap.py | 10 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent', 'indent', 'shorten'] 414 def dedent(text): function 486 #print dedent("\tfoo\n\tbar") 487 #print dedent(" \thello there\n \t how are you?") 488 print(dedent("Hello there.\n This is indented."))
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
ProgramCache.cpp | 39 static Formatter& dedent(Formatter& f); 46 friend Formatter& dedent(Formatter& f); 72 Formatter& dedent(Formatter& f) { function in namespace:android 531 vs << dedent << "}"; local 649 fs << dedent << "}"; local
|
/prebuilts/gdb/darwin-x86/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.")
|
tokenize.py | 233 elif toknum == DEDENT: 353 yield (DEDENT, '', (lnum, pos), (lnum, pos), line) 418 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
|
/prebuilts/gdb/linux-x86/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.")
|
tokenize.py | 233 elif toknum == DEDENT: 353 yield (DEDENT, '', (lnum, pos), (lnum, pos), line) 418 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
|
/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.")
|
tokenize.py | 233 elif toknum == DEDENT: 353 yield (DEDENT, '', (lnum, pos), (lnum, pos), line) 418 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
|
/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.")
|
tokenize.py | 233 elif toknum == DEDENT: 353 yield (DEDENT, '', (lnum, pos), (lnum, pos), line) 418 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
|
/external/tensorflow/tensorflow/tools/docs/ |
pretty_docs.py | 301 # Dedent so that it does not trigger markdown code formatting. 302 value = textwrap.dedent(value) 314 sub.append(textwrap.dedent(detail.header))
|
/system/media/camera/docs/ |
metadata_helpers.py | 754 text += '\n\n<b>Units</b>: %s\n' % (dedent(entry.units)) 766 text += '%s\n' % (dedent(entry.range)) 1066 def dedent(text): function 1073 text: A string of text to dedent. 1079 assertEquals("bar\nline1\nline2", dedent("bar\n line1\n line2")) 1080 assertEquals("bar\nline1\nline2", dedent(" bar\n line1\n line2")) 1081 assertEquals("bar\n line1\nline2", dedent(" bar\n line1\n line2")) 1083 text = textwrap.dedent(text) 1086 text_not_first = textwrap.dedent(text_not_first) 1110 <!--- can't use dedent directly since 'foo' has no indent -- [all...] |