Searched refs:target (Results 226 - 250 of 645) sorted by relevance

1234567891011>>

/frameworks/rs/
H A Dupdate_rs_prebuilts.sh38 RENDERSCRIPT_V8_JAR=out/target/common/obj/JAVA_LIBRARIES/android-support-v8-renderscript_intermediates/classes.jar
63 echo Building for target $1
79 echo Building for target $1
184 sys_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/system/lib64
187 sys_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/system/lib
190 obj_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/obj/SHARED_LIBRARIES
191 obj_static_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/obj/STATIC_LIBRARIES
/frameworks/support/lifecycle/common/src/main/java/androidx/lifecycle/
H A DClassesInfoCache.java183 void invokeCallbacks(LifecycleOwner source, Lifecycle.Event event, Object target) { argument
184 invokeMethodsForEvent(mEventToHandlers.get(event), source, event, target);
186 target);
210 void invokeCallback(LifecycleOwner source, Lifecycle.Event event, Object target) { argument
215 mMethod.invoke(target);
218 mMethod.invoke(target, source);
221 mMethod.invoke(target, source, event);
/frameworks/base/core/java/com/android/internal/widget/
H A DAutoScrollHelper.java76 * larger of either this value or the relative target value. Default value is
174 /** Whether to send a cancel motion event to the target view. */
198 * Creates a new helper for scrolling the specified target view.
201 * should be set as a touch listener on the target view.
206 * @param target The view to automatically scroll.
208 public AutoScrollHelper(View target) { argument
209 mTarget = target;
251 * By default, exclusive handling is disabled and the target view receives
258 * false to allow the target view to receive all touch events.
317 * Sets the target scrollin
874 AbsListViewAutoScroller(AbsListView target) argument
[all...]
H A DSlidingTab.java161 * {@link #target} is the target the user must drag the slider past to trigger the slider.
183 private final ImageView target; field in class:SlidingTab.Slider
194 * @param targetId drawable for the target
212 // Create target
213 target = new ImageView(parent.getContext());
214 target.setImageResource(targetId);
215 target.setScaleType(ScaleType.CENTER);
216 target.setLayoutParams(
218 target
[all...]
/frameworks/compile/mclinker/unittests/
H A DGraphTest.cpp188 ASSERT_TRUE(u1 == a1->source && u2 == a1->target);
189 ASSERT_TRUE(u2 == a2->source && u3 == a2->target);
190 ASSERT_TRUE(u3 == a3->source && u1 == a3->target);
208 ASSERT_TRUE(u1 == a1->source && u1 == a1->target);
209 ASSERT_TRUE(u1 == a2->source && u2 == a2->target);
210 ASSERT_TRUE(u1 == a3->source && u3 == a3->target);
230 ASSERT_TRUE(u1 == a1->source && u2 == a1->target);
231 ASSERT_TRUE(u3 == a3->source && u1 == a3->target);
256 ASSERT_TRUE(u2 == a2->source && u3 == a2->target);
257 ASSERT_TRUE(u3 == a3->source && u1 == a3->target);
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java203 * target itself is also given as the argument.
238 for (Surface target : targets) {
239 if (target == null) {
240 throw new NullPointerException("Tried to add null Surface as request target");
242 reqBuilder.addTarget(target);
/frameworks/support/frameworks/support/samples/SupportAppNavigation/src/main/java/com/example/android/support/appnavigation/app/
H A DAppNavHomeActivity.java66 Intent target = new Intent();
67 target.setClassName(info.activityInfo.applicationInfo.packageName,
69 SampleInfo sample = new SampleInfo(label, target);
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/main/java/com/google/android/leanbackjank/presenter/
H A DCardPresenter.java29 import com.bumptech.glide.request.target.Target;
79 public boolean onException(Exception e, Uri uri, Target<GlideDrawable> target,
86 Target<GlideDrawable> target, boolean b, boolean b1) {
/frameworks/support/samples/SupportAppNavigation/src/main/java/com/example/android/support/appnavigation/app/
H A DAppNavHomeActivity.java66 Intent target = new Intent();
67 target.setClassName(info.activityInfo.applicationInfo.packageName,
69 SampleInfo sample = new SampleInfo(label, target);
/frameworks/support/samples/SupportLeanbackJank/src/main/java/com/google/android/leanbackjank/presenter/
H A DCardPresenter.java29 import com.bumptech.glide.request.target.Target;
79 public boolean onException(Exception e, Uri uri, Target<GlideDrawable> target,
86 Target<GlideDrawable> target, boolean b, boolean b1) {
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp62 // rsym - The relocation target symbol
101 // rsym - The relocation target symbol
167 // rsym - The relocation target symbol
183 // check if we should issue undefined reference for the relocation target
315 // rsym - The relocation target symbol
392 // the target symbol of the created dynamic relocation should be the
500 // the target symbol of the dynamic relocation is rsym, so we need to
518 // rsym - The relocation target symbol
795 uint8_t* op = (reinterpret_cast<uint8_t*>(&reloc->target()));
806 op = (reinterpret_cast<uint8_t*>(&reloc->target()));
[all...]
/frameworks/native/opengl/include/GLES3/
H A Dgl32.h388 typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer);
389 typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer);
390 typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer);
391 typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);
397 typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
398 typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
399 typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target);
406 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data);
407 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data);
408 typedef void (GL_APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLin
[all...]
H A Dgl3.h386 typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer);
387 typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer);
388 typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer);
389 typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);
395 typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
396 typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
397 typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target);
404 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data);
405 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data);
406 typedef void (GL_APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLin
[all...]
/frameworks/native/opengl/libagl/
H A Dtexture.cpp622 GLenum target, GLenum pname, GLfixed param, ogles_context_t* c)
624 if (target != GL_TEXTURE_2D && target != GL_TEXTURE_EXTERNAL_OES) {
854 void glBindTexture(GLenum target, GLuint texture) argument
857 if (target != GL_TEXTURE_2D && target != GL_TEXTURE_EXTERNAL_OES) {
916 GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
919 if (uint32_t(target-GL_TEXTURE0) > uint32_t(GGL_TEXTURE_UNIT_COUNT)) {
923 const int tmu = target-GL_TEXTURE0;
931 GLenum target, GLfixe
621 texParameterx( GLenum target, GLenum pname, GLfixed param, ogles_context_t* c) argument
915 glMultiTexCoord4f( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) argument
930 glMultiTexCoord4x( GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) argument
962 glTexEnvf(GLenum target, GLenum pname, GLfloat param) argument
968 glTexEnvfv( GLenum target, GLenum pname, const GLfloat *params) argument
986 glTexEnvx(GLenum target, GLenum pname, GLfixed param) argument
992 glTexEnvxv( GLenum target, GLenum pname, const GLfixed *params) argument
999 glTexParameteriv( GLenum target, GLenum pname, const GLint* params) argument
1019 glTexParameterf( GLenum target, GLenum pname, GLfloat param) argument
1026 glTexParameterx( GLenum target, GLenum pname, GLfixed param) argument
1033 glTexParameteri( GLenum target, GLenum pname, GLint param) argument
1045 glCompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) argument
[all...]
/frameworks/base/core/java/android/os/
H A DMessageQueue.java60 // Barriers are indicated by messages with a null target whose arg1 field carries the token.
333 if (msg != null && msg.target == null) {
510 while (p != null && (p.target != null || p.arg1 != token)) {
524 needWake = mMessages == null || mMessages.target != null;
537 if (msg.target == null) {
538 throw new IllegalArgumentException("Message must have a target.");
547 msg.target + " sending message to a Handler on a dead thread");
566 needWake = mBlocked && p.target == null && msg.isAsynchronous();
598 if (p.target == h && p.what == what && (object == null || p.obj == object)) {
615 if (p.target
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DHarmfulAppWarningActivity.java102 final IntentSender target = getIntent().getParcelableExtra(Intent.EXTRA_INTENT);
104 startIntentSenderForResult(target, -1 /*requestCode*/, null /*fillInIntent*/,
116 IntentSender target, CharSequence harmfulAppWarning) {
120 intent.putExtra(Intent.EXTRA_INTENT, target);
115 createHarmfulAppWarningIntent(Context context, String targetPackageName, IntentSender target, CharSequence harmfulAppWarning) argument
/frameworks/base/libs/hwui/renderstate/
H A DTextureState.h55 * Binds the specified texture with the specified render target.
59 void bindTexture(GLenum target, GLuint texture);
89 // Caches texture bindings for the GL_TEXTURE_2D target
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DGrainFilter.java107 public void initProgram(FilterContext context, int target) { argument
108 switch (target) {
121 "target " + target + "!");
123 mTarget = target;
H A DRedEyeFilter.java95 public void initProgram(FilterContext context, int target) { argument
96 switch (target) {
105 "target " + target + "!");
107 mTarget = target;
H A DRotateFilter.java61 public void initProgram(FilterContext context, int target) { argument
62 switch (target) {
72 "target " + target + "!");
74 mTarget = target;
H A DStraightenFilter.java63 public void initProgram(FilterContext context, int target) { argument
64 switch (target) {
73 "target " + target + "!");
75 mTarget = target;
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
H A DVersionInfo.java55 mVersions.put(requires.target(), new Version(requires.version(), required));
60 mVersions.put(r.target(), new Version(r.version(), required));
65 addClass(depends.target(), true);
70 addClass(d.target(), true);
/frameworks/base/tools/split-select/
H A DSplitDescription.cpp40 bool SplitDescription::isBetterThan(const SplitDescription& o, const SplitDescription& target) const {
48 if (int(target.abi) - int(abi) < int(target.abi) - int(o.abi)) {
52 return config.isBetterThan(o.config, &target.config);
H A DSplitDescription.h40 bool isBetterThan(const SplitDescription& o, const SplitDescription& target) const;
/frameworks/rs/rsov/compiler/
H A Drs2spirv_driver.sh67 eval llvm-rs-cc -o "$output_folder" -S -emit-llvm -Wall -Werror -target-api 24 \

Completed in 1178 milliseconds

1234567891011>>