HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 176 - 200 of 4172) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/python/cpython2/Lib/lib2to3/fixes/
fix_xreadlines.py 19 def transform(self, node, results):
20 no_call = results.get("no_call")
25 node.replace([x.clone() for x in results["call"]])
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_dict.py 54 def transform(self, node, results):
55 head = results["head"]
56 method = results["method"][0] # Extract node for method name
57 tail = results["tail"]
72 results["parens"].clone()]
93 results = {}
95 self.p1.match(node.parent.parent, results) and
96 results["node"] is node):
99 return results["func"].value in iter_exempt
102 return results["func"].value in fixer_util.consuming_call
    [all...]
fix_xreadlines.py 19 def transform(self, node, results):
20 no_call = results.get("no_call")
25 node.replace([x.clone() for x in results["call"]])
  /external/tensorflow/tensorflow/examples/speech_commands/
recognize_commands_test.cc 28 Tensor results(DT_FLOAT, {3});
29 test::FillValues<float>(&results, {1.0f, 0.0f, 0.0f});
35 results, 0, &found_command, &score, &is_new_command));
41 Tensor results(DT_FLOAT, {3});
43 test::FillValues<float>(&results, {0.0f, 1.0f, 0.0f});
52 results, current_time_ms, &found_command, &score, &is_new_command));
62 test::FillValues<float>(&results, {0.0f, 0.0f, 1.0f});
71 results, current_time_ms, &found_command, &score, &is_new_command));
100 Tensor results(DT_FLOAT, {3});
101 test::FillValues<float>(&results, {1.0f, 0.0f, 0.0f})
    [all...]
  /external/v8/infra/mb/
PRESUBMIT.py 12 results = []
22 results.extend(input_api.RunTests([
27 return results
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_dict.py 55 def transform(self, node, results):
56 head = results["head"]
57 method = results["method"][0] # Extract node for method name
58 tail = results["tail"]
73 results["parens"].clone()]
94 results = {}
96 self.p1.match(node.parent.parent, results) and
97 results["node"] is node):
100 return results["func"].value in iter_exempt
103 return results["func"].value in fixer_util.consuming_call
    [all...]
fix_xreadlines.py 19 def transform(self, node, results):
20 no_call = results.get("no_call")
25 node.replace([x.clone() for x in results["call"]])
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_dict.py 55 def transform(self, node, results):
56 head = results["head"]
57 method = results["method"][0] # Extract node for method name
58 tail = results["tail"]
73 results["parens"].clone()]
94 results = {}
96 self.p1.match(node.parent.parent, results) and
97 results["node"] is node):
100 return results["func"].value in iter_exempt
103 return results["func"].value in fixer_util.consuming_call
    [all...]
fix_xreadlines.py 19 def transform(self, node, results):
20 no_call = results.get("no_call")
25 node.replace([x.clone() for x in results["call"]])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_dict.py 55 def transform(self, node, results):
56 head = results["head"]
57 method = results["method"][0] # Extract node for method name
58 tail = results["tail"]
73 results["parens"].clone()]
94 results = {}
96 self.p1.match(node.parent.parent, results) and
97 results["node"] is node):
100 return results["func"].value in iter_exempt
103 return results["func"].value in fixer_util.consuming_call
    [all...]
fix_xreadlines.py 19 def transform(self, node, results):
20 no_call = results.get("no_call")
25 node.replace([x.clone() for x in results["call"]])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_dict.py 55 def transform(self, node, results):
56 head = results["head"]
57 method = results["method"][0] # Extract node for method name
58 tail = results["tail"]
73 results["parens"].clone()]
94 results = {}
96 self.p1.match(node.parent.parent, results) and
97 results["node"] is node):
100 return results["func"].value in iter_exempt
103 return results["func"].value in fixer_util.consuming_call
    [all...]
fix_xreadlines.py 19 def transform(self, node, results):
20 no_call = results.get("no_call")
25 node.replace([x.clone() for x in results["call"]])
  /external/libxcam/modules/isp/
