HomeSort by relevance Sort by last modified time
    Searched full:none (Results 976 - 1000 of 18468) sorted by null

<<31323334353637383940>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
code.py 37 def __init__(self, locals=None):
43 "__doc__" set to None.
46 if locals is None:
47 locals = {"__name__": "__console__", "__doc__": None}
63 compile_command() returned None. Nothing happens.
82 if code is None:
112 def showsyntaxerror(self, filename=None):
161 tblist = tb = None
182 def __init__(self, locals=None, filename="<console>"):
200 def interact(self, banner=None)
    [all...]
copy.py 62 PyStringMap = None
78 copier = getattr(cls, "__copy__", None)
86 reductor = getattr(x, "__reduce_ex__", None)
90 reductor = getattr(x, "__reduce__", None)
103 for t in (type(None), int, long, float, bool, str, tuple,
109 t = getattr(types, name, None)
110 if t is not None:
120 if PyStringMap is not None:
145 def deepcopy(x, memo=None, _nil=[]):
151 if memo is None
    [all...]
cookielib.py 41 logger = None
63 traceback.print_exc(None, f)
78 return None
86 def time2isoz(t=None):
98 if t is None: t = time.time()
103 def time2netscape(t=None):
114 if t is None: t = time.time()
120 UTC_ZONES = {"GMT": None, "UTC": None, "UT": None, "Z": None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
btm_utils.py 21 def __init__(self, type=None, name=None):
26 self.parent = None
50 subp = None
63 subp = None
104 def reduce_tree(node, parent=None):
112 new_node = None
131 if reduced is not None:
142 # delete the group if all of the children were reduced to None
143 new_node = None
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SVG/resources/
HereGear.svg     [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
descriptor_pool.py 64 def __init__(self, descriptor_db=None):
218 file_descriptor, None, scope)
230 def _ConvertMessageDescriptor(self, desc_proto, package=None, file_desc=None,
231 scope=None):
249 if file_desc is None:
250 file_name = None
254 if scope is None:
261 self._ConvertEnumDescriptor(enum, desc_name, file_desc, None, scope)
276 containing_type=None,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy.py 62 PyStringMap = None
78 copier = getattr(cls, "__copy__", None)
86 reductor = getattr(x, "__reduce_ex__", None)
90 reductor = getattr(x, "__reduce__", None)
103 for t in (type(None), int, long, float, bool, str, tuple,
109 t = getattr(types, name, None)
110 if t is not None:
120 if PyStringMap is not None:
145 def deepcopy(x, memo=None, _nil=[]):
151 if memo is None
    [all...]
cookielib.py 41 logger = None
63 traceback.print_exc(None, f)
78 return None
86 def time2isoz(t=None):
98 if t is None: t = time.time()
103 def time2netscape(t=None):
114 if t is None: t = time.time()
120 UTC_ZONES = {"GMT": None, "UTC": None, "UT": None, "Z": None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
string_tests.py 29 type2test = None
171 # to check the ability to pass None as defaults
175 self.checkequal(12, 'rrarrrrrrrrra', 'find', 'a', 4, None)
176 self.checkequal( 2, 'rrarrrrrrrrra', 'find', 'a', None, 6)
226 # to check the ability to pass None as defaults
230 self.checkequal(12, 'rrarrrrrrrrra', 'rfind', 'a', 4, None)
231 self.checkequal( 2, 'rrarrrrrrrrra', 'rfind', 'a', None, 6)
274 # to check the ability to pass None as defaults
278 self.checkequal(12, 'rrarrrrrrrrra', 'index', 'a', 4, None)
279 self.checkequal( 2, 'rrarrrrrrrrra', 'index', 'a', None, 6
    [all...]
test_re.py 33 self.assertEqual(re.search('x', 'aaa'), None)
38 self.assertEqual(re.match('a+', 'xxx'), None)
229 ['', None, ':', 'a', None, ':', '', 'b', None, '',
230 None, '::', 'c'])
262 self.assertEqual(pat.match('a').groups(), ('a', 'a', None, None))
263 self.assertEqual(pat.match('b').groups(), ('b', None, 'b', None))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
string_tests.py 29 type2test = None
171 # to check the ability to pass None as defaults
175 self.checkequal(12, 'rrarrrrrrrrra', 'find', 'a', 4, None)
176 self.checkequal( 2, 'rrarrrrrrrrra', 'find', 'a', None, 6)
226 # to check the ability to pass None as defaults
230 self.checkequal(12, 'rrarrrrrrrrra', 'rfind', 'a', 4, None)
231 self.checkequal( 2, 'rrarrrrrrrrra', 'rfind', 'a', None, 6)
274 # to check the ability to pass None as defaults
278 self.checkequal(12, 'rrarrrrrrrrra', 'index', 'a', 4, None)
279 self.checkequal( 2, 'rrarrrrrrrrra', 'index', 'a', None, 6
    [all...]
test_re.py 33 self.assertEqual(re.search('x', 'aaa'), None)
38 self.assertEqual(re.match('a+', 'xxx'), None)
229 ['', None, ':', 'a', None, ':', '', 'b', None, '',
230 None, '::', 'c'])
262 self.assertEqual(pat.match('a').groups(), ('a', 'a', None, None))
263 self.assertEqual(pat.match('b').groups(), ('b', None, 'b', None))
    [all...]
  /external/chromium_org/third_party/jinja2/
nodes.py 81 def __init__(self, environment, template_name=None):
98 if ctx is None:
99 if node.environment is None:
143 setattr(self, attr, attributes.pop(attr, None))
148 def iter_fields(self, exclude=None, only=None):
156 if (exclude is only is None) or \
157 (exclude is not None and name not in exclude) or \
158 (only is not None and name in only):
164 def iter_child_nodes(self, exclude=None, only=None)
    [all...]
ext.py 80 def preprocess(self, source, name, filename=None):
107 def attr(self, name, lineno=None):
117 def call_method(self, name, args=None, kwargs=None, dyn_args=None,
118 dyn_kwargs=None, lineno=None):
122 if args is None:
124 if kwargs is None:
179 def _install(self, translations, newstyle=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 165 self.id_to_obj = {'0': (None, ())}
195 funcname = result = request = None
239 methodname = obj = None
257 typeid = gettypeid and gettypeid.get(methodname, None)
266 if methodname is None:
348 c.send(('#RETURN', None))
382 if callable is None:
388 if exposed is None:
390 if method_to_typeid is not None:
422 c.send(('#RETURN', None))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 165 self.id_to_obj = {'0': (None, ())}
195 funcname = result = request = None
239 methodname = obj = None
257 typeid = gettypeid and gettypeid.get(methodname, None)
266 if methodname is None:
348 c.send(('#RETURN', None))
382 if callable is None:
388 if exposed is None:
390 if method_to_typeid is not None:
422 c.send(('#RETURN', None))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
port_testcase.py 54 def __init__(self, port_name=None, symbols_string=None,
55 expectations_file=None, skips_file=None, host=None, config=None,
87 os_name = None
88 os_version = None
90 port_name = None
92 def make_port(self, host=None, port_name=None, options=None, os_name=None, os_version=None, **kwargs)
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 61 test.writable('dir', None)
81 universal_newlines = None)
281 _chain_to_exitfunc = None
285 cleanlist = filter(None, _Cleanup)
338 def fail_test(self = None, condition = 1, function = None, skip = 0):
347 if not function is None:
352 if not self is None:
365 def no_result(self = None, condition = 1, function = None, skip = 0)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 106 def find(self, element, tag, namespaces=None):
110 return None
111 def findtext(self, element, tag, default=None, namespaces=None):
113 if elem is None:
116 def iterfind(self, element, tag, namespaces=None):
123 def findall(self, element, tag, namespaces=None):
177 tag = None
187 attrib = None
191 # string or the value None. Note that if there was no text, thi
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 106 def find(self, element, tag, namespaces=None):
110 return None
111 def findtext(self, element, tag, default=None, namespaces=None):
113 if elem is None:
116 def iterfind(self, element, tag, namespaces=None):
123 def findall(self, element, tag, namespaces=None):
177 tag = None
187 attrib = None
191 # string or the value None. Note that if there was no text, thi
    [all...]
  /external/chromium_org/third_party/handlebar/
handlebar.py 115 '''Returns the value for |key|, or None if not found (including if
119 return None
121 if value is not None:
124 if value is not None:
160 return None
166 key, tail = path.split('.', 1) if '.' in path else (path, None)
168 if tail is None:
172 return None
187 if info is None:
198 if value is not None
    [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.css 10 -webkit-user-select: none;
51 -webkit-transition: none !important;
52 -webkit-animation: none !important;
61 -webkit-appearance: none;
63 background: none;
68 text-decoration: none;
74 pointer-events: none;
95 pointer-events: none;
214 display: none;
232 pointer-events: none;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 53 vstack = vsource = vlocals = vglobals = None
55 def __init__(self, pyshell, idb=None):
56 if idb is None:
60 self.frame = None
71 def close(self, event=None):
76 self.stackviewer.close(); self.stackviewer = None
159 def interaction(self, message, frame, info=None):
169 if value is not None:
177 tb = None
201 self.frame = None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 59 def _format_optdict(optdict, script=False, ignore=None):
70 if value is not None:
96 if val is not None:
119 spec = None
160 [("Menubutton.background", None),
265 typename = getattr(val, 'typename', None)
266 if typename is None:
309 specified with the None value, the value for that option is returned.
335 if getattr(val[0], 'typename', None) == 'StateSpec':
347 def setup_master(master=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 21 EasyDialogs = None
51 def findtemplate(template=None):
54 return None
70 rsrcname=None, others=[], raw=0, progress="default", destroot=""):
73 if EasyDialogs is None:
75 process = None
129 if EasyDialogs is None:
131 progress = None
135 progress = None
144 process_common(template, progress, None, filename, output, 1, 1
    [all...]

Completed in 2228 milliseconds

<<31323334353637383940>>