Searched refs:criterion (Results 1 - 25 of 27) sorted by relevance

12

/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/
H A DUserInteractor.py29 from clientsimulator.criterion.InclusiveCriterion import InclusiveCriterion
128 def __setCriterion(self, criterion, value):
129 criterion.currentValue = value
131 def __removeCriterionValue(self, criterion, value):
132 criterion.removeValue(value)
134 def __editCriterion(self, criterion):
136 Allow to change the value of a criterion through a menu.
138 :param criterion: the criterion to edit
139 :type criterion
[all...]
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
H A DCriterionClassFactory.py29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.ExclusiveCriterion import ExclusiveCriterion
31 from clientsimulator.criterion.InclusiveCriterion import InclusiveCriterion
45 :param allowedValues: all values the criterion can take
47 :param base: direct mother class of the created criterion subclass
51 :return: A criterion subclass
78 # such as BaseClass, criterion name and possible values
H A DExclusiveCriterion.py29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.Criterion import InvalidCriterionException
38 This types of criterion can only have one value at a time
H A DInclusiveCriterion.py29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.Criterion import InvalidCriterionException
38 This types of criterion can have several values at the same time
/external/parameter-framework/upstream/bindings/c/
H A DParameterFramework.cpp182 const PfwCriterion &criterion = criteriaArray[criterionIndex]; local
183 if (criterion.name == NULL) {
186 if (criterion.values == NULL) {
189 // Check that the criterion does not exist
190 if (criteria.find(criterion.name) != criteria.end()) {
191 return status.failure("Criterion \"" + string(criterion.name) + "\" already exist");
194 // Create criterion type
196 pfw->createSelectionCriterionType(criterion.inclusive);
198 // Add criterion values
199 for (size_t valueIndex = 0; criterion
263 pfw::Criterion *criterion = getCriterion(handle->criteria, name); local
277 pfw::Criterion *criterion = getCriterion(handle->criteria, name); local
[all...]
/external/fio/unit_tests/
H A Dsteadystate_tests.py43 def check(data, iops, slope, pct, limit, dur, criterion):
53 criterion = criterion[:-1]
62 criterion = criterion[:-1]
66 criterion = float(criterion)
67 return (abs(target - criterion) / criterion < 0.005), target < limit, mean, target
165 # check runtime >= ss_dur + ss_ramp, check criterion, chec
178 criterion=jsonjob['steadystate']['criterion']) variable
200 criterion=jsonjob['steadystate']['criterion']) variable
[all...]
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/
H A DTestLauncher.py29 from clientsimulator.criterion.ExclusiveCriterion import ExclusiveCriterion
50 :param criterionClasses: runtime generated criterion classes
147 for criterion in criterions:
148 if ExclusiveCriterion in criterion.__class__.__bases__:
149 criterionValue = [criterion.currentValue]
151 criterionValue = criterion.currentValue
154 setCriterionArgs = [criterion.__class__.__name__] + criterionValueArg
/external/toolchain-utils/cros_utils/
H A Dpstat.py42 dm (listoflists,criterion)
58 remap (listoflists,criterion)
72 adm (a,criterion)
320 def dm(listoflists, criterion):
323 the passed criterion expression (a string as a function of x; e.g., 'x[3]>=9'
327 Usage: dm (listoflists, criterion)
328 Returns: rows from listoflists that meet the specified criterion.
330 function = 'filter(lambda x: ' + criterion + ',listoflists)'
362 criterion = ''
368 criterion
[all...]
/external/fio/
H A Dsteadystate.h30 double criterion; member in struct:steadystate_data
H A Dsteadystate.c106 ss->criterion = 100.0 * ss->slope / (ss->sum_y / ss->dur);
108 ss->criterion = ss->slope;
111 "criterion: %f, limit: %f\n",
114 ss->slope, ss->criterion, ss->limit);
116 result = ss->criterion * (ss->criterion < 0.0 ? -1.0 : 1.0);
174 ss->criterion = 100.0 * ss->deviation / mean;
176 ss->criterion = ss->deviation;
181 ss->deviation, ss->criterion, ss->limit);
183 if (ss->criterion < s
[all...]
H A Dstat.c1328 json_object_add_value_string(tmp, "criterion", ss_buf);
1695 ts->ss_criterion.u.f = td->ss.criterion;
/external/parameter-framework/upstream/tools/xmlGenerator/
H A DdomainGenerator.py154 for criterion in all_criteria:
155 yield ["createSelectionCriterion", criterion['inclusive'],
156 criterion['name']] + criterion['values']
/external/trappy/tests/trappy/plotter/
H A DConstraint.py130 criterion = values.map(lambda x: True)
134 criterion = criterion & data[key].map(
138 criterion &= data[self._pivot] == pivot_val
140 val_series = values[criterion]
/external/trappy/trappy/plotter/
H A DConstraint.py130 criterion = values.map(lambda x: True)
134 criterion = criterion & data[key].map(
138 criterion &= data[self._pivot] == pivot_val
140 val_series = values[criterion]
/external/parameter-framework/upstream/tools/coverage/
H A Dcoverage.py39 - criterion
399 "Includes" : lambda criterion, value: criterion.stateIncludes(value),
400 "Excludes" : lambda criterion, value: not criterion.stateIncludes(value),
401 "Is" : lambda criterion, value: criterion.stateIs(value),
402 "IsNot" : lambda criterion, value: not criterion.stateIs(value)
412 self.isApplicableOperation = lambda criterion
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DIItemAttribute.java46 boolean passes (IItem item, int criterion); // ideally, criteria should come from a double-dispatched API argument
99 public boolean passes (final IItem item, final int criterion) argument
164 public boolean passes (final IItem item, final int criterion) argument
169 return ((double) n) * IItem.PRECISION >= ((double) d) * m_scale * criterion;
H A DReportProperties.java412 final double criterion;
420 criterion = Double.parseDouble (metricSpec.substring (separator + 1));
421 if ((criterion < 0.0) || (criterion > 101.0)) continue;
436 _metrics.put (out [0], (int) Math.round (((criterion * IItem.PRECISION) / 100.0)));
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DAbstractEstimator.java175 * criterion that is minimized by the estimator as follows: if
176 * <em>c</em> if the criterion, and <em>n</em> is the number of
184 double criterion = 0;
187 criterion += wm[i].getWeight() * residual * residual;
189 return FastMath.sqrt(criterion / wm.length);
/external/trappy/tests/trappy/stats/
H A Dgrammar.py543 criterion = pd.Series([True] * len(data_frame),
552 criterion &= dfr_col.isin(listify(wanted_vals))
554 data_frame = data_frame[criterion]
/external/trappy/trappy/stats/
H A Dgrammar.py543 criterion = pd.Series([True] * len(data_frame),
552 criterion &= dfr_col.isin(listify(wanted_vals))
554 data_frame = data_frame[criterion]
/external/mesa3d/src/egl/main/
H A Deglconfig.c142 EGLint criterion; member in struct:__anon14782
367 if (_eglValidationTable[i].criterion == ATTRIB_CRITERION_SPECIAL)
443 if (_eglValidationTable[i].criterion == ATTRIB_CRITERION_IGNORE)
452 switch (_eglValidationTable[i].criterion) {
/external/parameter-framework/upstream/tools/clientSimulator/
H A DpfClientSimulator.py30 from clientsimulator.criterion.CriterionClassFactory import CriterionClassFactory
163 # Parsing criterion file and classes generation
/external/guice/extensions/persist/lib/
H A Dhibernate3.jar ... java.lang.Object implements org.hibernate.criterion.CriteriaSpecification { public abstract java.lang.String getAlias ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 2204 milliseconds

12