HomeSort by relevance Sort by last modified time
    Searched refs:None (Results 1 - 25 of 320) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/gtest/test/
gtest_color_test.py 49 """Sets the env variable to 'value'; unsets it when 'value' is None."""
51 if value is not None:
63 if color_flag is not None:
72 self.assert_(not UsesColor('dumb', None, None))
73 self.assert_(not UsesColor('emacs', None, None))
74 self.assert_(not UsesColor('xterm-mono', None, None))
75 self.assert_(not UsesColor('unknown', None, None)
    [all...]
gtest_list_tests_unittest.py 103 None if the flag should not be present.
109 None if the flag should not be present.
112 if flag_value is None:
124 if other_flag is not None:
132 if expected_output is not None:
140 self.RunAndVerify(flag_value=None,
141 expected_output=None,
142 other_flag=None)
148 expected_output=None,
149 other_flag=None)
    [all...]
gtest_break_on_failure_unittest.py 70 given value is None.
73 if value is not None:
104 variable; None if the variable should be unset.
106 None if the flag should not be present.
113 if env_var_value is None:
118 if flag_value is None:
136 SetEnvVar(BREAK_ON_FAILURE_ENV_VAR, None)
146 self.RunAndVerify(env_var_value=None,
147 flag_value=None,
154 flag_value=None,
    [all...]
gtest_throw_on_failure_test.py 61 given value is None.
65 if value is not None:
89 variable; None if the variable should be unset.
91 None if the flag should not be present.
97 if env_var_value is None:
102 if flag_value is None:
120 SetEnvVar(THROW_ON_FAILURE, None)
131 self.RunAndVerify(env_var_value=None, flag_value=None, should_fail=False)
137 flag_value=None,
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 38 if username not in (None, ''):
41 return None
45 if username not in (None, ''):
48 return None
52 if username not in (None, ''):
55 return None
59 if username not in (None, ''):
62 return None
73 if username not in (None, ''):
76 return None
    [all...]
  /external/webkit/WebCore/bindings/v8/
npruntime_internal.h 35 #undef None
  /external/webkit/WebCore/WebCore.gyp/scripts/
action_makenames.py 109 makeNamesInput = None
110 tagInput = None
111 attrInput = None
120 assert makeNamesInput == None
124 assert tagInput == None
128 assert attrInput == None
133 assert makeNamesInput != None
134 assert tagInput != None or attrInput != None
147 if tagInput != None
    [all...]
  /development/scripts/
add-accounts 40 return None
57 if result is None: return None
69 gmail = None
70 dasher = None
82 if db is None:
105 dasher = None
112 gmail = None
add-accounts-sdk 40 return None
54 if result is None: return None
66 gmail = None
67 hosted = None
79 if db is None:
102 hosted = None
109 gmail = None
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
queries_unittest.py 38 self.assert_execute_outputs(BugsToCommit(), None, "42\n77\n", expected_stderr)
43 self.assert_execute_outputs(PatchesInCommitQueue(), None, expected_stdout, expected_stderr)
50 self.assert_execute_outputs(PatchesToCommitQueue(), None, expected_stdout, expected_stderr, options=options)
54 self.assert_execute_outputs(PatchesToCommitQueue(), None, expected_stdout, expected_stderr, options=options)
59 self.assert_execute_outputs(PatchesToReview(), None, expected_stdout, expected_stderr)
63 self.assert_execute_outputs(TreeStatus(), None, expected_stdout)
abstractsequencedcommand.py 34 steps = None
40 return None
  /external/webkit/WebKitTools/Scripts/webkitpy/
credentials.py 45 def __init__(self, host, git_prefix=None, executive=None, cwd=os.getcwd()):
79 def _run_security_tool(self, username=None):
99 return None
101 def _credentials_from_keychain(self, username=None):
103 return [username, None]
109 return [None, None]
112 username = None
113 password = None
    [all...]
executive.py 41 message=None,
42 script_args=None,
43 exit_code=None,
44 output=None,
45 cwd=None):
92 if output_line == "" and child_process.poll() != None:
140 cwd=None,
141 input=None,
142 error_handler=None,
147 string_to_communicate = None
    [all...]
user_unittest.py 42 return None
49 return None
50 self.assertEqual(User.prompt("input", repeat=self.repeatsRemaining, raw_input=mock_raw_input), None)
  /external/clearsilver/python/examples/base/
odb_mysql.py 21 if str is None: return None
24 def listTables(self, cursor=None):
25 if cursor is None: cursor = self.defaultCursor()
33 def listIndices(self, cursor=None):
36 def listFieldsDict(self, table_name, cursor=None):
37 if cursor is None: cursor = self.defaultCursor()
odb_sqlite.py 38 if str is None:
39 return None
48 def listTables(self, cursor=None):
49 if cursor is None: cursor = self.defaultCursor()
56 def listIndices(self, cursor=None):
57 if cursor is None: cursor = self.defaultCursor()
64 def listFieldsDict(self, table_name, cursor=None):
65 if cursor is None: cursor = self.defaultCursor()
76 def _tableCreateStatement(self, table_name, cursor=None):
77 if cursor is None: cursor = self.defaultCursor(
    [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h 98 struct None {};
710 // will appear as Types<int, None, None, ..., None> in the compiler
    [all...]
  /build/tools/
event_log_tags.py 33 def AddError(self, msg, linenum=None):
34 if linenum is None:
38 def AddWarning(self, msg, linenum=None):
39 if linenum is None:
43 def __init__(self, filename, file_object=None):
45 messages). If 'file_object' is None, 'filename' will be opened
55 if file_object is None:
79 tag = None
91 description = None
112 """Write 'data' to the given output filename (which may be None t
    [all...]
  /external/webkit/WebKitTools/simplejson/
encoder.py 8 _speedups = None
101 | None | null |
114 indent=None, separators=None, encoding='utf-8'):
119 encoding of keys that are not str, int, long, float or None. If
143 None is the most compact representation.
149 If encoding is not None, then all input strings will be
161 if separators is not None:
168 def _iterencode_list(self, lst, markers=None):
172 if markers is not None
    [all...]
  /external/v8/tools/
utils.py 63 return None
70 elif (not id) or (not re.match('(x|i[3-6])86', id) is None):
75 return None
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
__init__.py 36 def get(port_name=None, options=None):
38 port_name is None, this routine attempts to guess at the most
41 if port_to_use is None:
  /external/webkit/JavaScriptCore/wrec/
Quantifier.h 40 None,
46 Quantifier(Type type = None, unsigned min = 0, unsigned max = Infinity)
  /development/tools/axl/
chewie.py 50 t0 = None
57 opened = {"http0": None,
58 "http1": None,
59 "http2": None,
60 "http3": None,
61 "http4": None,
62 "http5": None}
89 if t0 == None: t0 = int(x[0])
105 record = [thread, qtime, opentime, time, None, None, None, url, host, connection
    [all...]
  /external/webkit/WebCore/rendering/style/
StyleDashboardRegion.h 42 None,
  /external/webkit/WebKitTools/DumpRenderTree/mac/
NavigationController.h 34 enum { None, Load, GoBack, ExecuteScript } pendingAction;

Completed in 3239 milliseconds

1 2 3 4 5 6 7 8 91011>>