Searched defs:function (Results 1 - 25 of 30) sorted by path

12

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp31 /* function Approximate DCT function, scaling and threshold */
50 PV_STATUS CodeMB_H263(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[]) argument
84 OSCL_UNUSED_ARG(function);
260 /* function Approximate DCT function, scaling and threshold */
279 PV_STATUS CodeMB_MPEG(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[]) argument
315 OSCL_UNUSED_ARG(function);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdClearMbLayer.S48 function h264bsdClearMbLayer, export=1 label
H A Dh264bsdCountLeadingZeros.S42 function h264bsdCountLeadingZeros, export=1 label
H A Dh264bsdFillRow7.S48 function h264bsdFillRow7, export=1 label
H A Dh264bsdFlushBits.S50 function h264bsdFlushBits, export=1 label
H A Dh264bsdWriteMacroblock.S91 function h264bsdWriteMacroblock, export=1 label
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java124 SQLiteCustomFunction function);
223 SQLiteCustomFunction function = mConfiguration.customFunctions.get(i);
224 nativeRegisterCustomFunction(mConnectionPtr, function);
405 SQLiteCustomFunction function = configuration.customFunctions.get(i);
406 if (!mConfiguration.customFunctions.contains(function)) {
407 nativeRegisterCustomFunction(mConnectionPtr, function);
1062 * This function is written so that it may be called by a thread that does not
1091 * This function is written so that it may be called by a thread that does not
123 nativeRegisterCustomFunction(long connectionPtr, SQLiteCustomFunction function) argument
H A DSQLiteDatabase.java835 * Registers a CustomFunction callback as a function that can be called from
838 * @param name the name of the sqlite3 function
839 * @param numArgs the number of arguments for the function
840 * @param function callback to call when the function is executed
843 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
845 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
2205 * A callback interface for a custom sqlite3 function.
2206 * This can be used to create a function that can be called from
/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java63 * adb function is enabled
65 * RNDIS ethernet function is enabled
67 * MTP function is enabled
69 * PTP function is enabled
71 * accessory function is enabled
73 * audio source function is enabled
75 * MIDI function is enabled
78 * USB is not configued, MTP function is enabled, and all the other functions are disabled.
196 * A placeholder indicating that no USB function is being specified.
197 * Used to distinguish between selecting no function v
533 isFunctionEnabled(String function) argument
569 setCurrentFunction(String function, boolean usbDataUnlocked) argument
667 addFunction(String functions, String function) argument
681 removeFunction(String functions, String function) argument
705 containsFunction(String functions, String function) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DColorSpace.java31 import java.util.function.DoubleUnaryOperator;
240 * <td>Opto-electronic transfer function (OETF)</td>
248 * <td>Electro-optical transfer function (EOTF)</td>
275 * <td>Opto-electronic transfer function (OETF)</td>
279 * <td>Electro-optical transfer function (EOTF)</td>
302 * <td>Opto-electronic transfer function (OETF)</td>
312 * <td>Electro-optical transfer function (EOTF)</td>
341 * <td>Opto-electronic transfer function (OETF)</td>
345 * <td>Electro-optical transfer function (EOTF)</td>
368 * <td>Opto-electronic transfer function (OET
1395 match( @onNull @ize9) float[] toXYZD50, @NonNull Rgb.TransferParameters function) argument
2308 Rgb( @onNull @izemin = 1) String name, @NonNull @Size(9) float[] toXYZ, @NonNull TransferParameters function) argument
2347 Rgb( @onNull @izemin = 1) String name, @NonNull @Size(min = 6, max = 9) float[] primaries, @NonNull @Size(min = 2, max = 3) float[] whitePoint, @NonNull TransferParameters function) argument
2389 Rgb( @onNull @izemin = 1) String name, @NonNull @Size(min = 6, max = 9) float[] primaries, @NonNull @Size(min = 2, max = 3) float[] whitePoint, @NonNull TransferParameters function, @IntRange(from = MIN_ID, to = MAX_ID) int id) argument
[all...]
/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);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationIconAreaController.java28 import java.util.function.Function;
166 * @param function A function to look up an icon view based on an entry
171 Function<NotificationData.Entry, StatusBarIconView> function,
182 toShow.add(function.apply(ent));
170 updateIconsForLayout(NotificationData notificationData, Function<NotificationData.Entry, StatusBarIconView> function, NotificationIconContainer hostLayout, boolean showAmbient) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java288 private void throwEglException(String function) { argument
289 throwEglException(function, mEgl.eglGetError());
292 public static void throwEglException(String function, int error) { argument
293 String message = formatEglError(function, error);
297 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
298 Log.w(tag, formatEglError(function, error));
301 public static String formatEglError(String function, int error) { argument
302 return function + " failed: " + error;
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java128 import java.util.function.Consumer;
4863 private void enforceCallingPermission(String permission, String function) { argument
4869 + " required to call " + function + " from pid="
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java2457 private void checkSystemUid(String function) { argument
2460 throw new SecurityException(function + " must by called by the system");
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbDeviceManager.java552 * Evaluates USB function policies and applies the change accordingly.
593 Slog.e(TAG, "Failsafe 3: Restoring empty function list (with ADB if enabled).");
759 final String function = functions[i];
760 if (UsbManager.USB_FUNCTION_NONE.equals(function)) {
763 intent.putExtra(function, true);
1110 pw.println(" Kernel function list: "
1140 public boolean isFunctionEnabled(String function) { argument
1141 return UsbManager.containsFunction(SystemProperties.get(USB_CONFIG_PROPERTY), function);
H A DUsbService.java370 public boolean isFunctionEnabled(String function) { argument
372 return mDeviceManager != null && mDeviceManager.isFunctionEnabled(function);
376 public void setCurrentFunction(String function, boolean usbDataUnlocked) { argument
379 if (!isSupportedCurrentFunction(function)) {
380 Slog.w(TAG, "Caller of setCurrentFunction() requested unsupported USB function: "
381 + function);
382 function = UsbManager.USB_FUNCTION_NONE;
386 mDeviceManager.setCurrentFunctions(function, usbDataUnlocked);
392 private static boolean isSupportedCurrentFunction(String function) { argument
393 if (function
[all...]
/frameworks/compile/libbcc/lib/
H A DRSScriptGroupFusion.cpp45 // Materialize the function so that later the caller can inspect its argument
58 ALOGE("Kernel fusion (module %s slot %d): failed to find kernel function",
64 ALOGE("Kernel fusion (module %s function %s): cannot handle multiple inputs",
73 const Function* function = mergedModule->getFunction(functionName); local
75 return function;
234 // Either failed to find the kernel function, or the function has multiple inputs.
240 ALOGE("Kernel fusion (module %s function %s): not a kernel",
249 ALOGE("Kernel fusion (module %s function %s): expected input, but got null",
264 ALOGE("Kernel fusion (module %s function
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/native/libs/hwc2on1adapter/
H A DHWC2On1Adapter.cpp45 static hwc2_function_pointer_t asFP(T function) argument
47 static_assert(std::is_same<PFN, T>::value, "Incompatible function pointer");
48 return reinterpret_cast<hwc2_function_pointer_t>(function);
89 // need to provide a valid function pointer for hwc2_close to call
307 ALOGE("doGetFunction: Unknown function descriptor: %d (%s)",
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2Test.cpp98 ASSERT_TRUE(pfn) << "failed to get function";
114 ASSERT_TRUE(pfn) << "failed to get function";
125 /* If the populateDisplays function is still receiving displays and the
145 ASSERT_TRUE(pfn) << "failed to get function";
165 ASSERT_TRUE(pfn) << "failed to get function";
186 ASSERT_TRUE(pfn) << "failed to get function";
205 ASSERT_TRUE(pfn) << "failed to get function";
232 ASSERT_TRUE(pfn) << "failed to get function";
249 ASSERT_TRUE(pfn) << "failed to get function";
265 ASSERT_TRUE(pfn) << "failed to get function";
1239 setLayerProperty(Hwc2TestCoverage coverage, TestLayerPropertyFunction function, AdvanceProperty advance) argument
1271 setLayerPropertyUpdate(Hwc2TestCoverage coverage, TestLayerPropertyFunction function, AdvanceProperty advance) argument
1304 setLayerProperties(Hwc2TestCoverage coverage, size_t layerCnt, TestLayerPropertiesFunction function, AdvanceProperties advance) argument
1342 setLayerPropertyBadLayer(Hwc2TestCoverage coverage, TestLayerPropertyBadLayerFunction function) argument
1382 setLayerPropertyBadParameter(TestLayerPropertyBadParameterFunction function) argument
1410 displayLayers(Hwc2TestCoverage coverage, size_t layerCnt, TestDisplayLayersFunction function) argument
1452 displayNonValidatedLayers(size_t layerCnt, TestDisplayNonValidatedLayersFunction function) argument
1494 setClientTargetSupport(Hwc2TestCoverage coverage, TestClientTargetSupportFunction function, AdvanceClientTargetSupport advance) argument
1523 setActiveDisplayConfig(TestActiveDisplayConfigFunction function) argument
1539 createVirtualDisplay(Hwc2TestCoverage coverage, TestCreateVirtualDisplayFunction function) argument
[all...]
/frameworks/native/vulkan/include/vulkan/
H A Dvk_layer_interface.h52 VkLayerFunction function; member in struct:__anon1926
68 VkLayerFunction function; member in struct:__anon1928
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/rs/script_api/
H A DGenerateDocumentation.cpp152 static bool getUnifiedFunctionPrototypes(Function* function, argument
154 for (auto f : function->getSpecifications()) {
548 static bool writeDetailedFunction(GeneratedFile* file, Function* function) { argument
549 if (function->hidden()) {
552 const string& name = function->getName();
558 *file << " <span class='normal'>: " << function->getSummary() << "</span>\n";
563 if (!getUnifiedFunctionPrototypes(function, &entries)) {
578 if (function->someParametersAreDocumented()) {
582 for (ParameterEntry* p : function->getParameters()) {
589 string ret = function
[all...]
H A DGenerateHeaderFiles.cpp203 Function* function = spec.getFunction(); local
204 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
223 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
226 // Write the function name.
283 static void writeFunctionComment(GeneratedFile* file, const Function& function) { argument
285 writeComment(file, function.getName(), function.getSummary(), function.getDescription(),
286 function
372 Function* function = spec->getFunction(); local
[all...]

Completed in 1475 milliseconds

12