Searched refs:components (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DRemoteServiceCallback.aidl28 void onResult(in List<ComponentName> components, in List<IBinder> callServices);
/frameworks/native/cmds/lshal/
H A Dutils.cpp29 std::vector<std::string> components{};
33 components.push_back(s.substr(startPos, matchPos - startPos));
38 components.push_back(s.substr(startPos));
40 return components;
H A Dutils.h58 std::string join(const A &components, const std::string &separator) { argument
61 for (const auto &component : components) {
H A DListCommand.cpp923 std::vector<std::string> components; local
928 components.push_back(s.substr(startPos, matchPos - startPos));
933 components.push_back(s.substr(startPos));
935 return components;
/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp111 EGLint components[3];
113 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
116 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
119 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
123 EXPECT_GE(components[0], 8);
124 EXPECT_GE(components[1], 8);
125 EXPECT_GE(components[2], 8);
185 EGLint components[4]; local
187 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
190 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[
239 EGLint components[4]; local
325 EGLint components[4]; local
400 EGLint components[4]; local
634 EGLint components[4]; local
736 EGLint components[4]; local
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp61 components(0),
611 int components,
613 if (expected_count != (value_size / components)) {
615 "(%d components), but received length of %d (%d components)!",
617 expected_count, components * expected_count,
618 value_size / components, value_size);
626 int components,
628 if (value_size % components != 0) {
631 components, value_siz
608 CheckValueCount(const std::string& var_type, const std::string& var_name, int expected_count, int components, int value_size) argument
624 CheckValueMult(const std::string& var_type, const std::string& var_name, int components, int value_size) argument
714 const int components = GLEnv::NumberOfComponents(type); local
765 const int components = GLEnv::NumberOfComponents(type); local
944 SetAttributeValues(ProgramVar var, const VertexFrame* vbo, GLenum type, int components, int stride, int offset, bool normalize) argument
970 SetAttributeValues(ProgramVar var, const uint8_t* data, GLenum type, int components, int stride, int offset, bool normalize) argument
995 SetAttributeValues(ProgramVar var, const std::vector<float>& data, int components) argument
1001 SetAttributeValues(ProgramVar var, const float* data, int total, int components) argument
[all...]
H A Dshader_program.h252 // components: The number of components per value. Valid values are 1-4.
261 int components,
276 int components,
282 // The components parameter specifies how many elements per variable should
283 // be assigned (The variable must be able to fit the number of components).
290 int components);
297 int components);
415 int components; member in struct:android::filterfw::ShaderProgram::VertexAttrib
473 int components,
[all...]
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaSessionManagerImplBase.java95 * specified user. Enabled components may only operate on behalf of the user
106 final String[] components = enabledNotifListeners.split(":");
107 for (int i = 0; i < components.length; i++) {
109 ComponentName.unflattenFromString(components[i]);
/frameworks/base/graphics/java/android/graphics/
H A DColor.java53 * color space using 4 components packed in a single 32 bit integer value:</p>
65 * <p>The components in this table are listed in encoding order (see below),
74 * <p>The four components of a color int are encoded in the following way:</p>
86 * As a convenience this class also offers methods to encode color ints from components
98 * <p>The four ARGB components can be individually extracted from a color int
107 * <p>This class offers convenience methods to easily extract these components:</p>
120 * <p>A color long always defines a color using 4 components packed in a single
121 * 64 bit long value. One of these components is always alpha while the other
122 * three components depend on the color space's {@link ColorSpace.Model color model}.
124 * which the components represen
365 Color(@izemin = 4, max = 5) float[] components, @NonNull ColorSpace colorSpace) argument
584 getComponents(@ullable @izemin = 4) float[] components) argument
962 valueOf(@onNull @izemin = 4, max = 5) float[] components, @NonNull ColorSpace colorSpace) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageSettingBase.java464 void setEnabledComponents(ArraySet<String> components, int userId) { argument
465 modifyUserState(userId).enabledComponents = components;
468 void setDisabledComponents(ArraySet<String> components, int userId) { argument
469 modifyUserState(userId).disabledComponents = components;
472 void setEnabledComponentsCopy(ArraySet<String> components, int userId) { argument
473 modifyUserState(userId).enabledComponents = components != null
474 ? new ArraySet<String>(components) : null;
477 void setDisabledComponentsCopy(ArraySet<String> components, int userId) { argument
478 modifyUserState(userId).disabledComponents = components != null
479 ? new ArraySet<String>(components)
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java96 public void set(boolean normalize, int stride, int components, int type, float[] values) { argument
100 mComponents = components;
110 public void set(boolean normalize, int offset, int stride, int components, int type, argument
116 mComponents = components;
400 public void setAttributeValues(String attributeName, float[] data, int components) { argument
402 attr.set(false, FLOAT_SIZE * components, components, GLES20.GL_FLOAT, data);
405 public void setAttributeValues(String attributeName, int vbo, int type, int components, argument
408 attr.set(normalize, offset, stride, components, type, vbo);
773 private void checkUniformAssignment(ProgramUniform uniform, int values, int components) { argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java542 private void propagateApplicationInfo(ApplicationInfo appInfo, ComponentInfo[] components) { argument
543 if (components != null) {
544 for (ComponentInfo ci : components) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DCategoryManager.java212 final Set<ComponentName> components = new ArraySet<>();
219 if (components.contains(tileComponent)) {
222 components.add(tileComponent);
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenLog.java212 private static String componentListToString(List<ComponentName> components) { argument
215 for (int i = 0; i < components.size(); ++i) {
219 stringBuilder.append(componentToString(components.get(i)));
/frameworks/base/core/java/com/android/internal/content/
H A DPackageMonitor.java156 * changes to the enabled/disabled state of components in a package
161 * @param components Any components in the package that are changing. If
170 public boolean onPackageChanged(String packageName, int uid, String[] components) { argument
171 if (components != null) {
172 for (String name : components) {
/frameworks/base/services/core/jni/
H A Dcom_android_server_ArcVideoService.cpp35 #include <components/arc/common/video.mojom.h>
/frameworks/rs/script_api/
H A Drs_time.spec51 Data structure for broken-down time components.
H A Drs_quaternion.spec132 Creates a quaternion from its four components or from another quaternion.
/frameworks/rs/rsov/compiler/spirit/
H A Dmodule.cpp260 ConstantInst *components[],
262 return getGlobalSection()->getConstantComposite(type, components, width);
701 ConstantInst *components[], size_t width) {
708 if (c->mOperand1[i].mInstruction != components[i]) {
717 c->mOperand1.push_back(components[i]);
259 getConstantComposite(TypeVectorInst *type, ConstantInst *components[], size_t width) argument
H A Dmodule.h196 ConstantInst *components[],
200 const std::vector<ConstantInst *> &components);
407 ConstantInst *components[],
/frameworks/base/services/backup/java/com/android/server/backup/
H A DTransportManager.java129 void onPackageChanged(String packageName, String... components) { argument
132 Set<ComponentName> transportComponents = new ArraySet<>(components.length);
133 for (String componentName : components) {
/frameworks/base/services/core/java/com/android/server/dreams/
H A DDreamManagerService.java290 ComponentName[] components = componentsFromString(names);
292 // first, ensure components point to valid services
294 if (components != null) {
295 for (ComponentName component : components) {
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationManagerCompat.java96 /** Cache of enabled notification listener components */
270 final String[] components = enabledNotificationListeners.split(":", -1);
271 Set<String> packageNames = new HashSet<String>(components.length);
272 for (String component : components) {
433 // Ensure all enabled components have a record in the listener map.
442 // Remove listener records that are no longer for enabled components.
/frameworks/base/services/core/java/com/android/server/
H A DServiceWatcher.java358 public boolean onPackageChanged(String packageName, int uid, String[] components) {
363 return super.onPackageChanged(packageName, uid, components);
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DPackageManagerSettingsTests.java270 ArraySet<String> components = new ArraySet<String>();
272 components.add(component1);
273 ps.setDisabledComponents(components, 0);
281 // User 1 should not have any disabled components
285 ps.setEnabledComponents(components, 1);

Completed in 669 milliseconds

12