Searched defs:name (Results 176 - 200 of 740) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DToRGBFilter.java43 public ToRGBFilter(String name) { argument
44 super(name);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughputFilter.java33 @GenerateFieldPort(name = "period", hasDefault = true)
43 public ThroughputFilter(String name) { argument
44 super(name);
/frameworks/base/media/mca/filterpacks/native/base/
H A Dtime_util.cpp42 NamedStopWatch::NamedStopWatch(const std::string& name) argument
43 : mName(name),
/frameworks/av/media/libeffects/testlibs/
H A DAudioEqualizer.h46 // Human-readable name.
47 const char * name; member in struct:android::AudioEqualizer::PresetConfig
152 // Gets a human-readable name for a preset ID. Will return "Custom" if
/frameworks/av/media/libstagefright/omx/
H A DOMXMaster.cpp77 char name[128]; local
80 name, sizeof(name), index++)) == OMX_ErrorNone) {
81 String8 name8(name);
84 ALOGE("A component of name '%s' already exists, ignoring this one.",
122 const char *name,
130 ssize_t index = mPluginByComponentName.indexOfKey(String8(name));
138 plugin->makeComponentInstance(name, callbacks, appData, component);
166 OMX_STRING name,
180 strcpy(name, name
121 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
165 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
185 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
[all...]
H A DSoftOMXPlugin.cpp65 const char *name,
69 ALOGV("makeComponentInstance '%s'", name);
72 if (strcmp(name, kComponents[i].mName)) {
106 (*createSoftOMXComponent)(name, callbacks, appData, component);
153 OMX_STRING name,
160 strcpy(name, kComponents[index].mName);
166 const char *name,
169 if (strcmp(name, kComponents[i].mName)) {
64 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
152 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
165 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
/frameworks/base/core/java/android/accounts/
H A DChooseAccountTypeActivity.java128 String name = null;
135 name = sequence.toString();
137 name = sequence.toString();
141 Log.w(TAG, "No icon name for account type " + desc.type);
149 AuthInfo authInfo = new AuthInfo(desc, name, icon);
156 final String name; field in class:ChooseAccountTypeActivity.AuthInfo
159 AuthInfo(AuthenticatorDescription desc, String name, Drawable drawable) { argument
161 this.name = name;
197 holder.text.setText(mInfos.get(position).name);
[all...]
/frameworks/base/core/java/android/app/
H A DIntentService.java73 * @param name Used to name the worker thread, important only for debugging.
75 public IntentService(String name) { argument
77 mName = name;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthAppConfiguration.java39 * @param name Friendly name associated with the application configuration
43 BluetoothHealthAppConfiguration(String name, int dataType) { argument
44 mName = name;
53 * @param name Friendly name associated with the application configuration
59 BluetoothHealthAppConfiguration(String name, int dataType, int role, int argument
61 mName = name;
111 * Return the name of the application configuration.
113 * @return String name
[all...]
/frameworks/base/core/java/android/hardware/
H A DSerialPort.java47 public SerialPort(String name) { argument
48 mName = name;
76 * Returns the name of the serial port
78 * @return the serial port's name
/frameworks/base/core/java/android/os/
H A DServiceManagerNative.java58 String name = data.readString();
59 IBinder service = getService(name);
66 String name = data.readString();
67 IBinder service = checkService(name);
74 String name = data.readString();
77 addService(name, service, allowIsolated);
118 public IBinder getService(String name) throws RemoteException { argument
122 data.writeString(name);
130 public IBinder checkService(String name) throws RemoteException { argument
134 data.writeString(name);
142 addService(String name, IBinder service, boolean allowIsolated) argument
[all...]
H A DSystemService.java63 public static void start(String name) { argument
64 SystemProperties.set("ctl.start", name);
68 public static void stop(String name) { argument
69 SystemProperties.set("ctl.stop", name);
73 public static void restart(String name) { argument
74 SystemProperties.set("ctl.restart", name);
/frameworks/base/core/java/android/text/util/
H A DRfc822Token.java20 * This class stores an RFC 822-like name, address, and comment,
27 * Creates a new Rfc822Token with the specified name, address,
30 public Rfc822Token(String name, String address, String comment) { argument
31 mName = name;
37 * Returns the name part.
58 * Changes the name to the specified name.
60 public void setName(String name) { argument
61 mName = name;
79 * Returns the name (wit
111 quoteNameIfNecessary(String name) argument
133 quoteName(String name) argument
[all...]
/frameworks/base/core/java/android/util/
H A DAttributeSet.java56 * identifier associated with a particular XML attribute name.
67 * Returns the name of the specified attribute.
71 * @return A String containing the name of the attribute, or null if the
88 * The lookup is performed using the attribute name.
91 * @param name The name of the attribute to get the value from.
96 public String getAttributeValue(String namespace, String name); argument
109 * Return the resource ID associated with the given attribute name. This
115 * in that it returns a resource identifier for the attribute name; the
157 * identifier that identifies the name o
[all...]
H A DXmlPullAttributes.java45 public String getAttributeValue(String namespace, String name) { argument
46 return mParser.getAttributeValue(namespace, name);
/frameworks/base/core/java/android/view/
H A DContextThemeWrapper.java110 @Override public Object getSystemService(String name) { argument
111 if (LAYOUT_INFLATER_SERVICE.equals(name)) {
117 return mBase.getSystemService(name);
/frameworks/base/core/java/android/webkit/
H A DWebSyncManager.java62 protected WebSyncManager(Context context, String name) { argument
63 mThreadName = name;
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DFilePart.java71 /** Attachment's file name */
74 /** Attachment's file name as a byte array */
84 * @param name the name for this part
91 public FilePart(String name, PartSource partSource, String contentType, String charset) { argument
94 name,
109 * @param name the name for this part
112 public FilePart(String name, PartSource partSource) { argument
113 this(name, partSourc
125 FilePart(String name, File file) argument
143 FilePart(String name, File file, String contentType, String charset) argument
158 FilePart(String name, String fileName, File file) argument
177 FilePart(String name, String fileName, File file, String contentType, String charset) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/
H A DListViewTest.java106 public Object getSystemService(String name) { argument
107 if (Context.LAYOUT_INFLATER_SERVICE.equals(name)) {
108 return getInstrumentation().getTargetContext().getSystemService(name);
110 return super.getSystemService(name);
/frameworks/base/graphics/java/android/renderscript/
H A DBaseObj.java77 * setName assigns a name to an object. This object can later be looked up
78 * by this name. This name will also be retained if the object is written
81 * @param name The name to assign to the object.
83 public void setName(String name) { argument
84 if (name == null) {
88 if(name.length() < 1) {
94 "setName object already has a name.");
98 byte[] bytes = name
[all...]
/frameworks/base/location/java/android/location/
H A DLocationProvider.java43 * in the name of a LocationProvider
52 * Constructs a LocationProvider with the given name. Provider names must
55 * @throws IllegalArgumentException if name contains an illegal character
59 public LocationProvider(String name, ProviderProperties properties) { argument
60 if (name.matches(BAD_CHARS_REGEX)) {
61 throw new IllegalArgumentException("provider name contains illegal character: " + name);
63 mName = name;
68 * Returns the name of this provider.
85 public static boolean propertiesMeetCriteria(String name, ProviderPropertie argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DCertBlacklister.java57 public BlacklistObserver(String key, String name, String path, ContentResolver cr) { argument
60 mName = name;
/frameworks/base/services/java/com/android/server/pm/
H A DBasePermission.java29 final String name; field in class:BasePermission
48 name = _name;
56 return "BasePermission{" + Integer.toHexString(System.identityHashCode(this)) + " " + name
/frameworks/base/services/java/com/android/server/wm/
H A DFakeWindowImpl.java43 String name, int windowType, int layoutParamsFlags, boolean canReceiveKeys,
47 InputChannel[] channels = InputChannel.openInputChannelPair(name);
56 mApplicationHandle.name = name;
61 mWindowHandle.name = name;
41 FakeWindowImpl(WindowManagerService service, Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputApplicationHandle.cpp30 jfieldID name; member in struct:android::__anon1135
65 gInputApplicationHandleClassInfo.name));
68 mInfo->name.setTo(nameStr);
72 mInfo->name.setTo("<null>");
124 /* name, signature, funcPtr */
148 GET_FIELD_ID(gInputApplicationHandleClassInfo.name, clazz,
149 "name", "Ljava/lang/String;");

Completed in 257 milliseconds

1234567891011>>