Home
last modified time | relevance | path

Searched refs:newVal (Results 1 – 25 of 55) sorted by relevance

123

/external/clang/test/ARCMT/
Dautoreleases.m.result33 -(void) setProp:(id) newVal {
34 _prop = newVal;
36 -(void) setProp2:(CFTypeRef) newVal {
37 _prop = (id)CFBridgingRelease(CFRetain(newVal));
43 -(void) setXpc_prop:(xpc_object_t) newVal {
44 _xpc_prop = newVal;
59 void test(A *prevVal, A *newVal) {
60 prevVal = newVal;
Dautoreleases.m33 -(void) setProp:(id) newVal {
35 _prop = [newVal retain];
37 -(void) setProp2:(CFTypeRef) newVal {
39 _prop = (id)CFRetain(newVal);
45 -(void) setXpc_prop:(xpc_object_t) newVal {
47 _xpc_prop = xpc_retain(newVal);
62 void test(A *prevVal, A *newVal) {
64 prevVal = [newVal retain];
/external/opencv/cv/src/
Dcvfloodfill.cpp103 uchar newVal[] = {0,0,0}; in icvFloodFill_8u_CnIR() local
113 newVal[0] = _newVal[0]; in icvFloodFill_8u_CnIR()
115 img[L] = newVal[0]; in icvFloodFill_8u_CnIR()
118 img[R] = newVal[0]; in icvFloodFill_8u_CnIR()
121 img[L] = newVal[0]; in icvFloodFill_8u_CnIR()
127 ICV_SET_C3( newVal, _newVal ); in icvFloodFill_8u_CnIR()
129 ICV_SET_C3( img + L*3, newVal ); in icvFloodFill_8u_CnIR()
132 ICV_SET_C3( img + L*3, newVal ); in icvFloodFill_8u_CnIR()
135 ICV_SET_C3( img + R*3, newVal ); in icvFloodFill_8u_CnIR()
180 img[i] = newVal[0]; in icvFloodFill_8u_CnIR()
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
DDurationPicker.java60 public void onChanged(NumberPicker spinner, int oldVal, int newVal) { in DurationPicker()
61 mCurrentDay = newVal; in DurationPicker()
70 public void onChanged(NumberPicker spinner, int oldVal, int newVal) { in DurationPicker()
71 mCurrentHour = newVal; in DurationPicker()
80 public void onChanged(NumberPicker spinner, int oldVal, int newVal) { in DurationPicker()
81 mCurrentMinute = newVal; in DurationPicker()
90 public void onChanged(NumberPicker spinner, int oldVal, int newVal) { in DurationPicker()
91 mCurrentSecond = newVal; in DurationPicker()
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
DLocaleObjectCache.java39 V newVal = createObject(key); in get() local
40 if (key == null || newVal == null) { in get()
45 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue); in get()
51 value = newVal; in get()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
DLocaleObjectCache.java35 V newVal = createObject(key); in get() local
36 if (key == null || newVal == null) { in get()
41 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue); in get()
47 value = newVal; in get()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DLocaleObjectCache.java35 V newVal = createObject(key); in get() local
36 if (key == null || newVal == null) { in get()
41 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue); in get()
47 value = newVal; in get()
/external/opencv3/modules/imgproc/src/
Dfloodfill.cpp131 _Tp newVal, ConnectedComp* region, int flags, in floodFill_CnIR() argument
145 img[L] = newVal; in floodFill_CnIR()
148 img[R] = newVal; in floodFill_CnIR()
151 img[L] = newVal; in floodFill_CnIR()
196 img[i] = newVal; in floodFill_CnIR()
198 img[j] = newVal; in floodFill_CnIR()
201 img[i] = newVal; in floodFill_CnIR()
282 Point seed, _Tp newVal, _MTp newMaskVal, in floodFillGrad_CnIR() argument
434 img[i] = newVal; in floodFillGrad_CnIR()
459 Point seedPoint, Scalar newVal, Rect* rect, in floodFill() argument
[all …]
/external/webrtc/webrtc/modules/audio_coding/test/
Dutility.cc166 void CircularBuffer::Update(const double newVal) { in Update() argument
172 _buff[_idx] = newVal; in Update()
189 _sum += (newVal - oldVal); in Update()
195 _sumSqr += (double) (newVal - oldVal) * (double) (newVal + oldVal); in Update()
Dutility.h94 void Update(const double newVal);
/external/opencv/cvaux/src/
Dcvsegment.cpp87 int* newVal, int d_lw, int d_up, in icvSegmFloodFill_Stage1() argument
191 newVal[0] = cvRound( sum[0] * inv_area ); in icvSegmFloodFill_Stage1()
192 newVal[1] = cvRound( sum[1] * inv_area ); in icvSegmFloodFill_Stage1()
193 newVal[2] = cvRound( sum[2] * inv_area ); in icvSegmFloodFill_Stage1()
208 CvSize /*roi*/, int* newVal, in icvSegmFloodFill_Stage2() argument
213 uchar uv[] = { (uchar)newVal[0], (uchar)newVal[1], (uchar)newVal[2] }; in icvSegmFloodFill_Stage2()
/external/opencv3/samples/cpp/
Dffilldemo.cpp52 Scalar newVal = isColor ? Scalar(b, g, r) : Scalar(r*0.299 + g*0.587 + b*0.114); in onMouse() local
59 area = floodFill(dst, mask, seed, newVal, &ccomp, Scalar(lo, lo, lo), in onMouse()
65 area = floodFill(dst, seed, newVal, &ccomp, Scalar(lo, lo, lo), in onMouse()
/external/lzma/CPP/Windows/
DRegistry.cpp211 UInt32 newVal; in GetValue_IfOk() local
212 LONG res = QueryValue(name, newVal); in GetValue_IfOk()
214 value = newVal; in GetValue_IfOk()
220 bool newVal; in GetValue_IfOk() local
221 LONG res = QueryValue(name, newVal); in GetValue_IfOk()
223 value = newVal; in GetValue_IfOk()
/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
DcalcBackProject_Demo2.cpp63 Scalar newVal = Scalar( 120, 120, 120 ); in pickPoint() local
69 floodFill( src, mask2, seed, newVal, 0, Scalar( lo, lo, lo ), Scalar( up, up, up), flags ); in pickPoint()
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
Dtick.js143 testing.setTicking = function(newVal) { ticking = newVal; }; argument
/external/v8/test/mjsunit/harmony/
Datomics.js440 var val, newVal;
446 newVal = val + offset + 1;
447 newValWrapped = t.toRange(newVal);
448 assertEquals(val, Atomics.compareExchange(sta, 0, val, newVal), name);
452 newVal = val + offset - 1;
453 newValWrapped = t.toRange(newVal);
454 assertEquals(val, Atomics.compareExchange(sta, 0, val, newVal), name);
/external/icu/icu4c/source/i18n/
Dtmutfmt.cpp718 …MessageFormat** newVal = (MessageFormat**)uprv_malloc(UTMUTFMT_FORMAT_STYLE_COUNT*sizeof(MessageFo… in copyHash() local
719 newVal[0] = (MessageFormat*)value[0]->clone(); in copyHash()
720 newVal[1] = (MessageFormat*)value[1]->clone(); in copyHash()
721 target->put(UnicodeString(*key), newVal, status); in copyHash()
723 delete newVal[0]; in copyHash()
724 delete newVal[1]; in copyHash()
725 uprv_free(newVal); in copyHash()
/external/opencv3/modules/calib3d/src/
Dstereosgbm.cpp977 void filterSpecklesImpl(cv::Mat& img, int newVal, int maxSpeckleSize, int maxDiff, cv::Mat& _buf) in filterSpecklesImpl() argument
1005 if( ds[j] != newVal ) // not a bad disparity in filterSpecklesImpl()
1010 ds[j] = (T)newVal; in filterSpecklesImpl()
1030 …if( p.y < height-1 && !lpp[+width] && dpp[+dstep] != newVal && std::abs(dp - dpp[+dstep]) <= maxDi… in filterSpecklesImpl()
1036 … if( p.y > 0 && !lpp[-width] && dpp[-dstep] != newVal && std::abs(dp - dpp[-dstep]) <= maxDiff ) in filterSpecklesImpl()
1042 … if( p.x < width-1 && !lpp[+1] && dpp[+1] != newVal && std::abs(dp - dpp[+1]) <= maxDiff ) in filterSpecklesImpl()
1048 … if( p.x > 0 && !lpp[-1] && dpp[-1] != newVal && std::abs(dp - dpp[-1]) <= maxDiff ) in filterSpecklesImpl()
1063 ds[j] = (T)newVal; in filterSpecklesImpl()
1083 int newVal = cvRound(_newval), maxDiff = cvRound(_maxDiff); in filterSpeckles() local
1101 … (Ipp8u)newVal, maxSpeckleSize, (Ipp8u)maxDiff, ippiNormL1, buffer); in filterSpeckles()
[all …]
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineInplaceLU.h314 Scalar newVal = x->coeff(row); in solve() local
320 newVal -= x->coeff(col++) * lIt.value(); in solve()
324 x->coeffRef(row) = newVal; in solve()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DSerializerBase.java1668 String newVal; in setProp() local
1670 newVal = oldVal + ' ' + val; in setProp()
1672 newVal = val; in setProp()
1673 m_OutputProps.put(name,newVal); in setProp()
/external/llvm/include/llvm/IR/
DCallSite.h126 void setArgument(unsigned ArgNo, Value* newVal) { in setArgument() argument
129 getInstruction()->setOperand(ArgNo, newVal); in setArgument()
/external/deqp/modules/gles2/functional/
Des2fDepthStencilClearTests.cpp477 …deUint32 newVal = ((oldVal & ~clear->stencilMask) | (clear->clearStencil & clear->stencilMask)) & … in renderReference() local
478 rowAccess.setPixStencil(newVal, x, 0); in renderReference()
/external/deqp/modules/gles3/functional/
Des3fDepthStencilClearTests.cpp480 …deUint32 newVal = ((oldVal & ~clear->stencilMask) | (clear->clearStencil & clear->stencilMask)) & … in renderReference() local
481 rowAccess.setPixStencil(newVal, x, 0); in renderReference()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java2013 …public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal, Rect rect, Scalar… in floodFill() argument
2016 …tiveObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], ne… in floodFill()
2022 public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal) in floodFill() argument
2025 …tiveObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], ne… in floodFill()
/external/opencv3/modules/cudalegacy/src/cuda/
Dfgd.cu739 int3 newVal = make_int3( in updateBackgroundModel() local
746 static_cast<uchar>(newVal.x), in updateBackgroundModel()
747 static_cast<uchar>(newVal.y), in updateBackgroundModel()
748 static_cast<uchar>(newVal.z) in updateBackgroundModel()

123