Searched refs:target (Results 201 - 225 of 509) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h87 /// target - the target data to relocate
88 const DWord& target() const { return m_TargetData; } function in class:mcld::Relocation
89 DWord& target() { return m_TargetData; } function in class:mcld::Relocation
91 /// targetRef - the reference of the target data
112 /// m_TargetData - target data of the place being relocated
115 /// m_pSymInfo - resolved symbol info of relocation target symbol
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxClassifier.java34 * is a float. Class label(target) for the training data is an integer.
78 public boolean update(final HashMap<Integer, Float> sample, int target) { argument
82 mClassifier.TrainOneSample(getArrayList(sample), target);
/frameworks/support/v4/tests/java/android/support/v4/widget/
H A DScrollerCompatTestBase.java68 Log.d(TAG, "testing if target is reached");
73 int target = mScroller.getFinalY();
77 assertEquals("given enough time, scroller should reach target position", target,
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java756 final FallbackAction target;
759 target = new FallbackAction();
761 target = sRecycleBin;
762 sRecycleBin = target.next;
764 target.next = null;
767 return target;
H A DViewGroup.java174 // First touch target in the linked list of touch targets.
190 // First hover target in the linked list of hover targets.
1438 // Find the [possibly new] drag target
1439 View target = findFrontmostDroppableChildAt(event.mX, event.mY, localPoint);
1440 if (target == null && mIsInterestedInDrag) {
1441 target = this;
1444 // If we've changed apparent drag target, tell the view root which view
1446 // notifications to the framework] and tell the new target that the drag
1450 if (mCurrentDragView != target) {
1451 root.setDragFocus(target);
3186 onNestedPrePerformAccessibilityAction(View target, int action, Bundle args) argument
6799 onStartNestedScroll(View child, View target, int nestedScrollAxes) argument
6807 onNestedScrollAccepted(View child, View target, int axes) argument
6828 onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
6838 onNestedPreScroll(View target, int dx, int dy, int[] consumed) argument
6847 onNestedFling(View target, float velocityX, float velocityY, boolean consumed) argument
6856 onNestedPreFling(View target, float velocityX, float velocityY) argument
[all...]
/frameworks/base/native/android/
H A Dstorage_manager.cpp106 ObbCallback* target = NULL; local
113 target = cb;
120 if (target != NULL) {
121 target->cb(filename, state, target->data);
122 delete target;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
H A DBitmapUtils.java121 Bitmap target = Bitmap.createBitmap(width, height, getConfig(bitmap));
122 Canvas canvas = new Canvas(target);
127 return target;
153 // scale the image so that the shorter side equals to the target;
157 Bitmap target = Bitmap.createBitmap(size, size, getConfig(bitmap));
160 Canvas canvas = new Canvas(target);
166 return target;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DBinding.java41 public Binding(BindingTarget target, String name, Expr expr) { argument
42 this(target, name, expr, null);
45 public Binding(BindingTarget target, String name, Expr expr, BindingSetterCall setterCall) { argument
46 mTarget = target;
114 private static ModelClass getListenerParameter(BindingTarget target, String name, Expr expr) { argument
115 ModelClass viewType = target.getResolvedType();
H A DLayoutBinder.java246 for (BindingTarget target : mBindingTargets) {
247 for (Binding binding : target.getBindings()) {
285 final BindingTarget target = new BindingTarget(targetBundle);
286 mBindingTargets.add(target);
287 target.setModel(mExprModel);
288 return target;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.cpp206 GLuint target = texture.getTextureTarget(); local
207 glBindTexture(target, texture.getTextureName());
212 glTexParameterx(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
213 glTexParameterx(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
214 glTexParameterx(target, GL_TEXTURE_MAG_FILTER, filter);
215 glTexParameterx(target, GL_TEXTURE_MIN_FILTER, filter);
H A DGLES20RenderEngine.cpp174 GLuint target = texture.getTextureTarget(); local
175 glBindTexture(target, texture.getTextureName());
180 glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
181 glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
182 glTexParameteri(target, GL_TEXTURE_MAG_FILTER, filter);
183 glTexParameteri(target, GL_TEXTURE_MIN_FILTER, filter);
/frameworks/rs/
H A Dupdate_rs_prebuilts.sh46 RENDERSCRIPT_V8_JAR=out/target/common/obj/JAVA_LIBRARIES/android-support-v8-renderscript_intermediates/classes.jar
69 echo Building for target $1
142 sys_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/system/lib64
145 sys_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/system/lib
148 obj_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/obj/lib
149 obj_static_lib_dir=$MY_ANDROID_DIR/out/target/product/$sys_name/obj/STATIC_LIBRARIES
/frameworks/support/v4/java/android/support/v4/view/
H A DKeyEventCompat.java37 boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target); argument
113 Object target) {
141 Object target) {
142 return KeyEventCompatEclair.dispatch(event, receiver, state, target);
218 Object target) {
219 return IMPL.dispatch(event, receiver, state, target);
112 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
140 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
217 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
H A DItemTouchHelperTest.java147 final RecyclerView.ViewHolder target = mRecyclerView
149 TouchUtils.dragViewToX(getInstrumentation(), target.itemView, Gravity.CENTER, targetX);
151 final SwipeRecord swipe = mCalback.getSwipe(target);
163 assertTrue(mCalback.isCleared(target));
186 RecyclerView.ViewHolder target) {
187 mMoveRecordList.add(new MoveRecord(viewHolder, target));
185 onMove(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, RecyclerView.ViewHolder target) argument
/frameworks/base/core/java/android/os/
H A DMessageQueue.java58 // Barriers are indicated by messages with a null target whose arg1 field carries the token.
330 if (msg != null && msg.target == null) {
507 while (p != null && (p.target != null || p.arg1 != token)) {
521 needWake = mMessages == null || mMessages.target != null;
534 if (msg.target == null) {
535 throw new IllegalArgumentException("Message must have a target.");
544 msg.target + " sending message to a Handler on a dead thread");
563 needWake = mBlocked && p.target == null && msg.isAsynchronous();
595 if (p.target == h && p.what == what && (object == null || p.obj == object)) {
612 if (p.target
[all...]
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintSpooler.java728 public List<PrintJobInfo> getPrintJobInfos(IPrintSpooler target, argument
732 target.getPrintJobInfos(mCallback, componentName, state, appId, sequence);
750 public PrintJobInfo getPrintJobInfo(IPrintSpooler target, PrintJobId printJobId, argument
753 target.getPrintJobInfo(printJobId, mCallback, appId, sequence);
771 public boolean setPrintJobState(IPrintSpooler target, PrintJobId printJobId, argument
774 target.setPrintJobState(printJobId, status, error, mCallback, sequence);
792 public boolean setPrintJobTag(IPrintSpooler target, PrintJobId printJobId, argument
795 target.setPrintJobTag(printJobId, tag, mCallback, sequence);
813 public Void onCustomPrinterIconLoaded(IPrintSpooler target, PrinterId printerId, argument
816 target
834 clearCustomPrinterIconCache(IPrintSpooler target) argument
855 getCustomPrinterIcon(IPrintSpooler target, PrinterId printerId) argument
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DDividerSnapAlgorithm.java52 * 1 snap target: 1:1
68 /** The first target which is still splitting the screen */
71 /** The last target which is still splitting the screen */
160 SnapTarget target = snap(position, false /* hardDismiss */);
161 if (target == mDismissStartTarget) {
163 } else if (target == mDismissEndTarget) {
166 return target;
231 SnapTarget target = mTargets.get(i);
232 float distance = Math.abs(position - target.position);
234 distance /= target
[all...]
/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/v7/recyclerview/tests/src/android/support/v7/widget/
H A DLinearLayoutManagerBaseConfigSetTest.java124 final TargetTuple target = findInvisibleTarget(config);
125 final String logPrefix = config + " " + target;
129 scrollToPositionWithOffset(target.mPosition, offset);
131 final View child = mLayoutManager.findViewByPosition(target.mPosition);
318 final int target;
322 target = tailTarget;
325 target = headTarget;
330 config + " target:" + target + " min:" + minPosition + ", max:" + maxPosition);
332 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.java88 public boolean canRestoreTo(ShortcutService s, PackageInfo target) { argument
89 if (!s.shouldBackupApp(target)) {
94 if (target.versionCode < mVersionCode) {
97 target.versionCode, mVersionCode));
100 if (!BackupUtils.signaturesMatch(mSigHashes, target)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeaderView.java587 private void captureLayoutValues(LayoutValues target) { argument
588 target.timeScale = mExpanded ? 1f : mClockCollapsedScaleFactor;
589 target.clockY = mClock.getBottom();
590 target.dateY = mDateGroup.getTop();
591 target.emergencyCallsOnlyAlpha = getAlphaForVisibility(mEmergencyCallsOnly);
592 target.alarmStatusAlpha = getAlphaForVisibility(mAlarmStatus);
593 target.dateCollapsedAlpha = getAlphaForVisibility(mDateCollapsed);
594 target.dateExpandedAlpha = getAlphaForVisibility(mDateExpanded);
595 target.avatarScale = mMultiUserAvatar.getScaleX();
596 target
[all...]

Completed in 686 milliseconds

1234567891011>>