Searched refs:function (Results 126 - 150 of 395) sorted by relevance

1234567891011>>

/frameworks/rs/script_api/
H A DGenerateStubsWhiteList.cpp189 * This function is recursive because compression is possible at each level of the definition.
193 * This function mangles correctly the types currently used by RenderScript. It does
194 * not currently mangle more complicated types like function pointers, namespaces,
323 /* Add the mangling for this permutation of the function. apiLevel and intSize is used
346 /* Add to the set the mangling of each function prototype that can be generated from this
354 // If the function is inlined, we won't generate an unresolved external for that.
389 /* Generate the white list file of the mangled function prototypes. This generated list is used
398 const Function* function = f.second; local
399 for (auto spec : function->getSpecifications()) {
440 * before the function definitio
509 const Function* function = f.second; local
[all...]
H A DGenerateTestFiles.cpp48 // Returns true if any permutation of the function have tests to b
49 static bool needTestFiles(const Function& function, unsigned int versionOfTestFiles) { argument
50 for (auto spec : function.getSpecifications()) {
58 /* One instance of this class is generated for each permutation of a function for which
81 /* Shortcuts to the return parameter and the first input parameter of the function
126 /* Generate the code that verify the results for a RenderScript function where a vector
134 // Generate the method header of the verify function.
171 // Write the script test function for this permutation.
889 * For example, if we have a function that takes three arguments, two for input
928 // Write the function heade
1063 finishJavaFile(GeneratedFile* file, const Function& function, const vector<string>& javaCheckMethods) argument
1109 writeTestFilesForFunction(const Function& function, const string& directory, unsigned int versionOfTestFiles) argument
[all...]
/frameworks/ml/nn/common/operations/
H A DHashtableLookupTest.cpp142 void SetHashtableValue(const std::function<float(uint32_t, uint32_t)>& function) { argument
145 Value_[i * features_ + j] = function(i, j);
/frameworks/support/car/src/main/java/androidx/car/widget/
H A DListItemAdapter.java43 import java.util.function.Function;
170 * Registers a function that returns {@link RecyclerView.ViewHolder}
173 * <p>The function will receive a view as {@link RecyclerView.ViewHolder#itemView}. This view
179 * @param function function to create ViewHolder for {@code viewType}.
182 Function<View, ListItem.ViewHolder> function) {
187 mViewHolderCreator.put(viewType, function);
181 registerListItemViewType(int viewType, @LayoutRes int layoutResId, Function<View, ListItem.ViewHolder> function) argument
H A DAlphaJumpBucketer.java24 import java.util.function.Predicate;
H A DListItem.java14 import java.util.function.Function;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationIconAreaController.java28 import java.util.function.Function;
191 * @param function A function to look up an icon view based on an entry
197 private void updateIconsForLayout(Function<NotificationData.Entry, StatusBarIconView> function, argument
210 toShow.add(function.apply(ent));
/frameworks/base/core/java/android/content/pm/
H A DPackageBackwardCompatibility.java31 import java.util.function.Supplier;
/frameworks/base/core/java/android/service/autofill/
H A DAutofillService.java18 import static com.android.internal.util.function.pooled.PooledLambda.obtainMessage;
/frameworks/base/core/java/com/android/internal/os/
H A DKernelUidCpuActiveTimeReader.java27 import java.util.function.Consumer;
129 * the difference to a processUid function.
131 * @param processUid the callback function to process the uid entry in the buffer.
/frameworks/base/core/jni/android/graphics/
H A DInterpolator.cpp34 #error Need to convert float array to SkScalar array before calling the following function.
H A DShader.cpp46 #error Need to convert float array to SkScalar array before calling the following function.
110 #error Need to convert float array to SkScalar array before calling the following function.
170 #error Need to convert float array to SkScalar array before calling the following function.
226 #error Need to convert float array to SkScalar array before calling the following function.
/frameworks/base/core/tests/coretests/src/com/android/internal/textservice/
H A DLazyIntToIntMapTest.java35 import java.util.function.IntUnaryOperator;
54 // Accessing to the same key does not evaluate the function again.
/frameworks/base/libs/hwui/
H A DDeferredLayerUpdater.h44 typedef std::function<Layer*(RenderState& renderState, uint32_t layerWidth,
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/view/
H A DRecentsTransition.java33 import java.util.function.Consumer;
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DCurrentUserTracker.java29 import java.util.function.Consumer;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationDozeHelper.java31 import java.util.function.Consumer;
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutDumpFiles.java34 import java.util.function.Consumer;
/frameworks/base/services/tests/servicestests/src/com/android/server/testutils/
H A DTestHandler.java30 import java.util.function.LongSupplier;
/frameworks/av/media/libaudiohal/2.0/
H A DStreamHalHidl.h191 using WriterCallback = std::function<void(const WriteStatus& writeStatus)>;
240 using ReaderCallback = std::function<void(const ReadStatus& readStatus)>;
/frameworks/av/media/libaudiohal/4.0/
H A DStreamHalHidl.h192 using WriterCallback = std::function<void(const WriteStatus& writeStatus)>;
241 using ReaderCallback = std::function<void(const ReadStatus& readStatus)>;
/frameworks/base/cmds/statsd/src/
H A DStatsLogProcessor.h51 const std::function<bool(const ConfigKey&)>& sendBroadcast);
167 std::function<bool(const ConfigKey& key)> mSendBroadcast;
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DArrayUtilsTest.java29 java.util.function.Predicate<Object> isNull = new java.util.function.Predicate<Object>() {
/frameworks/base/libs/hwui/renderthread/
H A DCacheManager.cpp92 std::function<void()> func;
95 virtual void add(std::function<void(void)> func) override {
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1212 private void throwEglException(String function) { argument
1213 throwEglException(function, mEgl.eglGetError());
1216 public static void throwEglException(String function, int error) { argument
1217 String message = formatEglError(function, error);
1225 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
1226 Log.w(tag, formatEglError(function, error));
1229 public static String formatEglError(String function, int error) { argument
1230 return function + " failed: " + EGLLogWrapper.getErrorString(error);

Completed in 1211 milliseconds

1234567891011>>