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

1234567891011>>

/frameworks/ex/framesequence/jni/
H A DFrameSequence_gif.cpp140 // return true if area of 'target' is completely covers area of 'covered'
141 static bool checkIfCover(const GifImageDesc& target, const GifImageDesc& covered) { argument
142 return target.Left <= covered.Left
143 && covered.Left + covered.Width <= target.Left + target.Width
144 && target.Top <= covered.Top
145 && covered.Top + covered.Height <= target.Top + target.Height;
/frameworks/native/opengl/tools/glgen2/registry/
H A Dgenheaders.py32 # target - string name of target header, or all targets if None
39 target = None variable
78 target = arg variable
79 write('Using target', target, file=sys.stderr)
554 if (target and target != genOpts.filename):
567 if (target and generated == 0):
568 write('Failed to generate target
[all...]
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DLayoutBinderWriter.kt79 val ExprModel.ext by lazyProp { target : ExprModel ->
95 val BindingTarget.readableName by lazyProp { target: BindingTarget ->
96 if (target.id == null) {
97 "boundView" + indexFromTag(target.tag)
99 target.id.androidId().stripNonJava()
111 val BindingTarget.fieldName : String by lazyProp { target : BindingTarget ->
114 if (target.id == null) {
115 name = "m${target.readableName}"
118 name = target.readableName
121 target
[all...]
/frameworks/support/core-utils/java/android/support/v4/content/
H A DFileProvider.java598 File target = null;
600 target = DEVICE_ROOT;
602 target = context.getFilesDir();
604 target = context.getCacheDir();
606 target = Environment.getExternalStorageDirectory();
610 target = externalFilesDirs[0];
615 target = externalCacheDirs[0];
619 if (target != null) {
620 strat.addRoot(name, buildPath(target, path));
633 * target
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DLinearLayoutManagerBaseConfigSetTest.java118 final TargetTuple target = findInvisibleTarget(config);
119 final String logPrefix = config + " " + target;
123 scrollToPositionWithOffset(target.mPosition, offset);
125 final View child = mLayoutManager.findViewByPosition(target.mPosition);
312 final int target;
316 target = tailTarget;
319 target = headTarget;
324 config + " target:" + target + " min:" + minPosition + ", max:" + maxPosition);
326 return new TargetTuple(target, itemLayoutDirectio
[all...]
/frameworks/base/core/java/android/net/
H A DRouteInfo.java430 RouteInfo target = (RouteInfo) obj;
432 return Objects.equals(mDestination, target.getDestination()) &&
433 Objects.equals(mGateway, target.getGateway()) &&
434 Objects.equals(mInterface, target.getInterface()) &&
435 mType == target.getType();
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java34 * @param target the texture target.
45 public static void loadTexture(int target, int level, int border, argument
48 loadTexture(target, level, border, fallbackFormat, fallbackType, createTexture(input));
54 * @param target the texture target.
64 public static void loadTexture(int target, int level, int border, argument
79 GLES10.glCompressedTexImage2D(target, level, ETC1.ETC1_RGB8_OES, width, height,
88 GLES10.glTexImage2D(target, level, fallbackFormat, width, height, border,
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutPackageInfo.java105 public boolean canRestoreTo(ShortcutService s, PackageInfo target) { argument
106 if (!s.shouldBackupApp(target)) {
111 if (target.versionCode < mVersionCode) {
114 target.versionCode, mVersionCode));
117 if (!BackupUtils.signaturesMatch(mSigHashes, target)) {
/frameworks/support/transition/ics/android/support/transition/
H A DTransitionPort.java81 // Number of per-target instances of this Transition currently running. This count is
112 * Constructs a Transition object with no target objects. A transition with
113 * no targets defaults to running on all target objects in the scene hierarchy
114 * (if the transition is not contained in a TransitionSet), or all target
168 * possible target views, is called with the entire set of start/end
364 * the Transition has no target/targetId list (the default, in which
366 * the given view is in the target list or the view id is in the
367 * targetId list. If the target parameter is null, then the target list
371 boolean isValidTarget(View target, lon argument
498 excludeTarget(View target, boolean exclude) argument
503 excludeChildren(View target, boolean exclude) argument
512 excludeView(ArrayList<View> list, View target, boolean exclude) argument
574 addTarget(View target) argument
579 removeTarget(View target) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
H A DViewFocusAnimator.java115 float target = focused ? 1.0f : 0.0f;
117 if (mFocusProgress != target) {
118 mFocusAnimation.setFloatValues(mFocusProgress, target);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameImage2D.java82 * The source and target rectangles must be given in normalized coordinates, where 0,0 is the
85 * If the target rectangle is smaller than the target frame, the pixel values outside of the
86 * target rectangle are undefined.
91 * @param target The target frame to copy to.
93 * @param targetRect The target rectangle in normalized coordinates.
95 public void copyToFrame(FrameImage2D target, RectF sourceRect, RectF targetRect) { argument
97 gpuImageCopy(this, target, sourceRect, targetRect);
99 cpuImageCopy(this, target, sourceRec
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31.spec5 void glFramebufferParameteri ( GLenum target, GLenum pname, GLint param )
6 void glGetFramebufferParameteriv ( GLenum target, GLenum pname, GLint *params )
56 void glGetBooleani_v ( GLenum target, GLuint index, GLboolean *data )
59 void glTexStorage2DMultisample ( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations )
62 void glGetTexLevelParameteriv ( GLenum target, GLint level, GLenum pname, GLint *params )
63 void glGetTexLevelParameterfv ( GLenum target, GLint level, GLenum pname, GLfloat *params )
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java137 AbstractInputMethodService target = mTarget.get();
138 if (target == null) {
143 target.dump((FileDescriptor)args.arg1,
220 AbstractInputMethodService target = mTarget.get();
221 if (target == null) {
224 if (target.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DFocusManager.java98 // Find the target item and focus it.
163 // Find a navigation target based on the arrow key that the user pressed.
218 * Given a PgUp/PgDn event and the current view, find the position of the target view.
228 * @return The adapter position of the target item.
238 // If the current item isn't the first item, target the first item.
241 // If the current item is the first item, target the item one page up.
242 int target = current - pageSize;
243 return target < 0 ? 0 : target;
249 // If the current item isn't the last item, target th
[all...]
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java119 * Copy package to the target location.
128 public int copyPackage(String packagePath, IParcelFileDescriptorFactory target) {
129 if (packagePath == null || target == null) {
137 return copyPackageInner(pkg, target);
367 private int copyPackageInner(PackageLite pkg, IParcelFileDescriptorFactory target) argument
369 copyFile(pkg.baseCodePath, target, "base.apk");
372 copyFile(pkg.splitCodePaths[i], target, "split_" + pkg.splitNames[i] + ".apk");
379 private void copyFile(String sourcePath, IParcelFileDescriptorFactory target, String targetName) argument
387 target.open(targetName, ParcelFileDescriptor.MODE_READ_WRITE));
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DStatementParser.java102 AbstractAsset target = AssetFactory.create(targetObject);
105 .create(source, target, Relation.create(relations.getString(i))));
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DCountedDataInputStream.java75 public void skipTo(long target) throws IOException { argument
77 long diff = target - cur;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java99 // Draws the source rectangle part of the texture to the target rectangle.
100 public abstract void drawTexture(BasicTexture texture, RectF source, RectF target); argument
114 // The region of the texture is defined by parameter "src". The target
115 // rectangle is specified by parameter "target".
117 float ratio, RectF src, RectF target);
169 * @param texture The target texture to write to.
116 drawMixed(BasicTexture from, int toColor, float ratio, RectF src, RectF target) argument
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DDeviceSelectAction.java31 * Triggered by {@link HdmiTvClient}, attempts to select the given target device
32 * for a new active source. It does its best to wake up the target in standby mode
44 // The number of times we try to wake up the target device before we give up
71 * @param target target logical device that will be a new active source
75 HdmiDeviceInfo target, IHdmiControlCallback callback) {
78 mTarget = target;
74 DeviceSelectAction(HdmiCecLocalDeviceTv source, HdmiDeviceInfo target, IHdmiControlCallback callback) argument
/frameworks/base/services/tests/shortcutmanagerutils/
H A DAndroid.mk23 mockito-target
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
H A DMainActivityTest.java41 private Object invokeMethod(Class targetClass, Object target, String methodName, Object... params) argument
49 return method.invoke(target, params);
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java53 MessageBundle(Handler target, Message message, long uptimeMillis) { argument
54 mTarget = target;
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFObjectWriter.h27 * \brief ELFObjectWriter writes the target-independent parts of object files.
46 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFObjectWriter
47 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFObjectWriter
H A DELFReaderIf.h51 /// target - the target backend
52 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFReaderIF
53 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFReaderIF
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DBracketExpr.java35 BracketExpr(Expr target, Expr arg) { argument
36 super(target, arg);

Completed in 8442 milliseconds

1234567891011>>