/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
ScriptYuvMeans2dTo1d.java | 41 private static AllocationInfo createOutputInfo(AllocationInfo inputInfo) { 42 checkNotNull("inputInfo", inputInfo); 44 return AllocationInfo.newInstance(inputInfo.getElement(), 45 new Size(inputInfo.getSize().getHeight(), /*height*/1)); 48 public ScriptYuvMeans2dTo1d(AllocationInfo inputInfo) { 49 super(inputInfo, 50 createOutputInfo(inputInfo), 54 if (!inputInfo.isElementEqualTo(ElementInfo.YUV) && 55 !inputInfo.isElementEqualTo(ElementInfo.U8_3)) [all...] |
ScriptYuvMeans1d.java | 38 private static AllocationInfo createOutputInfo(AllocationInfo inputInfo) { 39 checkNotNull("inputInfo", inputInfo); 44 public ScriptYuvMeans1d(AllocationInfo inputInfo) { 45 super(inputInfo, 46 createOutputInfo(inputInfo), 50 if (!inputInfo.isElementEqualTo(ElementInfo.U8_3)) { 52 + inputInfo.getElement());
|
ScriptYuvCrop.java | 53 private static AllocationInfo createOutputInfo(AllocationInfo inputInfo, 55 checkNotNull("inputInfo", inputInfo); 62 Size inputSize = inputInfo.getSize(); 77 public ScriptYuvCrop(AllocationInfo inputInfo, 79 super(inputInfo, 80 createOutputInfo(inputInfo, parameterMap), 84 if (!inputInfo.isElementEqualTo(ElementInfo.YUV)) { 86 + inputInfo.getElement());
|
ScriptYuvToRgb.java | 40 public ScriptYuvToRgb(AllocationInfo inputInfo) { 41 super(inputInfo, 42 createOutputInfo(inputInfo), 47 if (!inputInfo.isElementEqualTo(ElementInfo.YUV)) { 49 + inputInfo.getElement());
|
ScriptGraph.java | 441 AllocationInfo inputInfo = AllocationInfo.newInstance(mSize, mFormat, mUsage); 446 mInputBlocker = inputInfo.createBlockingInputAllocation(); 450 inputAllocation = inputInfo.createAllocation(); 465 Script<?> script = instantiateScript(scriptClass, inputInfo, parameters); 469 inputInfo = script.getOutputInfo(); 492 inputInfo = inputScript.getInputInfo(); 493 inputAllocation = inputInfo.createAllocation(); 525 * <p>The {@link Script scriptClass} should have a {@code Script(AllocationInfo inputInfo)} 529 * {@code Script(AllocationInfo inputInfo, ParameterMap<T> parameterMap)} constructor.</p> 532 Class<T> scriptClass, AllocationInfo inputInfo, ParameterMap<T> parameterMap) [all...] |
Script.java | 38 * <li>{@code ScriptSubclass(AllocationInfo inputInfo)} 40 * <li>{@code ScriptSubclass(AllocationInfo inputInfo, ParameterMap<T> parameterMap))} 259 protected Script(AllocationInfo inputInfo, AllocationInfo outputInfo, T rsScript) { 260 checkNotNull("inputInfo", inputInfo); 264 mInputInfo = inputInfo; 269 Log.v(TAG, String.format("%s - inputInfo = %s, outputInfo = %s, rsScript = %s", 270 getName(), inputInfo, outputInfo, rsScript));
|
/frameworks/base/media/java/android/media/tv/ |
ITvInputServiceCallback.aidl | 27 void addHardwareInput(in int deviceId, in TvInputInfo inputInfo); 28 void addHdmiInput(in int id, in TvInputInfo inputInfo);
|
TvInputService.java | [all...] |
ITvInputManager.aidl | 44 void updateTvInputInfo(in TvInputInfo inputInfo, int userId);
|
TvInputManager.java | 777 * @param inputInfo The <code>TvInputInfo</code> object that contains new information. 779 public void onTvInputInfoUpdated(TvInputInfo inputInfo) { [all...] |
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/ |
InputsFragment.java | 193 public void refresh(TvInputInfo inputInfo) { 194 setKey(makeInputPrefKey(inputInfo)); 196 setTitle(inputInfo.loadLabel(getContext())); 199 if (mHiddenIds.contains(inputInfo.getId())) { 202 customLabel = mCustomLabels.get(inputInfo.getId()); 204 customLabel = inputInfo.loadLabel(getContext()).toString(); 209 InputOptionsFragment.prepareArgs(getExtras(), inputInfo); 213 public static String makeInputPrefKey(TvInputInfo inputInfo) { 214 return "InputPref:" + inputInfo.getId();
|
InputOptionsFragment.java | 56 public static void prepareArgs(@NonNull Bundle args, TvInputInfo inputInfo) { 57 args.putParcelable(ARG_INPUT, inputInfo);
|
/packages/apps/TV/src/com/android/tv/util/ |
TvInputManagerHelper.java | 190 public boolean isPartnerInput(TvInputInfo inputInfo) { 191 return isSystemInput(inputInfo) && !isBundledInput(inputInfo); 197 public boolean isSystemInput(TvInputInfo inputInfo) { 198 return inputInfo != null 199 && (inputInfo.getServiceInfo().applicationInfo.flags 206 public boolean isBundledInput(TvInputInfo inputInfo) { 207 return inputInfo != null 209 inputInfo.getServiceInfo().applicationInfo.packageName); 272 public int getInputState(TvInputInfo inputInfo) { [all...] |
/frameworks/av/media/libstagefright/filters/ |
MediaFilter.cpp | 404 BufferInfo *inputInfo = mAvailableInputBuffers[0]; 410 err = mFilter->processBuffers(inputInfo->mData, outputInfo->mData); 416 CHECK(inputInfo->mData->meta()->findInt64("timeUs", &timeUs)); 420 if (inputInfo->mData->meta()->findInt32("eos", &eos) && eos != 0) { 429 inputInfo->mBufferID, inputInfo->mData->size(), 433 delete inputInfo; 435 postFillThisBuffer(inputInfo); 770 BufferInfo *inputInfo = new BufferInfo; 771 inputInfo->mData = new ABuffer(buf->getWidth() * buf->getHeight() * 4) [all...] |
/packages/apps/TV/src/com/android/tv/menu/ |
ChannelsRowAdapter.java | 187 TvInputInfo inputInfo = inputManager.getTvInputInfo(currentChannel.getInputId()); 188 if ((inputInfo.canRecord() && inputInfo.getTunerCount() > 1)) {
|
/packages/apps/TV/src/com/android/tv/ui/ |
TunableTvView.java | 509 TvInputInfo inputInfo = mInputManagerHelper.getTvInputInfo(inputId); 510 if (inputInfo == null) { 519 if (!inputInfo.equals(mInputInfo)) { 520 mInputInfo = inputInfo; 568 TvInputInfo inputInfo = mInputManagerHelper.getTvInputInfo(channel.getInputId()); 569 if (inputInfo == null) { 586 if (!inputInfo.equals(mInputInfo)) { 587 mInputInfo = inputInfo; [all...] |
/frameworks/base/services/core/java/com/android/server/tv/ |
TvInputManagerService.java | [all...] |
/packages/apps/TV/src/com/android/tv/recommendation/ |
NotificationService.java | 370 TvInputInfo inputInfo = mTvInputManagerHelper.getTvInputInfo(inputId); 371 if (inputInfo == null) { 374 final String inputDisplayName = inputInfo.loadLabel(this).toString();
|
/prebuilts/sdk/24/ |
android.jar | |