Searched refs:object (Results 1 - 25 of 107) sorted by relevance

12345

/frameworks/compile/linkloader/android/
H A Dlibrsloader.h38 int rsloaderRelocateExecutable(RSExecRef object,
42 void rsloaderUpdateSectionHeaders(RSExecRef object, unsigned char *buf);
44 void rsloaderDisposeExec(RSExecRef object);
46 void *rsloaderGetSymbolAddress(RSExecRef object, char const *name);
48 size_t rsloaderGetSymbolSize(RSExecRef object, char const *name);
50 size_t rsloaderGetFuncCount(RSExecRef object);
52 void rsloaderGetFuncNameList(RSExecRef object, size_t size, char const **list);
H A Dlibrsloader.cpp31 static inline RSExecRef wrap(ELFObject<32> *object) { argument
32 return reinterpret_cast<RSExecRef>(object);
35 static inline ELFObject<32> *unwrap(RSExecRef object) { argument
36 return reinterpret_cast<ELFObject<32> *>(object);
43 RSExecRef object = rsloaderLoadExecutable(buf, buf_size); local
44 if (!object) {
48 if (!rsloaderRelocateExecutable(object, find_symbol, find_symbol_context)) {
49 rsloaderDisposeExec(object);
53 return object;
60 llvm::OwningPtr<ELFObject<32> > object(ELFObjec
72 ELFObject<32>* object = unwrap(object_); local
80 ELFObject<32> *object = unwrap(object_); local
100 rsloaderDisposeExec(RSExecRef object) argument
106 ELFObject<32> *object = unwrap(object_); local
128 ELFObject<32> *object = unwrap(object_); local
147 rsloaderGetFuncCount(RSExecRef object) argument
158 rsloaderGetFuncNameList(RSExecRef object, size_t size, char const **list) argument
[all...]
H A Dtest-librsloader.c96 RSExecRef object = rsloaderCreateExec(image, sb.st_size, find_sym, 0); local
97 if (!object) {
98 fprintf(stderr, "ERROR: Unable to load elf object.\n");
104 (int (*)(int, char **))rsloaderGetSymbolAddress(object, "main");
108 printf("ELF object finished with code: %d\n", ret);
111 rsloaderDisposeExec(object);
/frameworks/base/core/java/android/util/
H A DFloatProperty.java41 public abstract void setValue(T object, float value); argument
44 final public void set(T object, Float value) { argument
45 setValue(object, value);
H A DIntProperty.java41 public abstract void setValue(T object, int value); argument
44 final public void set(T object, Integer value) { argument
45 set(object, value.intValue());
H A DReflectiveProperty.java92 * object matches the type of the Property. The extra checks for primitive types are because
115 public void set(T object, V value) { argument
118 mSetter.invoke(object, value);
126 mField.set(object, value);
136 public V get(T object) { argument
139 return (V) mGetter.invoke(object, (Object[])null);
147 return (V) mField.get(object);
H A DProperty.java21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
22 * methods can be implemented in terms of the private fields of the host object, or via "setter" and
68 * object (in which case the {@link #set(Object, Object) set()} method should throw a {@link
71 * Class, String)} factory method may return a Property with name "foo" for an object that has
80 * Sets the value on <code>object</code> which this property represents. If the method is unable
81 * to set the value on the target object it will throw an {@link UnsupportedOperationException}
84 public void set(T object, V value) { argument
89 * Returns the current value that this property represents on the given <code>object</code>.
91 public abstract V get(T object); argument
H A DDebugUtils.java60 * @param object any object to match against the ANDROID_OBJECT_FILTER
62 * @return true if object is selected by the ANDROID_OBJECT_FILTER
65 public static boolean isObjectSelected(Object object) { argument
71 if (object.getClass().getSimpleName().matches(selectors[0])) {
75 Class<?> klass = object.getClass();
89 .invoke(object, (Object[])null);
/frameworks/base/core/jni/
H A Dandroid_os_Parcel.h27 extern void recycleJavaParcelObject(JNIEnv* env, jobject object);
H A Dandroid_debug_JNITest.cpp33 static jint android_debug_JNITest_part1(JNIEnv* env, jobject object, argument
45 clazz = env->GetObjectClass(object);
66 result = env->CallIntMethod(object, part2id,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DStack.java40 * Pushes the given object to the stack
41 * @param object the object to push
43 public void push(T object) { argument
44 add(object);
48 * Remove the object at the top of the stack and returns it.
49 * @return the removed object or null if the stack was empty.
60 * Returns the object at the top of the stack.
61 * @return the object at the top or null if the stack is empty.
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerAdapter.java62 * whether a page View is associated with a given key object.</p>
69 * could be implemented as <code>return view == object;</code>.</p>
120 * @param object The same object that was returned by
123 public void destroyItem(ViewGroup container, int position, Object object) { argument
124 destroyItem((View) container, position, object);
133 * @param object The same object that was returned by
136 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
137 setPrimaryItem((View) container, position, object);
191 destroyItem(View container, int position, Object object) argument
206 setPrimaryItem(View container, int position, Object object) argument
230 isViewFromObject(View view, Object object) argument
267 getItemPosition(Object object) argument
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.cpp35 JavaObject::JavaObject(jobject object, JNIEnv* env)
121 bool IsJavaInstanceOf(JNIEnv* env, jobject object, const std::string& class_name) { argument
123 return clazz ? env->IsInstanceOf(object, clazz) == JNI_TRUE : false;
133 Value ToCValue(JNIEnv* env, jobject object) { argument
135 if (object != NULL) {
136 if (IsJavaInstanceOf(env, object, "java/lang/Boolean")) {
137 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "booleanValue", "()Z");
138 result = MakeIntValue(env->CallBooleanMethod(object, method) == JNI_TRUE ? 1 : 0);
139 } else if (IsJavaInstanceOf(env, object, "java/lang/Integer")) {
140 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "intValu
[all...]
/frameworks/base/core/java/android/os/
H A DParcelUuid.java82 * Compares this ParcelUuid to another object for equality. If {@code object}
86 * @param object
88 * @return {@code true} if this ParcelUuid is equal to {@code object}
92 public boolean equals(Object object) { argument
93 if (object == null) {
97 if (this == object) {
101 if (!(object instanceof ParcelUuid)) {
105 ParcelUuid that = (ParcelUuid) object;
H A DMessageQueue.java92 * with {@link #addIdleHandler}. If the given object is not currently
333 final boolean hasMessages(Handler h, int what, Object object) { argument
341 if (p.target == h && p.what == what && (object == null || p.obj == object)) {
350 final boolean hasMessages(Handler h, Runnable r, Object object) { argument
358 if (p.target == h && p.callback == r && (object == null || p.obj == object)) {
367 final void removeMessages(Handler h, int what, Object object) { argument
377 && (object == null || p.obj == object)) {
401 removeMessages(Handler h, Runnable r, Object object) argument
435 removeCallbacksAndMessages(Handler h, Object object) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DObjectFormat.java44 public static MutableFrameFormat fromObject(Object object, int target) { argument
45 return object == null
47 : fromClass(object.getClass(), FrameFormat.SIZE_UNSPECIFIED, target);
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { argument
51 return object == null
53 : fromClass(object.getClass(), count, target);
61 throw new IllegalArgumentException("Native object-based formats must be of a " +
68 + "native object-based frame of type " + clazz + "! Perhaps it is missing a "
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java115 public void destroyItem(ViewGroup container, int position, Object object) { argument
119 if (DEBUG) Log.v(TAG, "Detaching item #" + getItemId(position) + ": f=" + object
120 + " v=" + ((Fragment)object).getView());
121 mCurTransaction.detach((Fragment)object);
125 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
126 Fragment fragment = (Fragment)object;
150 public boolean isViewFromObject(View view, Object object) { argument
151 return ((Fragment)object).getView() == view;
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentPagerAdapter.java111 public void destroyItem(ViewGroup container, int position, Object object) { argument
115 if (DEBUG) Log.v(TAG, "Detaching item #" + getItemId(position) + ": f=" + object
116 + " v=" + ((Fragment)object).getView());
117 mCurTransaction.detach((Fragment)object);
121 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
122 Fragment fragment = (Fragment)object;
146 public boolean isViewFromObject(View view, Object object) { argument
147 return ((Fragment)object).getView() == view;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSimpleFrame.java43 static SimpleFrame wrapObject(Object object, FrameManager frameManager) { argument
44 FrameFormat format = ObjectFormat.fromObject(object, FrameFormat.TARGET_SIMPLE);
46 result.setObjectValue(object);
140 protected void setGenericObjectValue(Object object) { argument
146 setFormatObjectClass(object.getClass());
147 } else if (!format.getObjectClass().isAssignableFrom(object.getClass())) {
149 "Attempting to set object value of type '" + object.getClass() + "' on " +
153 // Set the object value
154 mObject = object;
[all...]
H A DFrame.java78 public void setObjectValue(Object object) { argument
83 if (object instanceof int[]) {
84 setInts((int[])object);
85 } else if (object instanceof float[]) {
86 setFloats((float[])object);
87 } else if (object instanceof ByteBuffer) {
88 setData((ByteBuffer)object);
89 } else if (object instanceof Bitmap) {
90 setBitmap((Bitmap)object);
92 setGenericObjectValue(object);
[all...]
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorClasses.cpp832 jobject object,
855 (NULL == object),
870 pSettings->pAlphaFilePath = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
882 pSettings->blendingPercent = (M4OSA_UInt8)pEnv->GetIntField(object,
886 pSettings->isreverse = (M4OSA_Bool)pEnv->GetBooleanField(object,
890 pSettings->width = (M4OSA_UInt32) pEnv->GetIntField(object, fieldIds.rgbWidth );
892 pSettings->height = (M4OSA_UInt32) pEnv->GetIntField(object, fieldIds.rgbHeight );
898 "------- getAlphaMagicSettings width %d", pEnv->GetIntField(object,
902 pEnv->GetIntField(object, fieldIds.rgbHeight ));
973 jobject object,
829 videoEditClasses_getAlphaMagicSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4xVSS_AlphaMagicSettings** ppSettings) argument
970 videoEditClasses_getBackgroundMusicSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4xVSS_BGMSettings** ppSettings) argument
1248 videoEditClasses_getClipSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4VSS3GPP_ClipSettings** ppSettings) argument
1436 jobject object = NULL; local
1540 jobject object = NULL; local
1728 videoEditClasses_getEditSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4VSS3GPP_EditSettings** ppSettings, bool flag) argument
2271 videoEditClasses_getEffectSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4VSS3GPP_EffectSettings* pSettings) argument
2598 videoEditClasses_getSlideTransitionSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4xVSS_SlideTransitionSettings** ppSettings) argument
2703 videoEditClasses_getTransitionSettings( bool* pResult, JNIEnv* pEnv, jobject object, M4VSS3GPP_TransitionSettings** ppSettings) argument
2999 jobject object = NULL; local
3071 videoEditClasses_getContext( bool* pResult, JNIEnv* pEnv, jobject object) argument
3106 videoEditClasses_setContext( bool* pResult, JNIEnv* pEnv, jobject object, void* pContext) argument
[all...]
/frameworks/ex/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java101 public void destroyItem(View container, int position, Object object) { argument
105 if (DEBUG) Log.v(TAG, "Detaching item #" + position + ": f=" + object
106 + " v=" + ((Fragment)object).getView());
108 Fragment fragment = (Fragment) object;
122 public void setPrimaryItem(View container, int position, Object object) { argument
123 Fragment fragment = (Fragment) object;
146 public boolean isViewFromObject(View view, Object object) { argument
148 View root = ((Fragment) object).getView();
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java105 public void destroyItem(View container, int position, Object object) { argument
109 if (DEBUG) Log.v(TAG, "Detaching item #" + position + ": f=" + object
110 + " v=" + ((Fragment)object).getView());
112 Fragment fragment = (Fragment) object;
126 public void setPrimaryItem(View container, int position, Object object) { argument
127 Fragment fragment = (Fragment) object;
150 public boolean isViewFromObject(View view, Object object) { argument
152 View root = ((Fragment) object).getView();
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h31 void *object; member in struct:list_elem_s
/frameworks/base/drm/java/android/drm/
H A DDrmSupportInfo.java68 * Retrieves an iterator object that you can use to iterate over the MIME types that
71 * @return The iterator object
78 * Retrieves an iterator object that you can use to iterate over the file suffixes that
81 * @return The iterator object.
141 * @param object The object to be compared.
144 public boolean equals(Object object) { argument
145 if (object instanceof DrmSupportInfo) {
146 DrmSupportInfo info = (DrmSupportInfo) object;

Completed in 5060 milliseconds

12345