Searched refs:operation (Results 26 - 50 of 156) sorted by relevance

1234567

/frameworks/base/location/java/android/location/
H A DLocalListenerHelper.java107 private void executeOperation(ListenerOperation<TListener> operation, TListener listener) { argument
109 operation.execute(listener);
116 protected void foreach(final ListenerOperation<TListener> operation) { argument
123 executeOperation(operation, listener.getKey());
128 executeOperation(operation, listener.getKey());
/frameworks/base/tools/preload/
H A DWritePreloadedClassFile.java100 for (Operation operation : proc.operations) {
101 LoadedClass loadedClass = operation.loadedClass;
137 for (Operation operation : proc.operations) {
139 = Policy.isPreloadable(operation.loadedClass);
141 toPreload.add(operation.loadedClass);
H A DLoadedClass.java115 for (Operation operation : ops) {
116 if (operation.process.fromZygote()) {
117 names.add(operation.process.name);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintPreviewController.java148 Message operation = mHandler.obtainMessage(MyHandler.MSG_CLOSE);
149 mHandler.enqueueOperation(operation);
156 Message operation = mHandler.obtainMessage(MyHandler.MSG_OPEN);
157 mHandler.enqueueOperation(operation);
168 Message operation = mHandler.obtainMessage(MyHandler.MSG_UPDATE, args);
169 mHandler.enqueueOperation(operation);
173 operation = mHandler.obtainMessage(MyHandler.MSG_START_PRELOAD);
174 mHandler.enqueueOperation(operation);
188 Message operation = mHandler.obtainMessage(MyHandler.MSG_CLOSE);
189 mHandler.enqueueOperation(operation);
[all...]
/frameworks/ml/nn/driver/sample/
H A DSampleDriverFloatFast.cpp59 const Operation& operation = model.operations[i]; local
60 if (operation.inputs.size() > 0) {
61 const Operand& firstOperand = model.operands[operation.inputs[0]];
H A DSampleDriverFloatSlow.cpp59 const Operation& operation = model.operations[i]; local
60 if (operation.inputs.size() > 0) {
61 const Operand& firstOperand = model.operands[operation.inputs[0]];
H A DSampleDriverMinimal.cpp62 const Operation& operation = model.operations[i]; local
63 switch (operation.type) {
67 const Operand& firstOperand = model.operands[operation.inputs[0]];
H A DSampleDriverQuant.cpp59 const Operation& operation = model.operations[i]; local
60 if (operation.inputs.size() > 0) {
61 const Operand& firstOperand = model.operands[operation.inputs[0]];
/frameworks/base/cmds/appwidget/src/com/android/commands/appwidget/
H A DAppWidget.java70 String operation = mTokenizer.nextArg();
71 if (ARGUMENT_GRANT_BIND.equals(operation)) {
73 } else if (ARGUMENT_REVOKE_BIND.equals(operation)) {
76 throw new IllegalArgumentException("Unsupported operation: " + operation);
/frameworks/ml/nn/common/operations/
H A DEmbeddingLookup.h40 const android::hardware::neuralnetworks::V1_1::Operation &operation,
H A DHashtableLookup.h40 const android::hardware::neuralnetworks::V1_1::Operation &operation,
H A DSVDF.h48 SVDF(const android::hardware::neuralnetworks::V1_1::Operation &operation,
52 const hardware::neuralnetworks::V1_1::Operation &operation,
H A DLSTM.h50 LSTMCell(const android::hardware::neuralnetworks::V1_1::Operation &operation,
53 static bool Prepare(const android::hardware::neuralnetworks::V1_1::Operation &operation,
107 const android::hardware::neuralnetworks::V1_1::Operation &operation,
/frameworks/base/cmds/statsd/src/condition/
H A Dcondition_util.cpp42 const LogicalOperation& operation,
69 switch (operation) {
41 evaluateCombinationCondition(const std::vector<int>& children, const LogicalOperation& operation, const std::vector<ConditionState>& conditionCache) argument
/frameworks/base/media/java/android/media/
H A DPlayerProxy.java63 "No player to proxy for start operation, player already released?", e);
76 "No player to proxy for pause operation, player already released?", e);
89 "No player to proxy for stop operation, player already released?", e);
103 "No player to proxy for setVolume operation, player already released?", e);
117 "No player to proxy for setPan operation, player already released?", e);
131 "No player to proxy for setStartDelayMs operation, player already released?",
139 * @param operation
144 @NonNull VolumeShaper.Operation operation) {
146 mConf.getIPlayer().applyVolumeShaper(configuration, operation);
149 "No player to proxy for applyVolumeShaper operation,"
142 applyVolumeShaper( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
[all...]
/frameworks/ml/nn/common/include/
H A DUtils.h32 // The number of operation types (OperationCode) defined in NeuralNetworks.h.
41 // The number of operation types (OperationCode) defined in NeuralNetworksOEM.h.
98 // Returns the name of the operation type in ASCII.
171 bool compliantWithV1_0(const V1_0::Operation& operation);
172 bool compliantWithV1_0(const V1_1::Operation& operation);
173 bool compliantWithV1_1(const V1_0::Operation& operation);
174 bool compliantWithV1_1(const V1_1::Operation& operation);
191 V1_0::Operation convertToV1_0(const V1_0::Operation& operation);
192 V1_0::Operation convertToV1_0(const V1_1::Operation& operation);
193 V1_1::Operation convertToV1_1(const V1_0::Operation& operation);
[all...]
/frameworks/av/media/libaudioclient/include/media/
H A DTrackPlayerBase.h37 const media::VolumeShaper::Operation& operation);
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java137 // Build an operation to assert values match provider
156 // Build an operation to assert values match provider
439 private int operationGetType(ContentProviderOperation operation) argument
443 return field.getInt(operation);
446 private Uri operationGetUri(ContentProviderOperation operation) argument
450 return (Uri) field.get(operation);
453 private String operationGetSelection(ContentProviderOperation operation) argument
457 return (String) field.get(operation);
460 private String[] operationGetSelectionArgs(ContentProviderOperation operation) argument
464 return (String[]) field.get(operation);
467 operationGetValues(ContentProviderOperation operation) argument
474 operationGetExpectedCount(ContentProviderOperation operation) argument
481 operationGetValuesBackReferences(ContentProviderOperation operation) argument
488 operationGetSelectionArgsBackReferences( ContentProviderOperation operation) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java173 public static void checkGlError(String operation) { argument
176 throw new RuntimeException("GL Operation '" + operation + "' caused error "
188 private static void assertNonUiThread(String operation) { argument
190 throw new RuntimeException("Attempting to perform GL operation '" + operation
/frameworks/ml/nn/runtime/
H A DManager.cpp73 // Set the supported operation vectors to all false, so we won't use this driver.
82 // Set the supported operation vectors to all false, so we won't use this driver.
103 const Operation &operation = hidlModel.operations[operationIndex]; local
104 accumulator ^= static_cast<uint32_t>(operation.type);
119 accumulateOperands(operation.inputs);
120 accumulateOperands(operation.outputs);
/frameworks/av/media/libaudioclient/
H A DTrackPlayerBase.cpp110 const VolumeShaper::Operation& operation) {
113 sp<VolumeShaper::Operation> spOperation = new VolumeShaper::Operation(operation);
108 applyVolumeShaper( const VolumeShaper::Configuration& configuration, const VolumeShaper::Operation& operation) argument
H A DIAudioTrack.cpp153 const sp<VolumeShaper::Operation>& operation) {
165 status = operation.get() == nullptr
168 ?: operation->writeToParcel(&data);
262 sp<VolumeShaper::Operation> operation; local
272 operation = new VolumeShaper::Operation();
273 status = operation->readFromParcel(&data);
276 status = (status_t)applyVolumeShaper(configuration, operation);
151 applyVolumeShaper( const sp<VolumeShaper::Configuration>& configuration, const sp<VolumeShaper::Operation>& operation) argument
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaSmsCbProgramData.java78 /** Service category operation (add/delete/clear). */
97 public CdmaSmsCbProgramData(int operation, int category, int language, int maxMessages, argument
99 mOperation = operation;
134 * Returns the service category operation, e.g. {@link #OPERATION_ADD_CATEGORY}.
183 return "CdmaSmsCbProgramData{operation=" + mOperation + ", category=" + mCategory
/frameworks/native/services/surfaceflinger/tests/unittests/mock/system/window/
H A DMockNativeWindow.cpp46 int dispatch_perform(struct ANativeWindow* window, int operation, ...) { argument
48 return static_cast<NativeWindow*>(window)->perform(operation);
/frameworks/av/include/media/
H A DVolumeShaper.h43 // in addition, the native class contains implementation for actual operation.
334 /* VolumeShaper::Operation expresses an operation to perform on the
364 explicit Operation(const Operation &operation) argument
365 : Operation(operation.mFlags, operation.mReplaceId, operation.mXOffset) {
368 explicit Operation(const sp<Operation> &operation) argument
369 : Operation(*operation.get()) {
448 Flag mFlags; // operation to do
449 int32_t mReplaceId; // if >= 0 the id to remove in a replace operation
575 VolumeShaper( const sp<VolumeShaper::Configuration> &configuration, const sp<VolumeShaper::Operation> &operation) argument
[all...]

Completed in 814 milliseconds

1234567