Searched refs:object (Results 26 - 50 of 107) sorted by relevance

12345

/frameworks/base/media/java/android/media/
H A DTimedText.java38 * <li> Register the {@link MediaPlayer.OnTimedTextListener} callback on a MediaPlayer object that is used for playback</li>
368 * @return the characters as a String object in the TimedText. Applications
378 * by a Rect object.
433 Object object = null;
438 object = mStyleList;
443 object = mFontList;
448 object = mHighlightPosList;
453 object = mKaraokeList;
458 object = mHyperTextList;
464 object
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_FileObserver.cpp40 static jint android_os_fileobserver_init(JNIEnv* env, jobject object) argument
53 static void android_os_fileobserver_observe(JNIEnv* env, jobject object, jint fd) argument
86 env->CallVoidMethod(object, method_onEvent, event->wd, event->mask, path);
105 static jint android_os_fileobserver_startWatching(JNIEnv* env, jobject object, jint fd, jstring pathString, jint mask) argument
125 static void android_os_fileobserver_stopWatching(JNIEnv* env, jobject object, jint fd, jint wfd) argument
H A Dandroid_net_LocalSocketImpl.cpp53 socket_create (JNIEnv *env, jobject object, jboolean stream) argument
71 socket_connect_local(JNIEnv *env, jobject object, argument
107 socket_bind_local (JNIEnv *env, jobject object, jobject fileDescriptor, argument
139 socket_listen (JNIEnv *env, jobject object, jobject fileDescriptor, int backlog) argument
163 socket_accept (JNIEnv *env, jobject object, jobject fileDescriptor, jobject s) argument
204 socket_shutdown (JNIEnv *env, jobject object, jobject fileDescriptor, argument
259 socket_getOption(JNIEnv *env, jobject object, jobject fileDescriptor, int optID) argument
307 JNIEnv *env, jobject object, jobject fileDescriptor, int optID,
375 static jint socket_available (JNIEnv *env, jobject object, argument
424 static void socket_close (JNIEnv *env, jobject object, jobjec argument
306 socket_setOption( JNIEnv *env, jobject object, jobject fileDescriptor, int optID, jint boolValue, jint intValue) argument
575 socket_write_all(JNIEnv *env, jobject object, int fd, void *buf, size_t len) argument
655 socket_read(JNIEnv *env, jobject object, jobject fileDescriptor) argument
688 socket_readba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
733 socket_write(JNIEnv *env, jobject object, jint b, jobject fileDescriptor) argument
755 socket_writeba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
793 socket_get_peer_credentials(JNIEnv *env, jobject object, jobject fileDescriptor) argument
[all...]
H A Dandroid_os_Parcel.cpp252 static void android_os_Parcel_writeStrongBinder(JNIEnv* env, jclass clazz, jint nativePtr, jobject object) argument
256 const status_t err = parcel->writeStrongBinder(ibinderForJavaObject(env, object));
263 static void android_os_Parcel_writeFileDescriptor(JNIEnv* env, jclass clazz, jint nativePtr, jobject object) argument
268 parcel->writeDupFileDescriptor(jniGetFDFromFileDescriptor(env, object));
415 jobject object = jniCreateFileDescriptor(env, fd); local
416 if (object == NULL) {
419 return object;
439 jobject object = jniCreateFileDescriptor(env, fd); local
440 if (object == NULL) {
443 return object;
446 android_os_Parcel_closeFileDescriptor(JNIEnv* env, jclass clazz, jobject object) argument
460 android_os_Parcel_clearFileDescriptor(JNIEnv* env, jclass clazz, jobject object) argument
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DEffect.java184 public boolean equals(Object object) { argument
185 if (!(object instanceof Effect)) {
188 return mUniqueId.equals(((Effect)object).mUniqueId);
H A DOverlay.java208 public boolean equals(Object object) { argument
209 if (!(object instanceof Overlay)) {
212 return mUniqueId.equals(((Overlay)object).mUniqueId);
/frameworks/base/location/java/android/location/
H A DCountry.java64 * Time that this object was created (which we assume to be the time that the source was
129 * Returns the time that this object was created (which we assume to be the time that the source
157 * Returns true if this {@link Country} is equivalent to the given object. This ignores
162 public boolean equals(Object object) { argument
163 if (object == this) {
166 if (object instanceof Country) {
167 Country c = (Country) object;
187 * Compare the specified country to this country object ignoring the source
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java39 * <p>However the TextView is referenced, it will be filled with the toString() of each object in
170 * Adds the specified object at the end of the array.
172 * @param object The object to add at the end of the array.
174 public void add(T object) { argument
177 mOriginalValues.add(object);
179 mObjects.add(object);
218 * Inserts the specified object at the specified index in the array.
220 * @param object The object t
223 insert(T object, int index) argument
239 remove(T object) argument
[all...]
/frameworks/native/libs/binder/
H A DProcessState.cpp84 void ProcessState::setContextObject(const sp<IBinder>& object) argument
86 setContextObject(object, String16("default"));
94 void ProcessState::setContextObject(const sp<IBinder>& object, const String16& name) argument
97 mContexts.add(name, object);
103 sp<IBinder> object(
107 //printf("Getting context object %s for %p\n", String8(name).string(), caller.get());
109 if (object != NULL) return object;
126 object = reply.readStrongBinder();
132 if (object !
[all...]
H A DBpBinder.cpp44 const void* objectID, void* object, void* cleanupCookie,
48 e.object = object;
53 ALOGE("Trying to attach object ID %p to binder ObjectManager %p with object %p, but object ID already in use",
54 objectID, this, object);
65 return mObjects.valueAt(i).object;
80 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie);
123 // we're returning a reference to a non-static object her
43 attach( const void* objectID, void* object, void* cleanupCookie, IBinder::object_cleanup_func func) argument
286 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java52 break; // an animator can only be attached to one object
57 public static Tweener to(Object object, long duration, Object... vars) { argument
99 Tweener tween = sTweens.get(object);
102 anim = ObjectAnimator.ofPropertyValuesHolder(object,
105 sTweens.put(object, tween);
108 anim = sTweens.get(object).animator;
109 replace(props, object); // Cancel all animators for given object
132 Tweener from(Object object, long duration, Object... vars) { argument
134 // toVars[v] = object[
[all...]
/frameworks/base/services/java/com/android/server/power/
H A DDisplayPowerState.java101 public void setValue(DisplayPowerState object, float value) {
102 object.setElectronBeamLevel(value);
106 public Float get(DisplayPowerState object) {
107 return object.getElectronBeamLevel();
114 public void setValue(DisplayPowerState object, int value) {
115 object.setScreenBrightness(value);
119 public Integer get(DisplayPowerState object) {
120 return object.getScreenBrightness();
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
H A DJavaBridgeTestBase.java81 // Sets up the WebView and injects the supplied object. Intended to be called from setUp().
82 protected void setUpWebView(final Object object, final String name) throws Exception { argument
87 // loading so that the Java object is injected.
93 webView.addJavascriptInterface(object, name);
/frameworks/compile/libbcc/runtime/BlocksRuntime/
H A DBlock_private.h104 BLOCK_EXPORT void _Block_object_assign(void *destAddr, const void *object, const int flags);
109 BLOCK_EXPORT void _Block_object_dispose(const void *object, const int flags);
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentStatePagerAdapter.java129 public void destroyItem(ViewGroup container, int position, Object object) { argument
130 Fragment fragment = (Fragment)object;
135 if (DEBUG) Log.v(TAG, "Removing item #" + position + ": f=" + object
136 + " v=" + ((Fragment)object).getView());
147 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
148 Fragment fragment = (Fragment)object;
172 public boolean isViewFromObject(View view, Object object) { argument
173 return ((Fragment)object).getView() == view;
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentStatePagerAdapter.java125 public void destroyItem(ViewGroup container, int position, Object object) { argument
126 Fragment fragment = (Fragment)object;
131 if (DEBUG) Log.v(TAG, "Removing item #" + position + ": f=" + object
132 + " v=" + ((Fragment)object).getView());
143 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
144 Fragment fragment = (Fragment)object;
168 public boolean isViewFromObject(View view, Object object) { argument
169 return ((Fragment)object).getView() == view;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSerializedFrame.java184 static SerializedFrame wrapObject(Object object, FrameManager frameManager) { argument
185 FrameFormat format = ObjectFormat.fromObject(object, FrameFormat.TARGET_SIMPLE);
187 result.setObjectValue(object);
254 protected void setGenericObjectValue(Object object) { argument
255 serializeObjectValue(object);
258 private final void serializeObjectValue(Object object) { argument
261 mObjectOut.writeObject(object);
265 throw new RuntimeException("Could not serialize object " + object + " in "
276 throw new RuntimeException("Could not deserialize object i
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DGraphReader.java57 public void addReference(String name, Object object) { argument
58 mReferences.put(name, object);
/frameworks/ex/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java46 /** Mapping of instantiated object to row ID */
109 public void destroyItem(View container, int position, Object object) { argument
110 mObjectRowMap.remove(object);
112 super.destroyItem(container, position, object);
116 public int getItemPosition(Object object) { argument
117 final Integer rowId = mObjectRowMap.get(object);
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java45 /** Mapping of instantiated object to row ID */
110 public void destroyItem(View container, int position, Object object) { argument
111 mObjectRowMap.remove(object);
113 super.destroyItem(container, position, object);
117 public int getItemPosition(Object object) { argument
118 final Integer rowId = mObjectRowMap.get(object);
/frameworks/wilhelm/src/
H A Dsles_allinclusive.h53 // object priorities, preemption, loss of control, device configuration
108 predestroy_ok, // OK to destroy object now
123 #define INTERFACE_EXPLICIT 1 // must be requested explicitly during object creation
124 #define INTERFACE_DYNAMIC 2 // can be requested after object creation
178 // Describes how an interface is related to a given object
181 #define INTERFACE_INITIALIZED 1 ///< not requested at object creation time
182 #define INTERFACE_EXPOSED 2 ///< requested at object creation time
211 // OpenSL ES and OpenMAX AL object IDs come from different ranges, and some objects such as
212 // Engine, Output Mix, LED, and Vibra belong to both APIs, so we keep both object IDs
213 SLuint16 mSLObjectID; // OpenSL ES object I
[all...]
H A Dsles.c22 /** \brief Return true if the specified interface exists and has been initialized for this object.
24 * interface but this particular object has not had the interface exposed at object creation time
27 * entry that the object is locked for either shared or exclusive access.
52 /** \brief Map an IObject to it's "object ID" (which is really a class ID) */
57 // Note this returns the OpenSL ES object ID in preference to the OpenMAX AL if both available
68 /** \brief Acquire a strong reference to an object.
69 * Check that object has the specified "object ID" (which is really a class ID) and is in the
74 SLresult AcquireStrongRef(IObject *object, SLuint3 argument
105 ReleaseStrongRefAndUnlockExclusive(IObject *object) argument
127 ReleaseStrongRef(IObject *object) argument
[all...]
/frameworks/compile/linkloader/include/impl/
H A DELFObject.hxx36 llvm::OwningPtr<ELFObjectTy> object(new ELFObjectTy());
39 object->header.reset(ELFHeaderTy::read(AR));
40 if (!object->header) {
45 object->shtab.reset(ELFSectionHeaderTableTy::read(AR, object.get()));
46 if (!object->shtab) {
52 for (size_t i = 0; i < object->header->getSectionHeaderNum(); ++i) {
53 if ((*object->shtab)[i]->getType() == SHT_PROGBITS) {
54 object->stab.push_back(NULL);
58 ELFSectionTy::read(AR, object
[all...]
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorClasses.h41 * Java layer class/object name strings
337 * @param pObject (OUT) Java object to hold media
367 jobject object,
392 jobject object,
425 jobject object,
475 jobject object,
501 jobject object,
526 jobject object,
551 jobject object,
570 * Set version information to Java object
[all...]
/frameworks/base/tools/preload/
H A Dsorttable.js413 // grab the event object (IE uses a global event object)
457 Function.prototype.forEach = function(object, block, context) {
458 for (var key in object) {
460 block.call(context, object[key], key, object);
473 var forEach = function(object, block, context) {
474 if (object) {
476 if (object instanceof Function) {
479 } else if (object
[all...]

Completed in 326 milliseconds

12345