HomeSort by relevance Sort by last modified time
    Searched refs:criteria (Results 26 - 50 of 156) sorted by null

12 3 4 5 6 7

  /frameworks/base/media/java/android/media/audiopolicy/
AudioPolicyConfig.java 94 final ArrayList<AudioMixMatchCriterion> criteria = mix.getRule().getCriteria(); local
95 dest.writeInt(criteria.size());
96 for (AudioMixMatchCriterion criterion : criteria) {
160 final ArrayList<AudioMixMatchCriterion> criteria = mix.getRule().getCriteria(); local
161 for (AudioMixMatchCriterion criterion : criteria) {
AudioMixingRule.java 45 private AudioMixingRule(int mixType, ArrayList<AudioMixMatchCriterion> criteria) {
46 mCriteria = criteria;
  /external/mesa3d/src/egl/main/
eglconfig.c 129 /* criteria */
428 * Return true if a config matches the criteria. This and
436 _eglMatchConfig(const _EGLConfig *conf, const _EGLConfig *criteria)
447 cmp = _eglGetConfigKey(criteria, attr);
480 "the value (0x%x) of attribute 0x%04x did not meet the criteria (0x%x)",
510 * Initialize a criteria config from the given attribute list.
571 * Decide the ordering of conf1 and conf2, under the given criteria.
585 const _EGLConfig *criteria, EGLBoolean compare_id)
614 if (criteria) {
617 if (criteria->RedSize > 0)
789 _EGLConfig criteria; local
    [all...]
eglconfig.h 202 _eglMatchConfig(const _EGLConfig *conf, const _EGLConfig *criteria);
212 const _EGLConfig *criteria, EGLBoolean compare_id);
  /frameworks/base/location/java/android/location/
ILocationManager.aidl 21 import android.location.Criteria;
84 List<String> getProviders(in Criteria criteria, boolean enabledOnly);
85 String getBestProvider(in Criteria criteria, boolean enabledOnly);
86 boolean providerMeetsCriteria(String provider, in Criteria criteria);
LocationRequest.java 198 public static LocationRequest createFromDeprecatedCriteria(Criteria criteria, long minTime,
204 switch (criteria.getAccuracy()) {
205 case Criteria.ACCURACY_COARSE:
208 case Criteria.ACCURACY_FINE:
212 switch (criteria.getPowerRequirement()) {
213 case Criteria.POWER_HIGH:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
constraintquery.py 45 criteria. If false, any set intersection
81 def _match_expr(self, expr, criteria, indirect, regex):
88 criteria The criteria to match.
100 return match_in_set(obj, criteria, regex)
  /external/ltp/testcases/realtime/func/matrix_mult/
matrix_mult.c 50 #define PASS_CRITERIA 0.75 /* Avg concurrent time * pass criteria < avg seq time - */
63 static float criteria; variable
304 if (savg > (cavg * criteria))
308 criteria);
321 criteria = pass_criteria * numcpus;
  /external/opencv/cv/src/
cvsnakes.cpp 63 // criteria - termination criteria.
79 int coeffUsage, CvSize win, CvTermCriteria criteria, int scheme )
388 if( (criteria.type & CV_TERMCRIT_ITER) && (iteration >= criteria.max_iter) )
390 if( (criteria.type & CV_TERMCRIT_EPS) && (moved <= criteria.epsilon) )
413 CvTermCriteria criteria, int calcGradient )
433 alpha, beta, gamma, coeffUsage, win, criteria,
cvoptflowhs.cpp 70 // criteria - criteria of termination processmaximum number of iterations
95 CvTermCriteria criteria )
378 if( criteria.type & CV_TERMCRIT_EPS )
404 if( criteria.type & CV_TERMCRIT_EPS )
434 if( criteria.type & CV_TERMCRIT_EPS )
459 if( (criteria.type & CV_TERMCRIT_ITER) && (iter == criteria.max_iter) )
461 if( (criteria.type & CV_TERMCRIT_EPS) && (Eps < criteria.epsilon)
    [all...]
cvcontourtree.cpp 673 // criteria - criteria for the definition threshold value
679 CvTermCriteria criteria )
709 criteria = cvCheckTermCriteria( criteria, 0., 100 );
716 log_iter = (char) (criteria.type == CV_TERMCRIT_ITER ||
717 (criteria.type == CV_TERMCRIT_ITER + CV_TERMCRIT_EPS));
718 log_eps = (char) (criteria.type == CV_TERMCRIT_EPS ||
719 (criteria.type == CV_TERMCRIT_ITER + CV_TERMCRIT_EPS));
752 threshold = criteria.epsilon * area_all
    [all...]
cvlkpyramid.cpp 76 int level, CvTermCriteria * criteria,
107 switch( criteria->type )
110 criteria->epsilon = 0.f;
113 criteria->max_iter = max_iters;
119 CV_ERROR( CV_StsBadArg, "Invalid termination criteria" );
123 criteria->epsilon *= criteria->epsilon;
270 CvTermCriteria criteria, int flags )
370 level, &criteria, MAX_ITERS, flags,
406 winSize.width*2 + 1, level, criteria.max_iter
    [all...]
  /external/parameter-framework/upstream/bindings/c/
