/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()
|
D | NumberPicker.java | 41 void onChanged(NumberPicker picker, int oldVal, int newVal); in onChanged() argument
|
/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/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/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/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/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/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/v8/test/mjsunit/harmony/ |
D | atomics.js | 468 var val, newVal; 474 newVal = val + offset + 1; 475 newValWrapped = t.toRange(newVal); 476 assertEquals(val, Atomics.compareExchange(sta, 0, val, newVal), name); 480 newVal = val + offset - 1; 481 newValWrapped = t.toRange(newVal); 482 assertEquals(val, Atomics.compareExchange(sta, 0, val, newVal), name);
|
/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/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/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/gles31/functional/ |
D | es31fStencilTexturingTests.cpp | 191 const int newVal = (oldVal+1)&stencilMask; in renderTestPatternReference() local 193 dst.setPixStencil(newVal, x, y); in renderTestPatternReference()
|
/external/sqlite/dist/orig/ |
D | sqlite3.h | 3150 SQLITE_API int SQLITE_STDCALL sqlite3_limit(sqlite3*, int id, int newVal);
|
/external/sqlite/dist/ |
D | sqlite3.h | 3150 SQLITE_API int SQLITE_STDCALL sqlite3_limit(sqlite3*, int id, int newVal);
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrReferenceContext.cpp | 3015 const deUint32 newVal = (oldVal & ~writeMask) | (stencil & writeMask); in writeMaskedStencil() local 3016 access.raw().setPixel(tcu::UVec4(newVal, 0u, 0u, 0u), s, x, y); in writeMaskedStencil()
|
/external/valgrind/VEX/priv/ |
D | guest_x86_toIR.c | 751 static void casLE ( IRExpr* addr, IRExpr* expVal, IRExpr* newVal, in casLE() argument 756 IRType tyN = typeOfIRExpr(irsb->tyenv, newVal); in casLE() 763 NULL, mkexpr(expTmp), NULL, newVal ); in casLE()
|
D | guest_amd64_toIR.c | 1610 static void casLE ( IRExpr* addr, IRExpr* expVal, IRExpr* newVal, in casLE() argument 1615 IRType tyN = typeOfIRExpr(irsb->tyenv, newVal); in casLE() 1623 NULL, mkexpr(expTmp), NULL, newVal ); in casLE()
|