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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/page/actions/
navigate.py 8 def __init__(self, attributes=None): member in class:NavigateAction
9 super(NavigateAction, self).__init__(attributes)
  /external/chromium_org/tools/telemetry/telemetry/page/
profile_creator.py 10 def __init__(self): member in class:ProfileCreator
11 super(ProfileCreator, self).__init__()
  /external/llvm/utils/lit/lit/
LitTestCase.py 12 def __init__(self, test, lit_config): member in class:LitTestCase
13 unittest.TestCase.__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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pkg.py 31 # import package without __init__
32 # import package with __init__
33 # __init__ importing submodule
34 # __init__ importing global module
35 # __init__ defining variables
41 # from package import variable (defined in __init__)
42 # from package import * (defined in __init__)
90 hier = [("t1", None), ("t1 __init__"+os.extsep+"py", "")]
97 ("t2 __init__"+os.extsep+"py", "'doc for t2'"),
99 ("t2 sub __init__"+os.extsep+"py", "")
    [all...]
pydoc_mod.py 10 def __init__(): member in class:A
sample_doctest_no_doctests.py 14 def __init__(self): member in class:Foo
test_htmllib.py 9 def __init__(self, *args, **kw): member in class:AnchorCollector
11 htmllib.HTMLParser.__init__(self, *args, **kw)
20 def __init__(self, *args, **kw): member in class:DeclCollector
22 htmllib.HTMLParser.__init__(self, *args, **kw)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pkg.py 31 # import package without __init__
32 # import package with __init__
33 # __init__ importing submodule
34 # __init__ importing global module
35 # __init__ defining variables
41 # from package import variable (defined in __init__)
42 # from package import * (defined in __init__)
90 hier = [("t1", None), ("t1 __init__"+os.extsep+"py", "")]
97 ("t2 __init__"+os.extsep+"py", "'doc for t2'"),
99 ("t2 sub __init__"+os.extsep+"py", "")
    [all...]
pydoc_mod.py 10 def __init__(): member in class:A
sample_doctest_no_doctests.py 14 def __init__(self): member in class:Foo
test_htmllib.py 9 def __init__(self, *args, **kw): member in class:AnchorCollector
11 htmllib.HTMLParser.__init__(self, *args, **kw)
20 def __init__(self, *args, **kw): member in class:DeclCollector
22 htmllib.HTMLParser.__init__(self, *args, **kw)
  /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_org/third_party/tlslite/tlslite/utils/
RC4.py 6 def __init__(self, keyBytes, implementation): member in class:RC4
  /external/markdown/tests/extensions-x-codehilite/
