Searched refs:currentValue (Results 1 - 25 of 82) sorted by relevance

1234

/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
H A DExclusiveCriterion.py46 def currentValue(self): member in class:ExclusiveCriterion
49 @currentValue.setter
50 def currentValue(self, currentValue): member in class:ExclusiveCriterion
51 if currentValue in self._allowedValues or currentValue == self.noValue:
52 self.__currentValue = currentValue
56 currentValue, self.__class__.__name__))
H A DInclusiveCriterion.py46 def currentValue(self): member in class:InclusiveCriterion
49 @currentValue.setter
50 def currentValue(self, stringNewVal): member in class:InclusiveCriterion
75 for currentValue in valueList:
76 if currentValue in self._allowedValues \
77 and currentValue != self.noValue:
78 self.__currentValues.add(currentValue)
82 currentValue, self.__class__.__name__))
84 def removeValue(self, currentValue):
85 if currentValue i
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DFieldWithLocationDebuggee.java37 int currentValue = testIntField; // field access
38 System.out.println("testIntField = " + currentValue);
39 testIntField = currentValue + 1; // field modification
44 int currentValue = testIntField; // field access
45 System.out.println("testIntField = " + currentValue);
46 testIntField = currentValue + 1; // field modification
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTrieIterator.java204 int currentValue = m_nextValue_;
208 if (!checkBlockDetail(currentValue)) {
210 currentValue);
232 if (!checkBlock(currentValue)) {
234 currentValue);
262 int currentValue = m_nextValue_;
270 if (!checkNullNextTrailIndex() && !checkBlockDetail(currentValue)) {
272 currentValue);
279 if (!checkTrailBlock(currentValue)) {
281 currentValue);
363 checkBlockDetail(int currentValue) argument
389 checkBlock(int currentValue) argument
428 checkTrailBlock(int currentValue) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrieIterator.java203 int currentValue = m_nextValue_;
207 if (!checkBlockDetail(currentValue)) {
209 currentValue);
231 if (!checkBlock(currentValue)) {
233 currentValue);
261 int currentValue = m_nextValue_;
269 if (!checkNullNextTrailIndex() && !checkBlockDetail(currentValue)) {
271 currentValue);
278 if (!checkTrailBlock(currentValue)) {
280 currentValue);
362 checkBlockDetail(int currentValue) argument
388 checkBlock(int currentValue) argument
427 checkTrailBlock(int currentValue) argument
[all...]
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/
H A DTestVectorFactory.py67 newCriterion.currentValue = rawCriterions[
76 newCriterion.currentValue = newCriterion.noValue
H A DTestLauncher.py149 criterionValue = [criterion.currentValue]
151 criterionValue = criterion.currentValue
/external/webrtc/webrtc/modules/video_capture/
H A Ddevice_info_impl.cc300 const DelayValue& currentValue = delayValues[device].delayValues[delayIndex]; local
302 const int32_t diffWidth = currentValue.width - width;
303 const int32_t diffHeight = currentValue.height - height;
323 bestWidth = currentValue.width;
324 bestHeight = currentValue.height;
325 bestDelay = currentValue.delay;
331 bestWidth = currentValue.width;
332 bestHeight = currentValue.height;
333 bestDelay = currentValue.delay;
/external/jsoncpp/src/lib_json/
H A Djson_reader.cpp165 currentValue().setComment(commentsBefore_, commentBefore);
172 currentValue().setOffsetLimit(current_ - begin_);
176 currentValue().setOffsetLimit(current_ - begin_);
185 currentValue() = true;
186 currentValue().setOffsetStart(token.start_ - begin_);
187 currentValue().setOffsetLimit(token.end_ - begin_);
190 currentValue() = false;
191 currentValue().setOffsetStart(token.start_ - begin_);
192 currentValue().setOffsetLimit(token.end_ - begin_);
195 currentValue()
752 Value& Reader::currentValue() { return *(nodes_.top()); } function in class:Json::Reader
[all...]
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DGenericCfg.java113 final String currentValue = genericSettings.getProperty (name);
114 if ((currentValue != null) && ! value.equals (currentValue))
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/
H A DUserInteractor.py129 criterion.currentValue = value
144 if not x in criterion.currentValue
155 for possibleValue in criterion.currentValue:
/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
H A DPhonePrefixMap.java196 int currentValue = phonePrefixMapStorage.getPrefix(current);
197 if (currentValue == value) {
199 } else if (currentValue > value) {
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp360 currentValue().setComment(commentsBefore_, commentBefore);
367 currentValue().setOffsetLimit(current_ - begin_);
371 currentValue().setOffsetLimit(current_ - begin_);
382 currentValue().swapPayload(v);
383 currentValue().setOffsetStart(token.start_ - begin_);
384 currentValue().setOffsetLimit(token.end_ - begin_);
390 currentValue().swapPayload(v);
391 currentValue().setOffsetStart(token.start_ - begin_);
392 currentValue().setOffsetLimit(token.end_ - begin_);
398 currentValue()
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DExpressionEvaluator.java62 private Value currentValue; field in class:ExpressionEvaluator
82 assert currentValue == null;
85 Value result = currentValue;
86 currentValue = null;
245 currentValue = value;
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DLocalCache.java162 V currentValue = get(key);
163 if (currentValue != null) {
164 return currentValue;
191 V currentValue = get(key);
192 if (currentValue != null) {
193 alertListenerIfPresent(key, currentValue, RemovalCause.REPLACED);
/external/guava/guava/src/com/google/common/cache/
H A DStriped64.java168 * @param currentValue the current value (of either base or a cell)
172 abstract long fn(long currentValue, long newValue); argument
/external/jsoncpp/include/json/
H A Dreader.h222 Value& currentValue();
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerSwitch.cpp250 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue(); local
256 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DFingerPrintGraph.java231 double currentValue = currentBuildResults.getValue();
278 if (baselineValue < currentValue) {
289 double currentGraphValue = kind == TIME_LOG ? Math.log(currentValue) : currentValue;
296 String tooltip = "Time for current build "+currentBuildResults.getName()+": "+Util.timeString((long)currentValue);
316 tooltip.append(Util.timeString((long)currentValue));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.common_3.6.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.equinox.common_3.7.0.v20150402-1709.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp370 int64_t currentValue = I->High->getSExtValue(); local
376 assert(nextValue > currentValue && "Cases should be strictly ascending");
377 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DConfigResults.java507 double currentValue = this.current.getValue();
508 this.delta = (currentValue - baselineValue) / baselineValue;
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DCalendar.java1571 int currentValue;
1577 currentValue = STAMP_MAX;
1581 if (stamp[i] > nextStamp && stamp[i] < currentValue) {
1582 currentValue = stamp[i];
/external/icu/icu4c/source/i18n/
H A Dcalendar.cpp3900 int32_t currentValue; local
3906 currentValue = STAMP_MAX;
3909 if (fStamp[i] > fNextStamp && fStamp[i] < currentValue) {
3910 currentValue = fStamp[i];

Completed in 3126 milliseconds

1234