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

<<21222324252627282930>>

  /external/chromium_org/chrome/app/nibs/
PRESUBMIT.py 39 system_version = None
40 ib_version = None
56 if system_version is not None and ib_version is not None:
59 if system_version is None:
69 if ib_version is None or int(ib_version) < MINIMUM_IB_VERSION or \
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
video_player.css 6 -webkit-user-select: none;
33 pointer-events: none;
60 cursor: none;
64 display: none;
78 pointer-events: none;
102 display: none;
  /external/chromium_org/chrome/common/extensions/docs/server2/
redirector.py 20 Returns the path that should be redirected to, or None if no redirection
28 configuration file exists, returns None.
36 return None
39 if redirect is None:
40 return None
53 return None
  /external/chromium_org/remoting/protocol/
authentication_method.cc 32 return AuthenticationMethod(THIRD_PARTY, NONE);
41 return Spake2(NONE);
57 case NONE:
82 hash_function_(NONE) {
110 case NONE:
137 hash_function = AuthenticationMethod::NONE;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
zipfileset.py 34 def __init__(self, zip_url, filesystem=None, zip_factory=None):
36 self._temp_file = None
37 self._zip_file = None
46 if self._zip_file is None:
56 self._temp_file = None
  /external/chromium_org/third_party/libxml/src/
check-relaxng-test-suite.py 54 return None
77 while child != None:
85 doc = None
87 if doc == None:
118 while child != None:
126 doc = None
128 if doc == None:
158 while child != None:
167 rngs = None
168 if rngs == None
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
value.pxi 28 def __cinit__(self, value=None, size=None):
30 if size is None:
36 if value is None:
49 def finalize(self, precbc=None):
50 if precbc is None:
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
counter.py 17 return None
37 return None
41 return None
45 return None
86 max_total = None
92 if max_total is None or total > max_total:
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/t/ManualTest/
manualTest1.htm 6 list-style-type: none;
12 list-style-type: none;
18 list-style-type: none;
21 list-style-type: none;
24 list-style-type: none;
30 list-style: none;
  /external/llvm/utils/lit/lit/
Test.py 56 self.result = None
58 self.output = None
60 self.elapsed = None
61 # The repeat index of this test, or None.
62 self.index = None
71 assert self.result is None, "Test result already set!"
  /external/oprofile/libop/
op_xml_events.c 30 close_xml_element(NONE, 1, buffer, MAX_BUFFER);
34 close_xml_element(NONE, 0, buffer, MAX_BUFFER);
81 close_xml_element(NONE, 1, buffer, MAX_BUFFER);
97 close_xml_element(NONE, 1, buffer, MAX_BUFFER);
106 close_xml_element(NONE, 0, buffer, MAX_BUFFER);
110 close_xml_element(has_nested ? HELP_EVENT : NONE, has_nested,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
bdb.py 23 def __init__(self, skip=None):
24 self.skip = set(skip) if skip else None
27 self.frame_returning = None
42 self.botframe = None
43 self._set_stopinfo(None, None)
47 return # None
73 if self.botframe is None:
75 self.botframe = frame.f_back # (CT) Note that this may also be None!
79 return # None
    [all...]
subprocess.py 33 class Popen(args, bufsize=0, executable=None,
34 stdin=None, stdout=None, stderr=None,
35 preexec_fn=None, close_fds=False, shell=False,
36 cwd=None, env=None, universal_newlines=False,
37 startupinfo=None, creationflags=0):
73 integer), an existing file object, and None. PIPE indicates that a
74 new pipe to the child should be created. With None, no redirectio
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
text_file.py 29 TextFile (filename=None, file=None, **options)
31 It bombs (RuntimeError) if both 'filename' and 'file' are None;
66 None for end-of-file: an empty string might just be a blank line (or
78 def __init__ (self, filename=None, file=None, **options):
84 if filename is None and file is None:
102 if file is None:
129 self.file = None
    [all...]
unixccompiler.py 58 executables = {'preprocessor' : None,
65 'ranlib' : None,
87 output_file=None, macros=None, include_dirs=None,
88 extra_preargs=None, extra_postargs=None):
90 self._fix_compile_args(None, macros, include_dirs)
105 if self.force or output_file is None or newer(source, output_file):
125 output_dir=None, debug=0, target_lang=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_operator.py 60 __hash__ = None # Silence Py3k warning
105 self.assertRaises(TypeError, operator.abs, None)
111 self.assertRaises(TypeError, operator.add, None, None)
116 self.assertRaises(TypeError, operator.and_, None, None)
121 self.assertRaises(TypeError, operator.concat, None, None)
130 self.assertRaises(TypeError, operator.countOf, None, None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
bdb.py 23 def __init__(self, skip=None):
24 self.skip = set(skip) if skip else None
27 self.frame_returning = None
42 self.botframe = None
43 self._set_stopinfo(None, None)
47 return # None
73 if self.botframe is None:
75 self.botframe = frame.f_back # (CT) Note that this may also be None!
79 return # None
    [all...]
subprocess.py 33 class Popen(args, bufsize=0, executable=None,
34 stdin=None, stdout=None, stderr=None,
35 preexec_fn=None, close_fds=False, shell=False,
36 cwd=None, env=None, universal_newlines=False,
37 startupinfo=None, creationflags=0):
73 integer), an existing file object, and None. PIPE indicates that a
74 new pipe to the child should be created. With None, no redirectio
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
text_file.py 29 TextFile (filename=None, file=None, **options)
31 It bombs (RuntimeError) if both 'filename' and 'file' are None;
66 None for end-of-file: an empty string might just be a blank line (or
78 def __init__ (self, filename=None, file=None, **options):
84 if filename is None and file is None:
102 if file is None:
129 self.file = None
    [all...]
unixccompiler.py 58 executables = {'preprocessor' : None,
65 'ranlib' : None,
87 output_file=None, macros=None, include_dirs=None,
88 extra_preargs=None, extra_postargs=None):
90 self._fix_compile_args(None, macros, include_dirs)
105 if self.force or output_file is None or newer(source, output_file):
125 output_dir=None, debug=0, target_lang=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_operator.py 60 __hash__ = None # Silence Py3k warning
105 self.assertRaises(TypeError, operator.abs, None)
111 self.assertRaises(TypeError, operator.add, None, None)
116 self.assertRaises(TypeError, operator.and_, None, None)
121 self.assertRaises(TypeError, operator.concat, None, None)
130 self.assertRaises(TypeError, operator.countOf, None, None)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wps-nfc.py 34 return None
38 return None
46 return None
51 if (wpas == None):
57 def wpas_get_config_token(id=None):
59 if (wpas == None):
60 return None
66 return None
72 if (wpas == None):
73 return None
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/storage/
AsecTests.java 156 createContainer("testCreateContainer", 4, "none", FS_FAT, true));
166 createContainer("testCreateContainer", 4, "none", FS_EXT4, true));
172 createContainer("testCreateContainer", 4, "none", FS_FAT, false));
178 createContainer("testCreateContainer", 4, "none", FS_EXT4, false));
193 createContainer("testCreateContainer", 1, "none", FS_FAT, true));
203 createContainer("testCreateContainer", 1, "none", FS_EXT4, true));
209 createContainer("testCreateContainer", 1, "none", FS_FAT, false));
215 createContainer("testCreateContainer", 1, "none", FS_EXT4, false));
230 createContainer("testCreateZeroContainer", 0, "none", FS_FAT, true));
239 createContainer("testCreateZeroContainer", 0, "none", FS_EXT4, true))
    [all...]
  /external/chromium_org/third_party/jinja2/
environment.py 41 _make_traceback = None
53 if env is not None:
63 return None
71 if cache is None:
72 return None
179 `None` implicitly into an empty string here.
228 linked_to = None
235 exception_handler = None
236 exception_formatter = None
254 finalize=None,
    [all...]
  /external/chromium_org/chrome/test/chromedriver/client/
chromedriver.py 63 def __init__(self, server_url, chrome_binary=None, android_package=None,
64 android_activity=None, android_process=None,
65 android_use_running_app=None, chrome_switches=None,
66 chrome_extensions=None, chrome_log_path=None,
67 debugger_address=None, browser_log_level=None)
    [all...]

Completed in 1937 milliseconds

<<21222324252627282930>>