code.txt 5 def __init__ (self, pattern) :
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 14 def __init__(self, canvas, itemType, *args, **kw): member in class:CanvasItem
90 def __init__(self, canvas, *args, **kw): member in class:Arc
91 CanvasItem.__init__(self, canvas, 'arc', *args, **kw)
94 def __init__(self, canvas, *args, **kw): member in class:Bitmap
95 CanvasItem.__init__(self, canvas, 'bitmap', *args, **kw)
98 def __init__(self, canvas, *args, **kw): member in class:ImageItem
99 CanvasItem.__init__(self, canvas, 'image', *args, **kw)
102 def __init__(self, canvas, *args, **kw): member in class:Line
103 CanvasItem.__init__(self, canvas, 'line', *args, **kw)
106 def __init__(self, canvas, *args, **kw) member in class:Oval
110 def __init__(self, canvas, *args, **kw): member in class:Polygon
114 def __init__(self, canvas, *args, **kw): member in class:Rectangle
119 def __init__(self, canvas, *args, **kw): member in class:CanvasText
123 def __init__(self, canvas, *args, **kw): member in class:Window
127 def __init__(self, canvas, tag=None): member in class:Group
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 14 def __init__(self, canvas, itemType, *args, **kw): member in class:CanvasItem
90 def __init__(self, canvas, *args, **kw): member in class:Arc
91 CanvasItem.__init__(self, canvas, 'arc', *args, **kw)
94 def __init__(self, canvas, *args, **kw): member in class:Bitmap
95 CanvasItem.__init__(self, canvas, 'bitmap', *args, **kw)
98 def __init__(self, canvas, *args, **kw): member in class:ImageItem
99 CanvasItem.__init__(self, canvas, 'image', *args, **kw)
102 def __init__(self, canvas, *args, **kw): member in class:Line
103 CanvasItem.__init__(self, canvas, 'line', *args, **kw)
106 def __init__(self, canvas, *args, **kw) member in class:Oval
110 def __init__(self, canvas, *args, **kw): member in class:Polygon
114 def __init__(self, canvas, *args, **kw): member in class:Rectangle
119 def __init__(self, canvas, *args, **kw): member in class:CanvasText
123 def __init__(self, canvas, *args, **kw): member in class:Window
127 def __init__(self, canvas, tag=None): member in class:Group
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 17 def __init__(self, base_module, module_list): member in class:Override
56 def __init__(self, module, device): member in class:AdbCommandsModuleStub.AdbCommandsStub
76 def __init__(self): member in class:AdbCommandsModuleStub
105 def __init__(self): member in class:CloudStorageModuleStub
121 def __init__(self, data): member in class:OpenFunctionStub.FileStub
136 def __init__(self): member in class:OpenFunctionStub
145 def __init__(self, sys_module): member in class:OsModuleStub.OsPathModuleStub
190 def __init__(self, sys_module=sys): member in class:OsModuleStub
215 def __init__(self, adb): member in class:PerfControlModuleStub.PerfControlStub
218 def __init__(self) member in class:PerfControlModuleStub
224 def __init__(self): member in class:SubprocessModuleStub.PopenStub
233 def __init__(self): member in class:SubprocessModuleStub
242 def __init__(self): member in class:SysModuleStub
248 def __init__(self, adb): member in class:ThermalThrottleModuleStub.ThermalThrottleStub
251 def __init__(self): member in class:ThermalThrottleModuleStub
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/function/
strfns.py 32 def __init__(self): member in class:_MemEq
33 super(_MemEq, self).__init__("_memeq")
57 def __init__(self): member in class:_StrLen
58 super(_StrLen, self).__init__("_strlen")
78 def __init__(self): member in class:_StrEq
79 super(_StrEq, self).__init__("_streq")
95 def __init__(self): member in class:_RegEx
96 super(_RegEx, self).__init__("_regex")
104 # GDB will import us automagically via gdb/__init__.py.
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/function/
strfns.py 32 def __init__(self): member in class:_MemEq
33 super(_MemEq, self).__init__("_memeq")
57 def __init__(self): member in class:_StrLen
58 super(_StrLen, self).__init__("_strlen")
78 def __init__(self): member in class:_StrEq
79 super(_StrEq, self).__init__("_streq")
95 def __init__(self): member in class:_RegEx
96 super(_RegEx, self).__init__("_regex")
104 # GDB will import us automagically via gdb/__init__.py.
  /external/chromium_org/tools/cr/cr/commands/
build.py 16 def __init__(self): member in class:BuildCommand
17 super(BuildCommand, self).__init__()
42 def __init__(self): member in class:CleanCommand
43 super(CleanCommand, self).__init__()
66 def __init__(self): member in class:RebuildCommand
67 super(RebuildCommand, self).__init__()
  /external/chromium_org/tools/perf/metrics/
smoothness.py 16 def __init__(self): member in class:NotEnoughFramesError
17 super(NotEnoughFramesError, self).__init__(
22 def __init__(self): member in class:NoSupportedActionError
23 super(NoSupportedActionError, self).__init__(
28 def __init__(self): member in class:SmoothnessMetric
29 super(SmoothnessMetric, self).__init__()
  /external/antlr/antlr-3.4/runtime/Python/dist/
antlr_python_runtime-3.4-py2.4.egg 
antlr_python_runtime-3.4-py2.6.egg 
  /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)

Completed in 975 milliseconds

12 3 4 5 6 7 8 91011>>