Home
last modified time | relevance | path

Searched refs:_result (Results 1 – 25 of 47) sorted by relevance

12

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/
Dtest_response.py35 Item = obj._result.Item
66 list(map(int, obj._result.Item)),
70 list(map(lambda x: list(map(int, x.Foo)), obj._result.Extra)),
122 item = obj._result.Item
139 [e.Value for e in obj._result.Item],
158 [e.Value for e in obj._result.Item],
161 self.assertTrue(obj._result.Item[1].Error == 'Four')
163 obj._result.Item[2].Error
173 self.assertSequenceEqual(obj._result.Item, [])
182 self.assertSequenceEqual(obj._result.Item, [])
[all …]
Dtest_connection.py154 self.assertEqual(response._result.__class__,
167 self.assertEqual(response._result.__class__, MyResult)
168 self.assertEqual(response._result._hello, '_world')
169 self.assertEqual(response._result.HasNext, 'true')
/external/emma/core/java12/com/vladium/util/
DStrings.java56 final List /* String */ _result = new ArrayList (length); in removeDuplicates() local
63 if (_strings.add (s)) _result.add (s); in removeDuplicates()
66 final int resultLength = _result.size (); in removeDuplicates()
72 _result.toArray (result); in removeDuplicates()
97 final List /* String */ _result = new ArrayList (length); in merge() local
108 if (_strings.add (ss)) _result.add (ss); in merge()
112 final String [] result = new String [_result.size ()]; in merge()
113 _result.toArray (result); in merge()
142 final List /* String */ _result = new ArrayList (length); in mergeAT() local
160 if (_strings.add (sss)) _result.add (sss); in mergeAT()
[all …]
DFiles.java41 List _result = null; in readFileList() local
47 _result = new LinkedList (); in readFileList()
54 _result.add (line); in readFileList()
62 if ((_result == null) || _result.isEmpty ()) in readFileList()
66 final String [] result = new String [_result.size ()]; in readFileList()
67 _result.toArray (result); in readFileList()
93 final List /* Files */ _result = new ArrayList (path.length); in pathToFiles()
112 _result.add (new File (pathname)); in pathToFiles()
117 final File [] result = new File [_result.size ()]; in pathToFiles()
118 _result.toArray (result); in pathToFiles()
DIntegerFactory.java26 final Object _result = s_values.get (value); in getInteger() local
28 if (_result == null) in getInteger()
36 return (Integer) _result; in getInteger()
DIProperties.java242 final List _result = new ArrayList (); in toAppArgsForm() local
248 _result.add (prefix.concat (name).concat ("=").concat (value)); in toAppArgsForm()
251 final String [] result = new String [_result.size ()]; in toAppArgsForm()
252 _result.toArray (result); in toAppArgsForm()
/external/opencv3/modules/imgproc/src/
Dtemplmatch.cpp59 static bool extractFirstChannel_32F(InputArray _image, OutputArray _result, int cn) in extractFirstChannel_32F() argument
72 UMat result = _result.getUMat(); in extractFirstChannel_32F()
169 static bool convolve_dft(InputArray _image, InputArray _templ, OutputArray _result) in convolve_dft() argument
176 _result.create(buf.result_size, CV_32F); in convolve_dft()
181 UMat result = _result.getUMat(); in convolve_dft()
235 static bool convolve_32F(InputArray _image, InputArray _templ, OutputArray _result) in convolve_32F() argument
237 _result.create(_image.rows() - _templ.rows() + 1, _image.cols() - _templ.cols() + 1, CV_32F); in convolve_32F()
240 return(convolve_dft(_image, _templ, _result)); in convolve_32F()
249 UMat result = _result.getUMat(); in convolve_32F()
250 return (extractFirstChannel_32F(result_, _result, _image.channels())); in convolve_32F()
[all …]
/external/opencv3/modules/cudaimgproc/src/
Dmatch_template.cpp183 …void Match_CCORR_32F::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& _st… in match() argument
196 _result.create(image.rows - templ.rows + 1, image.cols - templ.cols + 1, CV_32FC1); in match()
197 GpuMat result = _result.getGpuMat(); in match()
233 …void Match_CCORR_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stre… in match() argument
246 _result.create(image.rows - templ.rows + 1, image.cols - templ.cols + 1, CV_32FC1); in match()
247 GpuMat result = _result.getGpuMat(); in match()
256 match32F_.match(imagef_, templf_, _result, stream); in match()
276 …void Match_CCORR_NORMED_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Strea… in match() argument
287 match_CCORR_.match(image, templ, _result, stream); in match()
288 GpuMat result = _result.getGpuMat(); in match()
[all …]
Dblend.cpp71 OutputArray _result, Stream& stream) in blendLinear() argument
90 _result.create(size, CV_MAKE_TYPE(depth, cn)); in blendLinear()
91 GpuMat result = _result.getGpuMat(); in blendLinear()
/external/libdivsufsort/CMakeModules/
DAppendCompilerFlags.cmake4 macro(append_c_compiler_flags _flags _name _result)
16 set(${_result} "${${_result}} ${flag}")
22 macro(append_cxx_compiler_flags _flags _name _result)
34 set(${_result} "${${_result}} ${flag}")
DCheckFunctionKeywords.cmake4 set(${_result} "")
10 if(${have_flag} AND NOT ${_result})
11 set(${_result} "${flag}")
13 endif(${have_flag} AND NOT ${_result})
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/mws/
Dtest.py72 self.assertEqual(len(response._result.Self), 3)
73 categoryids = [x.ProductCategoryId for x in response._result.Self]
81 products = response._result.Products
90 attributes = response._result[0].Product.AttributeSets.ItemAttributes
100 self.assertEqual(len(response._result), 2)
101 for result in response._result:
111 listings = response._result[0].Product.LowestOfferListings
119 self.assertTrue(hasattr(response._result, 'InventorySupplyList'))
/external/vboot_reference/tests/tpm_lite/
Dtlcl_tests.h20 uint32_t _result = (tpm_command); \
22 if (_result != _exp) { \
24 " (expecting 0x%x)\n", __LINE__, _result, _exp); \
25 return _result; \
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/
Dhtml_output_formatter.py54 self._result = {
101 self._result['tests'].setdefault(self._test_name, {})
102 self._result['tests'][self._test_name].setdefault('metrics', {})
110 self._result['tests'][self._test_name]['metrics'][metric_name] = metric_data
152 return self._result
/external/emma/tools/java/com/vladium/tools/
DClassDep.java114 final Set /* class Java name:String */ _result = new HashSet (); in getDependencies() local
121 _result.add (m_rootSet [i]); in getDependencies()
171 if (_result.add (Descriptors.vmNameToJavaName (classDepVMName))) in getDependencies()
179 final String [] result = new String [_result.size ()]; in getDependencies()
180 _result.toArray (result); in getDependencies()
/external/autotest/server/cros/
Dremote_command.py18 self._result = None
25 self._result = self._host.run(self._cmd, ignore_status=True)
35 return self._result
/external/elfutils/libdw/
DlibdwP.h414 type *_result = (type *) (_tail->mem + (_tail->size - _tail->remaining));\
416 - ((uintptr_t) _result & (__alignof (type) - 1))) \
419 _result = (type *) __libdw_allocate (dbg, _required, __alignof (type));\
423 _result = (type *) ((char *) _result + _padding); \
426 _result; })
/external/libdrm/
Dxf86drm.h480 #define DRM_CAS_RESULT(_result) long _result argument
482 #define DRM_CAS_RESULT(_result) int _result argument
484 #define DRM_CAS_RESULT(_result) char _result argument
/external/robolectric/v3/runtime/
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
/external/webrtc/webrtc/base/
Dchecks.h93 if (std::string* _result = \
95 rtc::FatalMessage(__FILE__, __LINE__, _result).stream()
/external/chromium-trace/catapult/experimental/buildbot/
Dbuildbot.py300 self._result = data['results'][0]
321 '_result': self._result,
343 return self._result

12