Searched defs:name (Results 251 - 275 of 1033) sorted by relevance

<<11121314151617181920>>

/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.java42 public SerialPort(String name) { argument
43 mName = name;
71 * Returns the name of the serial port
73 * @return the serial port's name
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DRequestHandlerThread.java40 public RequestHandlerThread(String name, Handler.Callback callback) { argument
41 super(name, Thread.MAX_PRIORITY);
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DCloseableLock.java93 * @param name set an optional name for logging functionality
95 public CloseableLock(String name) { argument
96 mName = name;
H A DTaskDrainer.java87 * @param name an optional name used for debug logging
89 public TaskDrainer(Handler handler, DrainListener listener, String name) { argument
93 mName = 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.java61 public static void start(String name) { argument
62 SystemProperties.set("ctl.start", name);
66 public static void stop(String name) { argument
67 SystemProperties.set("ctl.stop", name);
71 public static void restart(String name) { argument
72 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.java106 @Override public Object getSystemService(String name) { argument
107 if (LAYOUT_INFLATER_SERVICE.equals(name)) {
113 return getBaseContext().getSystemService(name);
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DFilePart.java76 /** Attachment's file name */
79 /** Attachment's file name as a byte array */
89 * @param name the name for this part
96 public FilePart(String name, PartSource partSource, String contentType, String charset) { argument
99 name,
114 * @param name the name for this part
117 public FilePart(String name, PartSource partSource) { argument
118 this(name, partSourc
130 FilePart(String name, File file) argument
148 FilePart(String name, File file, String contentType, String charset) argument
163 FilePart(String name, String fileName, File file) argument
182 FilePart(String name, String fileName, File file, String contentType, String charset) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DAccountItemView.java86 public void setAccountName(String name) { argument
87 setText(mAccountName, name);
/frameworks/base/core/tests/benchmarks/src/com/android/internal/util/
H A DIndentingPrintWriterBenchmark.java100 public String name; field in class:IndentingPrintWriterBenchmark.Node
105 public static Node build(String name, Node... children) { argument
107 node.name = name;
116 pw.print(name);
/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/graphics/
H A DFontListParser.java57 public String name; field in class:FontListParser.Alias
63 public Family(String name, List<Font> fonts, String lang, String variant) { argument
64 this.name = name;
70 public String name; field in class:FontListParser.Family
107 String name = parser.getAttributeValue(null, "name");
125 return new Family(name, fonts, lang, variant);
131 alias.name = parser.getAttributeValue(null, "name");
[all...]
/frameworks/base/libs/hwui/thread/
H A DTaskManager.cpp40 String8 name; local
41 name.appendFormat("hwuiTask%d", i + 1);
42 mThreads.add(new WorkerThread(name));
/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...]
H A DSettingInjectorService.java40 * &lt;service android:name="com.example.android.injector.MyInjectorService" &gt;
42 * &lt;action android:name="android.location.SettingInjectorService" /&gt;
46 * android:name="android.location.SettingInjectorService"
61 * it clear which apps are affected by the setting, typically by including the name of the
129 * @param name used to identify your subclass in log messages
131 public SettingInjectorService(String name) { argument
132 mName = name;
/frameworks/base/media/java/android/media/
H A DMediaRouterClientState.java96 public String name; field in class:MediaRouterClientState.RouteInfo
120 name = other.name;
135 name = in.readString();
156 dest.writeString(name);
172 + ", name=" + name
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DFilterGraphEffect.java48 * @param name The name of this effect (used to create it in the EffectFactory).
50 * @param inputName The name of the input GLTextureSource filter.
51 * @param outputName The name of the output GLTextureSource filter.
54 String name,
59 super(context, name);
53 FilterGraphEffect(EffectContext context, String name, String graphString, String inputName, String outputName, Class scheduler) argument
H A DSingleFilterEffect.java41 * @param name The name of this effect (used to create it in the EffectFactory).
43 * @param inputName The name of the input image port.
44 * @param outputName The name of the output image port.
48 String name,
53 super(context, name);
47 SingleFilterEffect(EffectContext context, String name, Class filterClass, String inputName, String outputName, Object... finalParameters) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFieldPort.java32 public FieldPort(Filter filter, String name, Field field, boolean hasDefault) { argument
33 super(filter, name);
H A DInputPort.java27 public InputPort(Filter filter, String name) { argument
28 super(filter, name);
H A DOutputPort.java28 public OutputPort(Filter filter, String name) { argument
29 super(filter, name);

Completed in 425 milliseconds

<<11121314151617181920>>