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

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
37 MIMEBase.__init__(self, 'multipart', _subtype, **_params)
16 def __init__(self, _subtype='mixed', boundary=None, _subparts=None, member in class:MIMEMultipart
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
29 MIMENonMultipart.__init__(self, 'text', _subtype,
17 def __init__(self, _text, _subtype='plain', _charset='us-ascii'): member in class:MIMEText
image.py 20 def __init__(self, _imagedata, _subtype=None,
45 MIMENonMultipart.__init__(self, 'image', _subtype, **_params)
19 def __init__(self, _imagedata, _subtype=None, member in class:MIMEImage
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
charmap.py 25 def __init__(self, errors='strict', mapping=None): member in class:IncrementalEncoder
26 codecs.IncrementalEncoder.__init__(self, errors)
33 def __init__(self, errors='strict', mapping=None): member in class:IncrementalDecoder
34 codecs.IncrementalDecoder.__init__(self, errors)
42 def __init__(self,stream,errors='strict',mapping=None): member in class:StreamWriter
43 codecs.StreamWriter.__init__(self,stream,errors)
51 def __init__(self,stream,errors='strict',mapping=None): member in class:StreamReader
52 codecs.StreamReader.__init__(self,stream,errors)
  /external/chromium_org/third_party/tlslite/tlslite/integration/
HTTPTLSConnection.py 15 def __init__(self, host, port=None, strict=None): member in class:HTTPBaseTLSConnection
18 httplib.HTTPConnection.__init__(self, host, port)
20 httplib.HTTPConnection.__init__(self, host, port, strict)
59 def __init__(self, host, port=None, member in class:HTTPTLSConnection
158 HTTPBaseTLSConnection.__init__(self, host, port)
160 ClientHelper.__init__(self,
  /development/tools/axl/
singletonmixin.py 28 3) If S.__init__(.) requires parameters, include them in the
71 raise SingletonException, 'If no supplied args, singleton must already be instantiated, or __init__ must require no args'
74 raise SingletonException, 'If the singleton requires __init__ args, supply them on first instantiation'
76 instance.__init__(*lstArgs)
86 return cls.__init__.im_func.func_code.co_argcount - 1
119 def __init__(self): member in class:.PublicInterfaceTest.testReturnsSameObject.A
120 super(A, self).__init__()
134 def __init__(self, arg1, arg2): member in class:.PublicInterfaceTest.testInstantiateWithMultiArgConstructor.B
135 super(B, self).__init__()
150 def __init__(self, arg1, arg2) member in class:.PublicInterfaceTest.testTryToInstantiateWithoutNeededArgs.B
166 def __init__(self): member in class:.PublicInterfaceTest.testTryToInstantiateWithoutGetInstance.A
175 def __init__(self): member in class:.PublicInterfaceTest.testDontAllowNew.instantiatedAnIllegalClass.A
187 def __init__(self, arg1, arg2): member in class:.PublicInterfaceTest.testDontAllowArgsAfterConstruction.B
197 def __init__(self): member in class:.PublicInterfaceTest.test_forgetClassInstanceReferenceForTesting.A
200 def __init__(self): member in class:.PublicInterfaceTest.test_forgetClassInstanceReferenceForTesting.B
    [all...]
  /external/chromium_org/build/android/pylib/instrumentation/
test_result.py 11 def __init__(self, full_name, test_type, start_date, dur, log=''): member in class:InstrumentationTestResult
21 super(InstrumentationTestResult, self).__init__(full_name, test_type, log)
  /external/chromium_org/build/android/pylib/uiautomator/
test_package.py 14 def __init__(self, jar_path, jar_info_path): member in class:TestPackage
15 test_jar.TestJar.__init__(self, jar_info_path)
  /external/chromium_org/content/test/gpu/gpu_tests/
pixel.py 13 def __init__(self): member in class:PixelValidator
14 super(PixelValidator, self).__init__('ValidatePage')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/reftests/
extract_reference_link.py 34 def __init__(self): member in class:ExtractReferenceLinkParser
35 HTMLParser.__init__(self)
  /external/chromium_org/third_party/jinja2/
exceptions.py 16 def __init__(self, message=None): member in class:TemplateError
19 Exception.__init__(self, message)
36 def __init__(self, name, message=None): member in class:TemplateNotFound
37 IOError.__init__(self)
63 def __init__(self, names=(), message=None): member in class:TemplatesNotFound
67 TemplateNotFound.__init__(self, names and names[-1] or None, message)
74 def __init__(self, message, lineno, name=None, filename=None): member in class:TemplateSyntaxError
75 TemplateError.__init__(self, message)
  /external/chromium_org/third_party/tlslite/tlslite/utils/
OpenSSL_RC4.py 13 def __init__(self, key): member in class:OpenSSL_RC4
14 RC4.__init__(self, key, "openssl")
PyCrypto_RC4.py 14 def __init__(self, key): member in class:PyCrypto_RC4
15 RC4.__init__(self, key, "pycrypto")
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
websocket.py 8 def __init__(): function
16 __init__()
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
reload.py 8 def __init__(self, attributes=None): member in class:ReloadAction
9 super(ReloadAction, self).__init__(attributes)
  /external/chromium_org/tools/telemetry/telemetry/page/
perf_tests_helper.py 9 def __init__(): function
14 'pylib', '__init__.py'))
18 __init__()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
image.py 20 def __init__(self, _imagedata, _subtype=None,
45 MIMENonMultipart.__init__(self, 'image', _subtype, **_params)
19 def __init__(self, _imagedata, _subtype=None, member in class:MIMEImage
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 22 def __init__(self, function, args): member in class:Worker
23 threading.Thread.__init__(self)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 22 def __init__(self, function, args): member in class:Worker
23 threading.Thread.__init__(self)
  /development/testrunner/
errors.py 23 def __init__(self, msg=""): member in class:MsgException
  /external/antlr/antlr-3.4/runtime/Python/
mkdoxy.sh 10 for f in __init__ exceptions constants dfa tokens streams recognizers; do
15 touch build/doc/antlr3/__init__.py
  /external/antlr/antlr-3.4/runtime/Python/tests/
t026actions.py 9 def __init__(self, *args, **kwargs): member in class:t026actions.parserClass.TParser
10 base.__init__(self, *args, **kwargs)
29 def __init__(self, *args, **kwargs): member in class:t026actions.lexerClass.TLexer
30 base.__init__(self, *args, **kwargs)
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
erroraccumulator.py 29 def __init__(self): member in class:ErrorAccumulator
errorhandler.py 31 def __init__(self): member in class:ErrorHandler
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascriptstatetracker.py 57 def __init__(self, flag_token): member in class:JsDocFlag
63 statetracker.DocFlag.__init__(self, flag_token)
73 def __init__(self): member in class:JavaScriptStateTracker
75 statetracker.StateTracker.__init__(self, JsDocFlag)

Completed in 564 milliseconds

12 3 4 5 6 7 8 91011>>