/cts/apps/CameraITS/tests/scene1/ |
test_latching.py | 19 import its.target namespace 39 e, s = its.target.get_target_exposure_combos(cam)["midExposureTime"]
|
test_linearity.py | 19 import its.target namespace 31 target. Attempts to invert all the ISP processing to get back to 53 e,s = its.target.get_target_exposure_combos(cam)["midSensitivity"]
|
test_param_color_correction.py | 19 import its.target namespace 44 e, s = its.target.get_target_exposure_combos(cam)["midSensitivity"]
|
test_param_exposure_time.py | 19 import its.target namespace 40 e,s = its.target.get_target_exposure_combos(cam)["midExposureTime"]
|
test_param_noise_reduction.py | 19 import its.target namespace 55 e, s = its.target.get_target_exposure_combos(cam)["minSensitivity"] 67 e, s = its.target.get_target_exposure_combos(cam)["maxSensitivity"]
|
test_param_sensitivity.py | 19 import its.target namespace 42 expt,_ = its.target.get_target_exposure_combos(cam)["midSensitivity"]
|
test_post_raw_sensitivity_boost.py | 19 import its.target namespace 66 its.target.get_target_exposure_combos(cam)["midSensitivity"]
|
test_reprocess_noise_reduction.py | 19 import its.target namespace 68 e, s = its.target.get_target_exposure_combos(cam)["minSensitivity"] 84 e, s = its.target.get_target_exposure_combos(cam)["maxSensitivity"]
|
/cts/apps/CameraITS/tests/scene3/ |
test_edge_enhancement.py | 19 import its.target namespace
|
test_reprocess_edge_enhancement.py | 19 import its.target namespace
|
/cts/apps/CameraITS/tests/ |
tutorial.py | 28 import its.target namespace 93 # target scene. If it fails, the script will end. The logcat messages
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
ExtractedTextRequestTest.java | 38 ExtractedTextRequest target = ExtractedTextRequest.CREATOR.createFromParcel(p); local 40 assertEquals(request.flags, target.flags); 42 assertEquals(request.hintMaxLines, target.hintMaxLines); 43 assertEquals(request.token, target.token);
|
/development/ndk/platforms/android-21/include/linux/netfilter_arp/ |
arpt_mangle.h | 37 int target; member in struct:arpt_mangle
|
/development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/ |
ContentCategoryActivity.java | 47 Intent target = new Intent(this, ContentViewActivity.class); local 48 startActivity(target);
|
ViewFromOtherTaskActivity.java | 47 Intent target = new Intent(this, OutsideTaskActivity.class) local 50 startActivity(target);
|
/external/android-clat/ |
getaddr.c | 32 struct target { struct 42 * data - (struct target) info for which address we're looking for 48 struct target *targ_p = (struct target *)data; 86 * arg - (struct target) info for which address we're looking for 102 struct target targ;
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
Transition.java | 34 * transitions) and has a label/target pair. I have abstracted the notion 38 /** What label must be consumed to transition to target */ 41 /** The target of this transition */ 42 public State target; field in class:Transition 44 public Transition(Label label, State target) { 46 this.target = target; 49 public Transition(int label, State target) { 51 this.target = target; [all...] |
/external/autotest/client/cros/cellular/ |
scpi_shell | 15 [target] = sys.argv[1:] 19 target = '172.22.50.244' variable 23 driver = prologix_scpi_driver.PrologixScpiDriver(hostname=target,
|
/external/deqp/modules/gles3/functional/ |
es3fTextureStateQueryTests.cpp | 77 glw::GLenum target; member in struct:deqp::gles3::Functional::__anon10398 117 textureTargets[targetNdx].target)); 121 if (!isLegalTesterForTarget(textureTargets[targetNdx].target, states[stateNdx].tester)) 129 textureTargets[targetNdx].target,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/ |
buildAll.bat | 20 REM target used if not default (to allow run just a portion of buildAll)
21 set target=
variable 40 if x%1==x-target set target=%2 && shift && shift && goto processcmdlineargs
variable 48 %vm% -cp ..\org.eclipse.releng.basebuilder\startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner -f buildAll.xml %target% %bootclasspath% -DmapVersionTag=%mapVersionTag% -DbuildType=%buildType% %buildID% %ftpUser% %ftpPassword%
52 echo "usage: buildAll [-mapVersionTag HEAD|<branch name>] [-vm <url to java executable to run build>] [-bc <bootclasspath>] [-target <buildall target to execute>] [-buildID <buildID, e.g. 2.1.2>] [-ftp <userid> <password>] I|M"
|
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
BaseTarget.java | 1 package com.bumptech.glide.request.target; 8 * A base {@link Target} for loading {@link com.bumptech.glide.load.engine.Resource}s that provides basic or empty 12 * For maximum efficiency, clear this target when you have finished using or displaying the 14 * {@link com.bumptech.glide.Glide#clear(Target)}. 19 * {@link com.bumptech.glide.request.target.ViewTarget} or {@link com.bumptech.glide.request.target.ImageViewTarget} 23 * @param <Z> The type of resource that will be received by this target. 25 public abstract class BaseTarget<Z> implements Target<Z> {
|
ImageViewTarget.java | 1 package com.bumptech.glide.request.target; 9 * A base {@link com.bumptech.glide.request.target.Target} for displaying resources in 12 * @param <Z> The type of resource that this target will display in the wrapped {@link android.widget.ImageView}.
|
PreloadTarget.java | 1 package com.bumptech.glide.request.target; 7 * A one time use {@link com.bumptech.glide.request.target.Target} class that loads a resource into memory and then
|
SimpleTarget.java | 1 package com.bumptech.glide.request.target; 4 * A simple {@link com.bumptech.glide.request.target.Target} base class with default (usually noop) implementations 24 * @param <Z> The type of resource that this target will receive. 31 * Constructor for the target that assumes you will have called 32 * {@link com.bumptech.glide.GenericRequestBuilder#override(int, int)} on the request builder this target is given 36 * Requests that load into this target will throw an {@link java.lang.IllegalArgumentException} if 45 * Constructor for the target that takes the desired dimensions of the decoded and/or transformed resource.
|
Target.java | 1 package com.bumptech.glide.request.target; 23 * null model object. onLoadCleared similarly may never be called if the target is never cleared. See the docs for 27 * @param <R> The type of resource the target can display. 29 public interface Target<R> extends LifecycleListener { 77 * A method to retrieve the size of this target. 79 * @param cb The callback that must be called when the size of the target has been determined 84 * Sets the current request for this target to retain, should not be called outside of Glide. 89 * Retrieves the current request for this target, should not be called outside of Glide.
|