/cts/suite/audio_quality/lib/src/task/ |
D | TaskCase.cpp | 138 bool TaskCase::registerBuffer(const android::String8& orig, android::sp<Buffer>& buffer) in registerBuffer() argument 141 if (!translateVarName(orig, translated)) { in registerBuffer() 147 bool TaskCase::updateBuffer(const android::String8& orig, android::sp<Buffer>& buffer) in updateBuffer() argument 150 if (!translateVarName(orig, translated)) { in updateBuffer() 156 android::sp<Buffer> TaskCase::findBuffer(const android::String8& orig) in findBuffer() argument 160 if (!translateVarName(orig, translated)) { in findBuffer() 177 bool TaskCase::registerValue(const android::String8& orig, Value& val) in registerValue() argument 180 if (!translateVarName(orig, translated)) { in registerValue() 187 bool TaskCase::updateValue(const android::String8& orig, Value& val) in updateValue() argument 190 if (!translateVarName(orig, translated)) { in updateValue() [all …]
|
/cts/tools/signature-tools/src/signature/ |
D | Main.java | 126 private static String[] without(String[] orig, int n) { in without() argument 127 int len = orig.length - 1; in without() 129 System.arraycopy(orig, 0, newa, 0, n); in without() 130 System.arraycopy(orig, n + 1, newa, n, len - n); in without()
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | RemoteViewsActivityTest.java | 48 RemoteViews orig = new RemoteViews(PACKAGE_NAME, R.layout.remote_view_test_good); in testGood() local 50 orig.writeToParcel(p, 0); in testGood() 74 RemoteViews orig = new RemoteViews(PACKAGE_NAME, R.layout.remote_view_test_bad_1); in testDerivedClass() local 76 orig.writeToParcel(p, 0); in testDerivedClass() 103 RemoteViews orig = new RemoteViews(PACKAGE_NAME, R.layout.remote_view_test_bad_2); in testWebView() local 105 orig.writeToParcel(p, 0); in testWebView()
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
D | PackageItemInfoTest.java | 107 public MockPackageItemInfo(PackageItemInfo orig) { in MockPackageItemInfo() argument 108 super(orig); in MockPackageItemInfo()
|
D | ComponentInfoTest.java | 247 public MyComponentInfo(ComponentInfo orig) { in MyComponentInfo() argument 248 super(orig); in MyComponentInfo()
|
/cts/tests/tests/app/src/android/app/cts/ |
D | InstrumentationTest.java | 174 MotionEvent orig = MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, in testSendTrackballEventSync() local 176 mInstrumentation.sendTrackballEventSync(orig); in testSendTrackballEventSync() 180 assertEquals(orig.getMetaState(), motionEvent.getMetaState()); in testSendTrackballEventSync() 181 assertEquals(orig.getEventTime(), motionEvent.getEventTime()); in testSendTrackballEventSync() 182 assertEquals(orig.getDownTime(), motionEvent.getDownTime()); in testSendTrackballEventSync() 322 MotionEvent orig = MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, in testSendPointerSync() local 324 mInstrumentation.sendPointerSync(orig); in testSendPointerSync()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | AdaptivePlaybackTest.java | 1225 public static MediaFormat removeCSD(MediaFormat orig) { 1227 orig.getString(orig.KEY_MIME), 1228 orig.getInteger(orig.KEY_WIDTH), orig.getInteger(orig.KEY_HEIGHT)); 1230 orig.KEY_FRAME_RATE, orig.KEY_MAX_WIDTH, orig.KEY_MAX_HEIGHT, 1231 orig.KEY_MAX_INPUT_SIZE 1233 if (orig.containsKey(k)) { 1235 copy.setInteger(k, orig.getInteger(k)); 1238 copy.setFloat(k, orig.getFloat(k));
|
/cts/suite/audio_quality/lib/include/task/ |
D | TaskCase.h | 124 bool translateVarName(const android::String8& orig, android::String8& translated);
|
/cts/suite/cts/deviceTests/browserbench/assets/octane/js/ |
D | jquery.js | 3505 }, function( orig, fix ) { argument 3506 jQuery.event.special[ orig ] = { 3629 jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { argument 3640 document.addEventListener( orig, handler, true ); 3645 document.removeEventListener( orig, handler, true ); 8605 options.orig = options.orig || {}; 8667 this.options.orig[ this.prop ] = dataShow || jQuery.style( this.elem, this.prop ); 8686 …this.options.orig[ this.prop ] = jQuery._data( this.elem, "fxshow" + this.prop ) || jQuery.style( … 8731 jQuery.style( elem, p, options.orig[ p ] ); 9215 var orig = jQuery.css( elem, type ), [all …]
|