isp_image_processor.cpp 78 IspImageProcessor::apply_3a_results (X3aResultList &results)
82 if (results.empty())
96 if ((ret = merge_results (results)) != XCAM_RETURN_NO_ERROR) {
101 if ((ret = apply_exposure_result (results)) != XCAM_RETURN_NO_ERROR) {
121 X3aResultList results; local
122 results.push_back (result);
123 ret = apply_3a_results (results);
128 IspImageProcessor::merge_results (X3aResultList &results)
130 if (results.empty())
133 for (X3aResultList::iterator iter = results.begin ()
    [all...]
  /test/vts/utils/python/file/
target_file_utils.py 37 results = shell.Execute(cmd)
38 return results[const.EXIT_CODE][0] == 0
87 results = shell.Execute(cmd)
88 logging.info("%s: Shell command '%s' results: %s", path, cmd, results)
90 if results[const.EXIT_CODE][0] != 0:
91 raise IOError(results[const.STDERR][0])
93 stdout = str(results[const.STDOUT][0])
112 results = shell.Execute(cmd)
113 logging.info("%s: Shell command '%s' results: %s", filepath, cmd, results
    [all...]
  /external/autotest/client/common_lib/
gtest_parser.py 76 status: test results status to search for.
173 results = self._master_name_re.search(line)
174 if results:
175 self.master_name = results.group(1)
178 results = self._disabled.search(line)
179 if results:
181 disabled = int(results.group(1))
194 results = self._flaky.search(line)
195 if results:
197 flaky = int(results.group(1)
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/tethering/
OffloadHardwareInterface.java 123 final CbResults results = new CbResults(); local
128 results.success = success;
129 results.errMsg = errMsg;
136 record(logmsg, results);
137 return results.success;
181 final CbResults results = new CbResults(); local
185 results.success = success;
186 results.errMsg = errMsg;
193 record(logmsg, results);
194 return results.success
201 final CbResults results = new CbResults(); local
228 final CbResults results = new CbResults(); local
248 final CbResults results = new CbResults(); local
267 final CbResults results = new CbResults(); local
    [all...]
  /external/autotest/client/site_tests/audio_Aplay/
audio_Aplay.py 14 # Expected results of 'aplay -v' commands.
68 The expected results are compared as sets of tuples.
75 results = _play_audio(duration)
76 if not results.startswith("Playing raw data '%s' :" % APLAY_FILE):
77 raise error.TestError('%s: %s' % (error_msg, results))
78 result_set = utils.set_from_keyval_output(results, '[\s]*:[\s]*')
  /external/cmockery/cmockery_0_1_2/src/example/
database.h 18 /* Function that takes an SQL query string and sets results to an array of
20 * number of items in the returned array of results. The returned array of
21 * results are statically allocated and should not be deallocated using free()
25 void *** const results);
  /external/google-breakpad/src/testing/gtest/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /external/googletest/googletest/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /external/icu/icu4c/source/i18n/
csrecog.h 43 * Try the given input text against this Charset, and fill in the results object
49 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
csrsbcs.h 78 virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
87 virtual UBool match(InputText *det, CharsetMatch *results) const;
95 virtual UBool match(InputText *det, CharsetMatch *results) const;
146 virtual UBool match(InputText *det, CharsetMatch *results) const;
156 virtual UBool match(InputText *det, CharsetMatch *results) const;
166 virtual UBool match(InputText *det, CharsetMatch *results) const;
178 virtual UBool match(InputText *det, CharsetMatch *results) const;
188 virtual UBool match(InputText *det, CharsetMatch *results) const;
198 virtual UBool match(InputText *det, CharsetMatch *results) const;
210 virtual UBool match(InputText *det, CharsetMatch *results) const
    [all...]
csrucode.h 41 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
53 UBool match(InputText* textIn, CharsetMatch *results) const;
64 UBool match(InputText* textIn, CharsetMatch *results) const;
77 UBool match(InputText* textIn, CharsetMatch *results) const;
csrutf8.h 37 UBool match(InputText *input, CharsetMatch *results) const;

Completed in 759 milliseconds

1 2 3 4 5 6 78 91011>>