Home
last modified time | relevance | path

Searched refs:components (Results 1 – 25 of 570) sorted by relevance

12345678910>>...23

/frameworks/base/core/java/com/android/internal/util/
DPredicates.java35 public static <T> Predicate<T> and(Predicate<? super T>... components) { in and() argument
36 return and(Arrays.asList(components)); in and()
47 public static <T> Predicate<T> and(Iterable<? extends Predicate<? super T>> components) { in and() argument
48 return new AndPredicate(components); in and()
56 public static <T> Predicate<T> or(Predicate<? super T>... components) { in or() argument
57 return or(Arrays.asList(components)); in or()
68 public static <T> Predicate<T> or(Iterable<? extends Predicate<? super T>> components) { in or() argument
69 return new OrPredicate(components); in or()
81 private final Iterable<? extends Predicate<? super T>> components; field in Predicates.AndPredicate
83 private AndPredicate(Iterable<? extends Predicate<? super T>> components) { in AndPredicate() argument
[all …]
/frameworks/native/opengl/tests/EGLTest/
DEGL_test.cpp72 EGLint components[3]; in TEST_F() local
74 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
77 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
80 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in TEST_F()
84 EXPECT_GE(components[0], 8); in TEST_F()
85 EXPECT_GE(components[1], 8); in TEST_F()
86 EXPECT_GE(components[2], 8); in TEST_F()
146 EGLint components[4]; in TEST_F() local
148 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
151 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
[all …]
/frameworks/base/media/mca/filterfw/native/core/
Dshader_program.cpp61 components(0), in VertexAttrib()
611 int components, in CheckValueCount() argument
613 if (expected_count != (value_size / components)) { in CheckValueCount()
617 expected_count, components * expected_count, in CheckValueCount()
618 value_size / components, value_size); in CheckValueCount()
626 int components, in CheckValueMult() argument
628 if (value_size % components != 0) { in CheckValueMult()
631 components, value_size); in CheckValueMult()
714 const int components = GLEnv::NumberOfComponents(type); in SetUniformValue() local
715 if (!CheckValueCount("Uniform (int)", name, capacity, components, count) in SetUniformValue()
[all …]
Dshader_program.h261 int components,
276 int components,
290 int components);
297 int components);
415 int components; member
473 int components,
480 int components,
/frameworks/base/docs/html-intl/intl/ru/guide/
Dindex.jd8 <a href="{@docRoot}guide/components/fundamentals.html">Основы создания приложений</a>.</p>
39 <li><a href="{@docRoot}guide/components/fundamentals.html">Основы создания приложений</a>
40 <li><a href="{@docRoot}guide/components/intents-filters.html">Объекты Intent и фильтры объектов Int…
41 <li><a href="{@docRoot}guide/components/activities.html">Операции</a>
/frameworks/base/docs/html-intl/intl/ko/guide/
Dindex.jd8 <a href="{@docRoot}guide/components/fundamentals.html">앱 기본 항목</a>부터 시작하십시오.</p>
39 <li><a href="{@docRoot}guide/components/fundamentals.html">앱 기본 항목</a>
40 <li><a href="{@docRoot}guide/components/intents-filters.html">인텐트 및 인텐트 필터</a>
41 <li><a href="{@docRoot}guide/components/activities.html">액티비티</a>
/frameworks/base/docs/html-intl/intl/zh-cn/guide/
Dindex.jd7 <p>要了解应用的工作原理,请从<a href="{@docRoot}guide/components/fundamentals.html">应用基础知识</a>开始入手。
39 <li><a href="{@docRoot}guide/components/fundamentals.html">应用基础知识</a>
40 <li><a href="{@docRoot}guide/components/intents-filters.html">Intent 和 Intent 过滤器</a>
41 <li><a href="{@docRoot}guide/components/activities.html">Activity</a>
/frameworks/base/docs/html-intl/intl/zh-tw/guide/
Dindex.jd7 <p>如要瞭解應用程式的運作方式,請參閱<a href="{@docRoot}guide/components/fundamentals.html">應用程式基礎知識</a>。
39 <li><a href="{@docRoot}guide/components/fundamentals.html">應用程式基礎知識</a>
40 <li><a href="{@docRoot}guide/components/intents-filters.html">意圖和意圖篩選器</a>
41 <li><a href="{@docRoot}guide/components/activities.html">Activity</a>
/frameworks/base/docs/html-intl/intl/ja/guide/
Dindex.jd7 <p>アプリの動作方法について学ぶには、「<a href="{@docRoot}guide/components/fundamentals.html">App Fundamentals</a>」をご…
39 <li><a href="{@docRoot}guide/components/fundamentals.html">App Fundamentals</a>
40 <li><a href="{@docRoot}guide/components/intents-filters.html">インテントとインテント フィルタ</a>
41 <li><a href="{@docRoot}guide/components/activities.html">Activities</a>
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DViewInvertHelper.java106 float components = 1 - 2 * intensity; in updateInvertPaint() local
108 components, 0f, 0f, 0f, 255f * intensity, in updateInvertPaint()
109 0f, components, 0f, 0f, 255f * intensity, in updateInvertPaint()
110 0f, 0f, components, 0f, 255f * intensity, in updateInvertPaint()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageSettingBase.java406 void setEnabledComponents(ArraySet<String> components, int userId) { in setEnabledComponents() argument
407 modifyUserState(userId).enabledComponents = components; in setEnabledComponents()
410 void setDisabledComponents(ArraySet<String> components, int userId) { in setDisabledComponents() argument
411 modifyUserState(userId).disabledComponents = components; in setDisabledComponents()
414 void setEnabledComponentsCopy(ArraySet<String> components, int userId) { in setEnabledComponentsCopy() argument
415 modifyUserState(userId).enabledComponents = components != null in setEnabledComponentsCopy()
416 ? new ArraySet<String>(components) : null; in setEnabledComponentsCopy()
419 void setDisabledComponentsCopy(ArraySet<String> components, int userId) { in setDisabledComponentsCopy() argument
420 modifyUserState(userId).disabledComponents = components != null in setDisabledComponentsCopy()
421 ? new ArraySet<String>(components) : null; in setDisabledComponentsCopy()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DImageShader.java96 public void set(boolean normalize, int stride, int components, int type, float[] values) { in set() argument
100 mComponents = components; in set()
110 public void set(boolean normalize, int offset, int stride, int components, int type, in set() argument
116 mComponents = components; in set()
400 public void setAttributeValues(String attributeName, float[] data, int components) { in setAttributeValues() argument
402 attr.set(false, FLOAT_SIZE * components, components, GLES20.GL_FLOAT, data); in setAttributeValues()
405 public void setAttributeValues(String attributeName, int vbo, int type, int components, in setAttributeValues() argument
408 attr.set(normalize, offset, stride, components, type, vbo); in setAttributeValues()
773 private void checkUniformAssignment(ProgramUniform uniform, int values, int components) { in checkUniformAssignment() argument
774 if (values % components != 0) { in checkUniformAssignment()
[all …]
/frameworks/base/docs/html/guide/components/
Dfundamentals.jd9 <li><a href="#Components">App components</a>
11 <li><a href="#ActivatingComponents">Activating components</a></li>
16 <li><a href="#DeclaringComponents">Declaring components</a></li>
46 of the app's components need to be executed, and then shuts down the process
52 each app, by default, has access only to the components that it requires to do its work and
71 <li>The core framework components that define your app.</li>
72 <li>The manifest file in which you declare the components and the required device
81 <h2 id="Components">App components</h2>
83 <p>App components are the essential building blocks of an Android app. Each
85 components are actual entry points for the user and some depend on each other,
[all …]
Dindex.jd3 …nd innovative apps using a set of reusable components. This section explains how you can build the…
4 …nd innovative apps using a set of reusable components. This section explains how you can build the…
Dprocesses-and-threads.jd28 <p>When an application component starts and the application does not have any other components
30 execution. By default, all components of the same application run in the same process and thread
34 different components in your application to run in separate processes, and you can create additional
42 <p>By default, all components of the same application run in the same process and most applications
53 in its own process or so that some components share a process while others do not. You can also set
54 {@code android:process} so that components of different applications run in the same
60 default value that applies to all components.</p>
64 components running in the process that's killed are consequently destroyed. A process is started
65 again for those components when there's again work for them to do.</p>
70 terminate a process, therefore, depends on the state of the components running in that process. The
[all …]
/frameworks/base/docs/html/guide/
Dindex.jd8 <a href="{@docRoot}guide/components/fundamentals.html">App Fundamentals</a>.</p>
27 <p>Android apps are built as a combination of distinct components that can be invoked
40 <li><a href="{@docRoot}guide/components/fundamentals.html">App Fundamentals</a>
41 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a>
42 <li><a href="{@docRoot}guide/components/activities.html">Activities</a>
/frameworks/base/docs/html/training/testing/integration-testing/
Dindex.jd23 If your app uses components that users do not directly interact with, such as
24 a <a href="{@docRoot}guide/components/services.html">Service</a> or
26 should validate that these components behave in a correct way with your app.</p>
27 <p>When developing such components, you should get into the habit of writing
/frameworks/base/docs/html/guide/topics/processes/
Dprocess-lifecycle.jd16 application developers understand how different application components
19 of the application's process. <strong>Not using these components correctly can
29 process no longer needed (unless other application components are active in
36 places each process into an "importance hierarchy" based on the components running in
37 them and the state of those components. These process types are (in order of importance):</p>
42 what the user is currently doing. Various application components can
97 components. The only reason to keep such a process around is as a cache to
107 important level found among all the components currently active in the process.
110 each of these components contribute to the overall life-cycle of a process.
/frameworks/base/docs/html-intl/intl/ko/guide/components/
Dfundamentals.jd104 <a href="{@docRoot}guide/components/activities.html">액티비티</a>
119 <a href="{@docRoot}guide/components/services.html">서비스</a>
239 <p>인텐트 사용에 관한 자세한 정보는 <a href="{@docRoot}guide/components/intents-filters.html">인텐트 및
241 제공되어 있습니다. <a href="{@docRoot}guide/components/activities.html">액티비티</a>, <a href="{@docRoot}guide/
366 <p>인텐트 필터 생성에 관한 자세한 내용은 <a href="{@docRoot}guide/components/intents-filters.html">인텐트 및 인텐트 필터</a>…
452 <dt><a href="{@docRoot}guide/components/intents-filters.html">인텐트 및 인텐트 필터</a>
457 <dt><a href="{@docRoot}guide/components/activities.html">액티비티</a></dt>
/frameworks/base/docs/html-intl/intl/id/guide/
Dindex.jd8 <a href="{@docRoot}guide/components/fundamentals.html">Dasar-Dasar Aplikasi</a>.</p>
39 <li><a href="{@docRoot}guide/components/fundamentals.html">Dasar-Dasar Aplikasi</a>
40 <li><a href="{@docRoot}guide/components/intents-filters.html">Intent dan Filter Intent</a>
41 <li><a href="{@docRoot}guide/components/activities.html">Aktivitas</a>
/frameworks/base/docs/html-intl/intl/in/guide/
Dindex.jd8 <a href="{@docRoot}guide/components/fundamentals.html">Dasar-Dasar Aplikasi</a>.</p>
39 <li><a href="{@docRoot}guide/components/fundamentals.html">Dasar-Dasar Aplikasi</a>
40 <li><a href="{@docRoot}guide/components/intents-filters.html">Intent dan Filter Intent</a>
41 <li><a href="{@docRoot}guide/components/activities.html">Aktivitas</a>
/frameworks/base/docs/html-intl/intl/zh-tw/guide/components/
Dfundamentals.jd103 <p>Activity 是實作成 {@link android.app.Activity} 的子類別;詳情請參閱 <a href="{@docRoot}guide/components/activi…
118 <p>服務是實作成 {@link android.app.Service} 的子類別;詳情請參閱<a href="{@docRoot}guide/components/services.html">…
239 <p>如要進一步瞭解如何使用意圖,請參閱<a href="{@docRoot}guide/components/intents-filters.html">意圖和意圖篩選器</a>。
241 <a href="{@docRoot}guide/components/activities.html">Activity</a>、<a href="{@docRoot}guide/componen…
366 <p>如要進一不瞭解如何建立意圖篩選器,請參閱<a href="{@docRoot}guide/components/intents-filters.html">意圖和意圖篩選器</a>。
452 <dt><a href="{@docRoot}guide/components/intents-filters.html">意圖和意圖篩選器</a>
457 <dt><a href="{@docRoot}guide/components/activities.html">Activity</a></dt>
/frameworks/base/docs/html-intl/intl/ja/guide/components/
Dfundamentals.jd103 …Activity} のサブクラスとして実装されます。詳細については、デベロッパー ガイドの「<a href="{@docRoot}guide/components/activities.html"…
118 ….Service} のサブクラスとして実装されます。詳細については、デベロッパー ガイドの「<a href="{@docRoot}guide/components/services.html">サ…
239 <p>インテントの使用に関する詳細については、「<a href="{@docRoot}guide/components/intents-filters.html">インテントとインテント フィルタ<…
241 <a href="{@docRoot}guide/components/activities.html">アクティビティ</a>、<a href="{@docRoot}guide/component…
366 <p>インテント フィルタの作成の詳細については、「<a href="{@docRoot}guide/components/intents-filters.html">インテントとインテント フィル…
452 <dt><a href="{@docRoot}guide/components/intents-filters.html">インテントとインテント フィルタ</a>
457 <dt><a href="{@docRoot}guide/components/activities.html">Activities</a></dt>
/frameworks/base/docs/html-intl/intl/zh-cn/guide/components/
Dfundamentals.jd105 的子类实现,您可以在<a href="{@docRoot}guide/components/activities.html">Activity</a>开发者指南中了解有关它的更多详情。</p>
120 的子类实现,您可以在<a href="{@docRoot}guide/components/services.html">服务</a>开发者指南中了解有关它的更多详情。</p>
239 <p>如需了解有关 Intent 用法的详细信息,请参阅 <a href="{@docRoot}guide/components/intents-filters.html"> Intent 和 In…
241 <a href="{@docRoot}guide/components/activities.html">Activity</a>、<a href="{@docRoot}guide/componen…
366 <p>如需了解有关创建 Intent 过滤器的详细信息,请参阅 <a href="{@docRoot}guide/components/intents-filters.html"> Intent 和…
452 <dt><a href="{@docRoot}guide/components/intents-filters.html"> Intent 和 Intent 过滤器</a>
457 <dt><a href="{@docRoot}guide/components/activities.html">Activity</a></dt>
/frameworks/base/docs/html-intl/intl/ru/guide/components/
Dfundamentals.jd104 найти в руководстве для разработчиков в статье <a href="{@docRoot}guide/components/activities.html"…
119 найти в руководстве для разработчиков в статье <a href="{@docRoot}guide/components/services.html">С…
239 …зовании объектов Intent приведены в документе <a href="{@docRoot}guide/components/intents-filters.…
241 … документах: <a href="{@docRoot}guide/components/activities.html">Операции</a>, <a href="{@docRoot…
366 …ильтров объектов Intent приведены в документе <a href="{@docRoot}guide/components/intents-filters.…
452 …<dt><a href="{@docRoot}guide/components/intents-filters.html">Объекты Intent и фильтры объектов In…
457 <dt><a href="{@docRoot}guide/components/activities.html">Операции</a></dt>

12345678910>>...23