HomeSort by relevance Sort by last modified time
    Searched full:_results (Results 1 - 25 of 42) sorted by null

1 2

  /external/lldb/test/unittest2/
signals.py 24 for result in _results.keys():
27 _results = weakref.WeakKeyDictionary() variable
29 _results[result] = 1
32 return bool(_results.pop(result, None))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
signals.py 38 for result in _results.keys():
41 _results = weakref.WeakKeyDictionary() variable
43 _results[result] = 1
46 return bool(_results.pop(result, None))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
signals.py 38 for result in _results.keys():
41 _results = weakref.WeakKeyDictionary() variable
43 _results[result] = 1
46 return bool(_results.pop(result, None))
  /external/opencv/ml/src/
mlknearest.cpp 214 CvMat* _results, CvMat* _neighbor_responses,
220 int rstep = _results && !CV_IS_MAT_CONT(_results->type) ? _results->step/sizeof(result) : 1;
227 if( _results || start+i == 0 )
276 if( _results )
277 _results->data.fl[(start + i)*rstep] = r;
305 float CvKNearest::find_nearest( const CvMat* _samples, int k, CvMat* _results,
327 if( _results && (!CV_IS_MAT(_results) ||
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex_grep_matcher.h 53 /// A _Results facade specialized for wrapping a templated match_results.
56 : public _Results
114 _Results& __r,
130 _Results& _M_results;
regex_nfa.h 77 struct _Results
84 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
96 operator()(const _PatternCursor& __pc, _Results& __r)
112 operator()(const _PatternCursor& __pc, _Results& __r)
regex_grep_matcher.tcc 107 _Grep_matcher(_PatternCursor& __p, _Results& __r,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
regex_grep_matcher.h 53 /// A _Results facade specialized for wrapping a templated match_results.
56 : public _Results
114 _Results& __r,
130 _Results& _M_results;
regex_nfa.h 77 struct _Results
84 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
96 operator()(const _PatternCursor& __pc, _Results& __r)
112 operator()(const _PatternCursor& __pc, _Results& __r)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex_grep_matcher.h 53 /// A _Results facade specialized for wrapping a templated match_results.
56 : public _Results
114 _Results& __r,
130 _Results& _M_results;
regex_nfa.h 77 struct _Results
84 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
96 operator()(const _PatternCursor& __pc, _Results& __r)
112 operator()(const _PatternCursor& __pc, _Results& __r)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_grep_matcher.h 47 // A _Results facade specialized for wrapping a templated match_results.
50 : public _Results
108 _Results& __r,
125 _Results& _M_results;
regex_nfa.h 72 struct _Results
79 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
90 operator()(const _PatternCursor& __pc, _Results& __r)
105 operator()(const _PatternCursor& __pc, _Results& __r)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_grep_matcher.h 47 // A _Results facade specialized for wrapping a templated match_results.
50 : public _Results
108 _Results& __r,
125 _Results& _M_results;
regex_nfa.h 72 struct _Results
79 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
90 operator()(const _PatternCursor& __pc, _Results& __r)
105 operator()(const _PatternCursor& __pc, _Results& __r)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_grep_matcher.h 47 // A _Results facade specialized for wrapping a templated match_results.
50 : public _Results
108 _Results& __r,
125 _Results& _M_results;
regex_nfa.h 72 struct _Results
79 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
90 operator()(const _PatternCursor& __pc, _Results& __r)
105 operator()(const _PatternCursor& __pc, _Results& __r)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_grep_matcher.h 47 // A _Results facade specialized for wrapping a templated match_results.
50 : public _Results
108 _Results& __r,
125 _Results& _M_results;
regex_nfa.h 72 struct _Results
79 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
90 operator()(const _PatternCursor& __pc, _Results& __r)
105 operator()(const _PatternCursor& __pc, _Results& __r)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex_grep_matcher.h 53 /// A _Results facade specialized for wrapping a templated match_results.
56 : public _Results
114 _Results& __r,
130 _Results& _M_results;
regex_nfa.h 77 struct _Results
84 typedef std::function<void (const _PatternCursor&, _Results&)> _Tagger;
96 operator()(const _PatternCursor& __pc, _Results& __r)
112 operator()(const _PatternCursor& __pc, _Results& __r)
  /external/lldb/test/unittest2/test/
test_break.py 22 unittest2.signals._results = weakref.WeakKeyDictionary()
43 for ref in unittest2.signals._results:
148 self.assertIn(result, unittest2.signals._results)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_break.py 27 unittest.signals._results = weakref.WeakKeyDictionary()
48 for ref in unittest.signals._results:
161 self.assertIn(result, unittest.signals._results)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_break.py 27 unittest.signals._results = weakref.WeakKeyDictionary()
48 for ref in unittest.signals._results:
161 self.assertIn(result, unittest.signals._results)
  /frameworks/base/services/core/java/com/android/server/am/
ActivityManagerDebugConfig.java 116 static final String POSTFIX_RESULTS = (APPEND_CATEGORY_NAME) ? "_Results" : "";

Completed in 1055 milliseconds

1 2