Searched defs:target (Results 51 - 75 of 371) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbResolverActivity.java68 Intent target = (Intent)targetParcelable;
88 mDevice = (UsbDevice)target.getParcelableExtra(UsbManager.EXTRA_DEVICE);
92 mAccessory = (UsbAccessory)target.getParcelableExtra(UsbManager.EXTRA_ACCESSORY);
123 super.onCreate(savedInstanceState, target, title, null, rList, true);
144 protected boolean onTargetSelected(TargetInfo target, boolean alwaysCheck) { argument
145 final ResolveInfo ri = target.getResolveInfo();
179 target.startAsUser(this, null, UserHandle.of(userId));
/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/split-select/
H A DSplitSelector.cpp38 const SplitDescription& target, Vector<SplitDescription>& splitsOut) {
44 if (!thisSplit.match(target)) {
48 if (!isSet || thisSplit.isBetterThan(bestSplit, target)) {
59 Vector<SplitDescription> SplitSelector::getBestSplits(const SplitDescription& target) const {
63 selectBestFromGroup(mGroups[i], target, bestSplits);
37 selectBestFromGroup(const SortedVector<SplitDescription>& splits, const SplitDescription& target, Vector<SplitDescription>& splitsOut) argument
/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/learning/multiclass_pa/java/android/bordeaux/learning/
H A DMulticlassPA.java36 int target) {
38 index_array, float_array, target, nativeClassifier);
63 int target, long classPtr);
34 sparseTrainOneExample(int[] index_array, float[] float_array, int target) argument
61 nativeSparseTrainOneExample(int[] index_array, float[] float_array, int target, long classPtr) argument
/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);
H A DLearning_MulticlassPA.java72 public void TrainOneSample(List<IntFloat> sample, int target) { argument
76 target);
/frameworks/support/design/src/android/support/design/widget/
H A DViewGroupUtils.java73 private static void offsetDescendantMatrix(ViewParent target, View view, Matrix m) { argument
75 if (parent instanceof View && parent != target) {
77 offsetDescendantMatrix(target, vp, m);
/frameworks/support/transition/api14/android/support/transition/
H A DPathProperty.java57 public void set(T target, Float fraction) { argument
62 mProperty.set(target, mPointF);
/frameworks/av/camera/ndk/
H A DNdkCaptureRequest.cpp41 void ACameraOutputTarget_free(ACameraOutputTarget* target) { argument
43 if (target != nullptr) {
44 delete target;
51 ACaptureRequest* req, const ACameraOutputTarget* target) {
53 if (req == nullptr || req->targets == nullptr || target == nullptr) {
59 ALOGE("%s: Error: invalid input: req %p, req-targets %p, target %p",
60 __FUNCTION__, req, req_targets, target);
63 auto pair = req->targets->mOutputs.insert(*target);
65 ALOGW("%s: target %p already exists!", __FUNCTION__, target);
50 ACaptureRequest_addTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
71 ACaptureRequest_removeTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DUnlaunchableAppActivity.java139 public static Intent createInQuietModeDialogIntent(int userId, IntentSender target) { argument
141 intent.putExtra(Intent.EXTRA_INTENT, target);
/frameworks/base/libs/androidfw/tests/
H A DConfig_test.cpp28 static ResTable_config selectBest(const ResTable_config& target, argument
35 if (!thisConfig.match(target)) {
39 if (thisConfig.isBetterThan(bestConfig, &target)) {
/frameworks/base/libs/hwui/renderstate/
H A DTextureState.cpp108 void TextureState::bindTexture(GLenum target, GLuint texture) { argument
109 if (target == GL_TEXTURE_2D) {
113 // target=GL_TEXTURE_EXTERNAL_OES, don't cache this target
115 glBindTexture(target, texture);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java34 public MutableFrameFormat(int baseType, int target) { argument
35 super(baseType, target);
43 public void setTarget(int target) { argument
44 mTarget = target;
H A DOutputPort.java32 public void connectTo(InputPort target) { argument
36 mTargetPort = target;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DBitmapOverlayFilter.java71 public void initProgram(FilterContext context, int target) { argument
72 switch (target) {
81 "target " + target + "!");
83 mTarget = target;
H A DBlackWhiteFilter.java101 public void initProgram(FilterContext context, int target) { argument
102 switch (target) {
112 "target " + target + "!");
114 mTarget = target;
H A DCropRectFilter.java65 public void initProgram(FilterContext context, int target) { argument
66 switch (target) {
75 "target " + target + "!");
77 mTarget = target;
H A DDocumentaryFilter.java96 public void initProgram(FilterContext context, int target) { argument
97 switch (target) {
106 "target " + target + "!");
108 mTarget = target;
H A DFisheyeFilter.java85 public void initProgram(FilterContext context, int target) { argument
86 switch (target) {
95 "target " + target + "!");
97 mTarget = target;
H A DImageCombineFilter.java72 int target = getInputFormat(mInputNames[0]).getTarget();
74 if (target != getInputFormat(inputName).getTarget()) {
76 + ". All input frames must have the same target!");
106 protected void updateProgramWithTarget(int target, FilterContext context) { argument
107 if (target != mCurrentTarget) {
108 switch (target) {
126 mCurrentTarget = target;
H A DLomoishFilter.java136 public void initProgram(FilterContext context, int target) { argument
137 switch (target) {
146 "target " + target + "!");
148 mTarget = target;
H A DSaturateFilter.java85 public void initProgram(FilterContext context, int target) { argument
86 switch (target) {
100 "target " + target + "!");
102 mTarget = target;
H A DSharpenFilter.java83 public void initProgram(FilterContext context, int target) { argument
84 switch (target) {
93 "target " + target + "!");
95 mTarget = target;
H A DTintFilter.java68 public void initProgram(FilterContext context, int target) { argument
69 switch (target) {
78 "target " + target + "!");
80 mTarget = target;

Completed in 5140 milliseconds

1234567891011>>