Home
last modified time | relevance | path

Searched refs:criterion (Results 1 – 25 of 48) sorted by relevance

12

/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/
DUserInteractor.py29 from clientsimulator.criterion.InclusiveCriterion import InclusiveCriterion
128 def __setCriterion(self, criterion, value): argument
129 criterion.currentValue = value
131 def __removeCriterionValue(self, criterion, value): argument
132 criterion.removeValue(value)
134 def __editCriterion(self, criterion): argument
143 for possibleValue in [x for x in criterion.allowedValues()
144 if not x in criterion.currentValue
145 and not x == criterion.noValue]:
150 criterion,
[all …]
/external/parameter-framework/upstream/bindings/c/
DParameterFramework.cpp182 const PfwCriterion &criterion = criteriaArray[criterionIndex]; in createCriteria() local
183 if (criterion.name == nullptr) { in createCriteria()
186 if (criterion.values == nullptr) { in createCriteria()
190 if (criteria.find(criterion.name) != criteria.end()) { in createCriteria()
191 return status.failure("Criterion \"" + string(criterion.name) + "\" already exist"); in createCriteria()
196 pfw->createSelectionCriterionType(criterion.inclusive); in createCriteria()
199 for (size_t valueIndex = 0; criterion.values[valueIndex] != nullptr; ++valueIndex) { in createCriteria()
201 if (criterion.inclusive) { in createCriteria()
205 string(criterion.name)); in createCriteria()
211 const char *valueName = criterion.values[valueIndex]; in createCriteria()
[all …]
/external/parameter-framework/upstream/doc/requirements/
DAPIs.md21 There is no requirement to retreive a criterion by it's name.
39 Deffered application requirement; see [req-multiple-criterion-change-atomicity]
154 Implementation detail of the criterion requirement [req-selection-criterion].
158 Implementation of [req-criterion-changes].
162 Implementation of [req-criterion-changes].
166 Implementation of [req-criterion-changes].
170 Get how the criterion possible states were specified,
175 Pretty print criterion state [req-pretty-print]
181 Allow Introspection of a criterion; see [req-introspection].
184 Allow Introspection of a criterion; see [req-introspection].
[all …]
Drequirements.md72 (called criterion in the reference implementation).
540 "Scenario" are detected through arbitrary criterion provided by the PF host
586 The predicate **SHOULD** be a "selection criterion rule". See next chapter for a
590 ## Selection criterion
593 A selection criterion **MUST** have one, and only one, state at a given time.
596 A selection criterion **MUST** have a always known immutable domain of definition.
597 Ie All the possible state that a selection criterion can take **MUST** be known
606 The selection criterion possible states **MUST** be specifiable by directly a
608 <note>called **exclusive criterion**</note>
609 <note>An empty set is not allowed as the criterion could not have a state.</note>
[all …]
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/
DTestLauncher.py29 from clientsimulator.criterion.ExclusiveCriterion import ExclusiveCriterion
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/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
DCriterionClassFactory.py29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.ExclusiveCriterion import ExclusiveCriterion
31 from clientsimulator.criterion.InclusiveCriterion import InclusiveCriterion
DExclusiveCriterion.py29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.Criterion import InvalidCriterionException
DInclusiveCriterion.py29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.Criterion import InvalidCriterionException
/external/parameter-framework/upstream/tools/coverage/
Dcoverage.py397 "Includes" : lambda criterion, value: criterion.stateIncludes(value),
398 "Excludes" : lambda criterion, value: not criterion.stateIncludes(value),
399 "Is" : lambda criterion, value: criterion.stateIs(value),
400 "IsNot" : lambda criterion, value: not criterion.stateIs(value)
410 self.isApplicableOperation = lambda criterion: applicableOperationWithoutValue(criterion,
723 def __init__(self, criterion): argument
724 self.criterion = criterion
728 self.criterion)
798 lambda criterion: criterion.reset()
812 changeCriterionOperation = lambda criterion: criterion.changeState(newCriterionState) argument
DREADME.md10 - Criterion: detect easily which criterion state aren't used.
61 applyconfiguration or set criterion log should be found before the PFW start.
/external/parameter-framework/upstream/tools/xmlGenerator/
DdomainGenerator.py156 for criterion in all_criteria:
157 yield ["createSelectionCriterion", criterion['inclusive'],
158 criterion['name']] + criterion['values']
DREADME.md241 I.e. One criterion by line, starting by its kind, then its name, followed by a
/external/emma/core/java12/com/vladium/emma/report/
DIItemAttribute.java46 …boolean passes (IItem item, int criterion); // ideally, criteria should come from a double-dispatc… in passes() argument
99 public boolean passes (final IItem item, final int criterion) in passes() argument
164 public boolean passes (final IItem item, final int criterion) in passes() argument
169 return ((double) n) * IItem.PRECISION >= ((double) d) * m_scale * criterion; in passes()
DReportProperties.java412 final double criterion; in parseProperties() local
420 criterion = Double.parseDouble (metricSpec.substring (separator + 1)); in parseProperties()
421 if ((criterion < 0.0) || (criterion > 101.0)) continue; in parseProperties()
436 … _metrics.put (out [0], (int) Math.round (((criterion * IItem.PRECISION) / 100.0))); in parseProperties()
/external/parameter-framework/upstream/test/functional-tests/
Dplan.md313 - set a rule using an unknown criterion (or unknown criterion value)
320 - create a criterion
324 - set a criterion; get a criterion value
325 - exclusive criterion
326 - inclusive criterion
331 - duplicated criterion name (with the same type/with a different type)
332 - duplicated criterion value
333 - max supported number of criterion values
354 - unknown criterion/criterion values
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
DAbstractEstimator.java184 double criterion = 0; in getRMS() local
187 criterion += wm[i].getWeight() * residual * residual; in getRMS()
189 return FastMath.sqrt(criterion / wm.length); in getRMS()
/external/mesa3d/src/egl/main/
Deglconfig.c131 enum criterion { enum
144 enum criterion criterion; member
377 if (_eglValidationTable[i].criterion == ATTRIB_CRITERION_SPECIAL) in _eglValidateConfig()
453 if (_eglValidationTable[i].criterion == ATTRIB_CRITERION_IGNORE) in _eglMatchConfig()
462 switch (_eglValidationTable[i].criterion) { in _eglMatchConfig()
/external/tensorflow/tensorflow/python/debug/cli/
Dtensor_format.py44 criterion, argument
67 self.criterion = criterion
172 indices_list = list(np.argwhere(highlight_options.criterion(tensor)))
/external/flatbuffers/tests/rust_usage_test/
DCargo.toml20 # TODO(rw): look into moving to criterion.rs
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_KmeansPlusPlusInitialization.pbtxt37 summary: "Selects num_to_sample rows of input using the KMeans++ criterion."
/external/parameter-framework/upstream/tools/clientSimulator/
DREADME.md34 allows writing scenario, mixing criterion changes and arbitrary script
79 - The criterion file path (see
147 This scenario file sets a criterion, then runs a script, then sets three
DpfClientSimulator.py30 from clientsimulator.criterion.CriterionClassFactory import CriterionClassFactory
/external/ltp/testcases/open_posix_testsuite/Documentation/
DHOWTO_RunTests22 the pass/fail criterion is determine by whether or not the test compiles.
/external/llvm/docs/
DScudoHardenedAllocator.rst59 to keep it aside for a while. Once a criterion is met, the delayed freelist is
/external/python/cpython2/Doc/library/
Dimaplib.rst362 .. method:: IMAP4.search(charset, criterion[, ...])
366 protocol requires that at least one criterion be specified; an exception will be

12