Searched refs:operation (Results 76 - 100 of 156) sorted by relevance

1234567

/frameworks/native/include/ui/
H A DRegion.h153 const Region operation(const Rect& rhs, uint32_t op) const;
154 const Region operation(const Region& rhs, uint32_t op) const;
155 const Region operation(const Region& rhs, int dx, int dy, uint32_t op) const;
/frameworks/native/libs/ui/include/ui/
H A DRegion.h153 const Region operation(const Rect& rhs, uint32_t op) const;
154 const Region operation(const Region& rhs, uint32_t op) const;
155 const Region operation(const Region& rhs, int dx, int dy, uint32_t op) const;
/frameworks/native/libs/ui/include_vndk/ui/
H A DRegion.h153 const Region operation(const Rect& rhs, uint32_t op) const;
154 const Region operation(const Region& rhs, uint32_t op) const;
155 const Region operation(const Region& rhs, int dx, int dy, uint32_t op) const;
/frameworks/ml/nn/common/
H A DCpuExecutor.cpp206 // The model has serialized the operation in execution order.
207 for (const auto& operation : model.operations) {
208 int n = executeOperation(operation);
320 int CpuExecutor::executeOperation(const Operation& operation) { argument
321 // VLOG(CPUEXE) << "CpuExecutor::executeOperation(" << toString(operation) << ")";
322 const hidl_vec<uint32_t>& ins = operation.inputs;
323 const hidl_vec<uint32_t>& outs = operation.outputs;
331 auto allParametersPresent = [&operation, &ins, &outs, this](size_t requiredIns,
333 auto verify = [&operation, this](size_t requiredCount, const hidl_vec<uint32_t>& indexes,
337 LOG(ERROR) << getOperationName(operation
[all...]
H A DValidateHal.cpp112 // TENSOR_INT32 may be used with or without scale, depending on the operation.
223 static bool validOperationType(V1_0::OperationType operation) { argument
224 switch (operation) {
261 static bool validOperationType(V1_1::OperationType operation) { argument
262 switch (operation) {
312 // This vector keeps track of whether there's an operation that writes to
318 LOG(ERROR) << "Invalid operation type " << toString(op.type);
/frameworks/ml/nn/runtime/test/
H A DTestPartitioning.cpp52 // execute a particular operation from the graph. This determination
54 // topology, only on the properties of the operation in question.
58 // of operations. For each operation, the partitioning algorithm
60 // operation; if no device can do so, then the algorithm picks the
73 // four activation functions means eight available operation kinds.
76 // operation encodings 0..7.
94 // order, and adding each operation's input operands and output
96 // operation is added. (It does not add an input that has already
142 // We employ an operation numbering scheme:
148 // Look up the operation wit
155 const Operation& operation = getOperation(operationIndex); local
275 uint32_t operation = lookupOperation(model, i); variable
312 addOperation2To1(uint32_t operation, const uint32_t input0, const uint32_t input1, Dimensioned dimensionedOutput = Dimensioned::YES) argument
506 const Operation& operation = model->getOperation(i); local
[all...]
/frameworks/base/media/java/android/media/
H A DVolumeShaper.java73 * @param operation the {@code operation} to apply.
78 public void apply(@NonNull Operation operation) { argument
79 /* void */ applyPlayer(new VolumeShaper.Configuration(mId), operation);
92 * If the {@code operation} is {@link VolumeShaper.Operation#PLAY} then the
95 * If the {@code operation} is
100 * @param operation the {@code operation} to apply to the {@code VolumeShaper}
109 @NonNull Configuration configuration, @NonNull Operation operation, boolean join) {
112 new Operation.Builder(operation)
108 replace( @onNull Configuration configuration, @NonNull Operation operation, boolean join) argument
169 applyPlayer( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
1221 Builder(@onNull VolumeShaper.Operation operation) argument
[all...]
H A DPlayerBase.java310 * To be called by the subclass whenever an operation is potentially restricted.
383 * operation changes requested on it.
389 * @param operation a {@code VolumeShaper.Operation}.
395 @NonNull VolumeShaper.Operation operation);
495 @NonNull VolumeShaper.Operation operation) {
498 pb.playerApplyVolumeShaper(configuration, operation);
393 playerApplyVolumeShaper( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
493 applyVolumeShaper( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
/frameworks/av/media/libaaudio/src/core/
H A DAudioStream.h343 const ::android::media::VolumeShaper::Operation& operation __unused);
441 const ::android::media::VolumeShaper::Operation& operation) {
442 return mParent->applyVolumeShaper(configuration, operation);
439 applyVolumeShaper( const ::android::media::VolumeShaper::Configuration& configuration, const ::android::media::VolumeShaper::Operation& operation) argument
/frameworks/av/media/mtp/
H A DMtpServer.h152 MtpResponseCode doGetPartialObject(MtpOperationCode operation);
/frameworks/compile/libbcc/lib/
H A DFileBase.cpp37 int flock(int fd, int operation) { argument
148 // Determine the lock operation (2nd argument) to the flock().
/frameworks/base/core/java/android/view/autofill/
H A DIAutoFillManager.aidl60 void onPendingSaveUi(int operation, IBinder token);
/frameworks/av/media/libmediaplayer2/
H A DJAudioTrack.cpp260 const sp<media::VolumeShaper::Operation>& operation) {
263 jobject jOperationObj = createVolumeShaperOperationObj(operation);
596 const sp<media::VolumeShaper::Operation>& operation) {
607 jBuilderObj = env->CallObjectMethod(jBuilderCls, jSetXOffset, operation->getXOffset());
609 int32_t flags = operation->getFlags();
611 if (operation->getReplaceId() >= 0) {
615 jBuilderObj = env->CallObjectMethod(jBuilderCls, jReplace, operation->getReplaceId(), join);
258 applyVolumeShaper( const sp<media::VolumeShaper::Configuration>& configuration, const sp<media::VolumeShaper::Operation>& operation) argument
595 createVolumeShaperOperationObj( const sp<media::VolumeShaper::Operation>& operation) argument
/frameworks/base/core/java/android/content/
H A DContentProvider.java293 ContentProviderOperation operation = operations.get(i);
294 Uri uri = operation.getUri();
299 operation = new ContentProviderOperation(operation, true);
300 operations.set(i, operation);
302 if (operation.isReadOperation()) {
308 if (operation.isWriteOperation()) {
1031 * signal to ensure correct operation on older versions of the Android Framework in
1047 * @param cancellationSignal A signal to cancel the operation in progress, or {@code null} if none.
1048 * If the operation i
[all...]
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java1639 * the operation was successfull or {@code onError} if an error occurred.
2594 * data transfers, and warn the user or delay the operation until another
3246 * The operation is an Intent broadcast that goes to a broadcast receiver that
3250 * The operation Intent is delivered with two extras, a {@link Network} typed
3278 * @param operation Action to perform when the network is available (corresponds
3285 public void requestNetwork(NetworkRequest request, PendingIntent operation) { argument
3286 checkPendingIntentNotNull(operation);
3288 mService.pendingRequestForNetwork(request.networkCapabilities, operation);
3303 * @param operation A PendingIntent equal (as defined by {@link Intent#filterEquals}) to the
3308 public void releaseNetworkRequest(PendingIntent operation) { argument
3392 registerNetworkCallback(NetworkRequest request, PendingIntent operation) argument
3511 unregisterNetworkCallback(PendingIntent operation) argument
[all...]
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DAutoFillUI.java336 * Executes an operation in the pending save UI, if any.
338 public void onPendingSaveUi(int operation, @NonNull IBinder token) { argument
341 mSaveUi.onPendingUi(operation, token);
343 Slog.w(TAG, "onPendingSaveUi(" + operation + "): no save ui");
H A DSaveUi.java431 * @param operation how to update it.
433 * the operation will be ignored.
435 void onPendingUi(int operation, @NonNull IBinder token) { argument
437 Slog.w(TAG, "restore(" + operation + "): got token " + token + " instead of "
443 switch (operation) {
456 Slog.w(TAG, "restore(): invalid operation " + operation);
/frameworks/av/include/media/
H A DIMediaPlayer.h97 const sp<media::VolumeShaper::Operation>& operation) = 0;
/frameworks/av/media/libaudioclient/
H A DPlayerBase.cpp182 const VolumeShaper::Operation& operation __unused) {
/frameworks/av/media/libmedia/include/media/
H A DIMediaPlayer.h97 const sp<media::VolumeShaper::Operation>& operation) = 0;
/frameworks/base/cmds/statsd/src/condition/
H A DCombinationConditionTracker.cpp59 mLogicalOperation = combinationCondition.operation();
/frameworks/base/cmds/statsd/src/
H A Dstatsd_config.proto112 optional LogicalOperation operation = 1;
144 optional LogicalOperation operation = 1;
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java461 private void checkRange(final String operation, int start, int end) { argument
463 throw new IndexOutOfBoundsException(operation + " " +
471 throw new IndexOutOfBoundsException(operation + " " +
477 throw new IndexOutOfBoundsException(operation + " " +
/frameworks/base/cmds/statsd/src/matchers/
H A Dmatcher_util.cpp33 bool combinationMatch(const vector<int>& children, const LogicalOperation& operation, argument
36 switch (operation) {
/frameworks/base/services/core/java/com/android/server/
H A DSystemServiceManager.java313 private void warnIfTooLong(long duration, SystemService service, String operation) { argument
316 + operation);

Completed in 1276 milliseconds

1234567