ParameterFramework.h 154 * @param[in] criteria An array of PfwCriterion.
155 * @param[in] criterionNb The number of PfwCriterion in criteria.
162 bool pfwStart(PfwHandler *handle, const char *configPath, const PfwCriterion criteria[],
204 /** Commit criteria change and change parameters according to the configurations.
  /prebuilts/go/darwin-x86/src/net/
nss_test.go 96 criteria: []nssCriterion{
127 criteria: []nssCriterion{
  /prebuilts/go/linux-x86/src/net/
nss_test.go 96 criteria: []nssCriterion{
127 criteria: []nssCriterion{
  /external/chromium-trace/catapult/devil/devil/android/
app_ui.py 113 """Find the first descendant node that matches a given criteria.
138 given key-value criteria; or None if no such node is found.
156 criteria = [(k.replace('_', '-'), v)
159 if not criteria:
160 raise TypeError('At least one search criteria should be specified')
161 return lambda node: all(node.get(k) == v for k, v in criteria)
215 """Get the first node found matching a specified criteria.
228 """Wait for a node matching a given criteria to appear on the screen.
233 For other args, to specify the search criteria, see _UiNode._Find.
  /external/libmojo/third_party/catapult/devil/devil/android/
app_ui.py 113 """Find the first descendant node that matches a given criteria.
138 given key-value criteria; or None if no such node is found.
156 criteria = [(k.replace('_', '-'), v)
159 if not criteria:
160 raise TypeError('At least one search criteria should be specified')
161 return lambda node: all(node.get(k) == v for k, v in criteria)
215 """Get the first node found matching a specified criteria.
228 """Wait for a node matching a given criteria to appear on the screen.
233 For other args, to specify the search criteria, see _UiNode._Find.
  /external/autotest/client/site_tests/video_YouTubeMseEme/files/
video_YouTubeMseEme.js 417 return function(codecs, keySystem, criteria) {
424 if (criteria === null)
426 else if (typeof(criteria) === 'string')
427 return testResult === criteria;
428 else if (criteria.length) {
430 for (var i in criteria)
431 checks |= testResult === criteria[i];
  /external/opencv/cv/include/
cv.hpp 373 CvLevMarq( int nparams, int nerrs, CvTermCriteria criteria=
377 void init( int nparams, int nerrs, CvTermCriteria criteria=
399 CvTermCriteria criteria; member in struct:CvLevMarq
cv.h 476 double lambda, CvTermCriteria criteria );
497 CvTermCriteria criteria,
510 CvTermCriteria criteria, int flags );
577 CvTermCriteria criteria, CvConnectedComp* comp,
583 CvTermCriteria criteria, CvConnectedComp* comp );
    [all...]
  /prebuilts/go/darwin-x86/src/sort/
example_keys_test.go 63 // ExampleSortKeys demonstrates a technique for sorting a struct type using programmable sort criteria.
79 // Sort the planets by the various criteria.
  /prebuilts/go/linux-x86/src/sort/
example_keys_test.go 63 // ExampleSortKeys demonstrates a technique for sorting a struct type using programmable sort criteria.
79 // Sort the planets by the various criteria.
  /external/autotest/client/site_tests/firmware_TouchMTB/
report_html.py 51 self.criteria_string = ' criteria: %s'
56 $criteria
94 criteria_string = self.criteria_string % vlog.criteria
98 criteria=criteria_string,
  /external/deqp/modules/egl/
teglChooseConfigReference.cpp 46 enum Criteria
69 Criteria criteria; member in struct:deqp::egl::AttribRule
75 , criteria (CRITERIA_LAST)
80 AttribRule (EGLenum name_, EGLint value_, Criteria criteria_, SortOrder sortOrder_)
83 , criteria (criteria_)
289 // Attribute Default Selection Criteria Sort Order Sort Priority
407 switch (rule.criteria)
425 TCU_FAIL("Unknown criteria");
  /external/parameter-framework/upstream/tools/xmlGenerator/
domainGenerator.py 51 argparser.add_argument('--criteria',
52 help="Criteria file, in '<type> <name> : <value> <value...>' \
92 # Parse a criteria file
94 # This file define one criteria per line; they should respect this format:
152 # create and inject all the criteria
153 logging.info("Creating all criteria")
182 all_criteria = parseCriteria(args.criteria)

Completed in 814 milliseconds

12 3 4 5 6 7