/external/clang/test/ARCMT/ |
D | autoreleases.m.result | 33 -(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;
|
D | autoreleases.m | 33 -(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/ |
D | cvfloodfill.cpp | 103 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/ |
D | DurationPicker.java | 60 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/ |
D | LocaleObjectCache.java | 39 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/ |
D | LocaleObjectCache.java | 35 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/ |
D | LocaleObjectCache.java | 35 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/ |
D | floodfill.cpp | 131 _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/ |
D | utility.cc | 166 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()
|
D | utility.h | 94 void Update(const double newVal);
|
/external/opencv/cvaux/src/ |
D | cvsegment.cpp | 87 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/ |
D | ffilldemo.cpp | 52 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/ |
D | Registry.cpp | 211 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/ |
D | calcBackProject_Demo2.cpp | 63 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/ |
D | tick.js | 143 testing.setTicking = function(newVal) { ticking = newVal; }; argument
|
/external/v8/test/mjsunit/harmony/ |
D | atomics.js | 440 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/ |
D | tmutfmt.cpp | 718 …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/ |
D | stereosgbm.cpp | 977 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/ |
D | SkylineInplaceLU.h | 314 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/ |
D | SerializerBase.java | 1668 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/ |
D | CallSite.h | 126 void setArgument(unsigned ArgNo, Value* newVal) { in setArgument() argument 129 getInstruction()->setOperand(ArgNo, newVal); in setArgument()
|
/external/deqp/modules/gles2/functional/ |
D | es2fDepthStencilClearTests.cpp | 477 …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/ |
D | es3fDepthStencilClearTests.cpp | 480 …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/ |
D | imgproc+Imgproc.java | 2013 …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/ |
D | fgd.cu | 739 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()
|