Searched defs:name (Results 1 - 25 of 473) sorted by relevance

1234567891011>>

/dalvik/dx/tests/108-string-annotation/
H A DFrotz.java18 String name(); method in interface:Frotz
/dalvik/libcore/luni/src/test/java/tests/
H A DTestSuiteFactory.java26 public static TestSuite createTestSuite(String name) { argument
27 return new TestSuite(name);
/dalvik/vm/alloc/TEST/HeapBitmapTest/include/cutils/
H A Dashmem.h9 ashmem_create_region(const char *name, size_t len) argument
/dalvik/dx/src/junit/extensions/
H A DExceptionTestCase.java26 public ExceptionTestCase(String name, Class exception) { argument
27 super(name);
/dalvik/libcore/junit/src/main/java/junit/extensions/
H A DExceptionTestCase.java26 public ExceptionTestCase(String name, Class exception) { argument
27 super(name);
/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DLoggingPermission.java45 * @param name
50 * if name null or different from {@code string} control.
52 public LoggingPermission(String name, String actions) { argument
53 super(name, actions);
54 if (!"control".equals(name)) { //$NON-NLS-1$
/dalvik/libcore/luni/src/main/java/java/io/
H A DSerializablePermission.java24 * does have a name but no action list. The following table lists valid
49 * Constructs a new {@code SerializablePermission} with the specified name.
52 * the name of the new permission.
60 * Constructs a new {@code SerializablePermission} with the specified name.
63 * @param name
64 * the name of the new permission.
69 public SerializablePermission(String name, String actions) { argument
70 super(name, actions);
H A DEmulatedFieldsForDumping.java59 * Find and set the byte value of a given field named <code>name</code> in
62 * @param name
63 * A String, the name of the field to set
68 public void put(String name, byte value) { argument
69 emulatedFields.put(name, value);
73 * Find and set the char value of a given field named <code>name</code> in
76 * @param name
77 * A String, the name of the field to set
82 public void put(String name, char value) { argument
83 emulatedFields.put(name, valu
96 put(String name, double value) argument
110 put(String name, float value) argument
124 put(String name, int value) argument
138 put(String name, long value) argument
152 put(String name, Object value) argument
166 put(String name, short value) argument
180 put(String name, boolean value) argument
[all...]
H A DEmulatedFieldsForLoading.java51 * Return a boolean indicating if the field named <code>name</code> has
55 * @param name
56 * A String, the name of the field to test
66 public boolean defaulted(String name) throws IOException, argument
68 return emulatedFields.defaulted(name);
83 * Find and return the byte value of a given field named <code>name</code>
87 * @param name
88 * A String, the name of the field to find
100 public byte get(String name, byte defaultValue) throws IOException, argument
102 return emulatedFields.get(name, defaultValu
123 get(String name, char defaultValue) argument
146 get(String name, double defaultValue) argument
169 get(String name, float defaultValue) argument
192 get(String name, int defaultValue) argument
215 get(String name, long defaultValue) argument
238 get(String name, Object defaultValue) argument
261 get(String name, short defaultValue) argument
285 get(String name, boolean defaultValue) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/net/
H A DInterfaceAddress.java33 // The network interface's name. "lo" or "eth0", for example.
34 final String name; field in class:InterfaceAddress
36 InterfaceAddress(int index, String name, InetAddress address) { argument
38 this.name = name;
H A DNetPermission.java43 * Creates an instance of this class with the given name.
45 * @param name
46 * the name of the new NetPermission instance.
48 public NetPermission(String name) { argument
49 super(name);
53 * Creates an instance of this class with the given name and an action list.
56 * @param name
57 * the name of the new {@code NetPermission} instance.
61 public NetPermission(String name, String actions) { argument
62 super(name, action
[all...]
/dalvik/libcore/security/src/main/java/java/security/
H A DSecurityPermission.java30 * name.
32 * @param name
33 * the name of the permission.
35 public SecurityPermission(String name) { argument
36 super(name);
41 * {@code name} and {@code action} list. The action list is ignored - it is
44 * @param name
45 * the name of the permission.
49 public SecurityPermission(String name, String action) { argument
50 super(name, actio
[all...]
/dalvik/libcore/security/src/main/java/java/security/spec/
H A DECGenParameterSpec.java26 // Standard (or predefined) name for EC domain
28 private final String name; field in class:ECGenParameterSpec
32 * predefined name of the to-be-generated domain parameter.
34 * @param name
35 * the name of the elliptic curve domain parameter.
37 public ECGenParameterSpec(String name) { argument
38 this.name = name;
39 if (this.name == null) {
40 throw new NullPointerException(Messages.getString("security.83", "name")); //
[all...]
/dalvik/libcore/sql/src/main/java/java/sql/
H A DSQLPermission.java28 * Currently, the only permission supported has the name " {@code setLog}". The
43 * Creates a new {@code SQLPermission} object with the specified name.
45 * @param name
46 * the name to use for this {@code SQLPermission}.
48 public SQLPermission(String name) { argument
49 super(name);
53 * Creates a new {@code SQLPermission} object with the specified name.
55 * @param name
56 * is the name of the {@code SQLPermission}. Currently only
61 public SQLPermission(String name, Strin argument
[all...]
H A DDriverPropertyInfo.java40 * The name of the property.
42 public String name; field in class:DriverPropertyInfo
58 * Creates a {@code DriverPropertyInfo} instance with the supplied name and
61 * @param name
62 * The property name.
66 public DriverPropertyInfo(String name, String value) { argument
67 this.name = name;
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/
H A DSSLPermission.java38 * Creates a new {@code SSLPermission} with the specified name.
40 * @param name
41 * the permission name.
43 public SSLPermission(String name) { argument
44 super(name);
48 * Creates a new {@code SSLPermission} with the specified name.
50 * @param name
51 * the permission name.
55 public SSLPermission(String name, String actions) { argument
56 super(name, action
[all...]
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DAudioPermission.java26 public AudioPermission(String name) { argument
27 super(name);
30 public AudioPermission(String name, String actions) { argument
31 super(name, actions);
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DBaseAttribute.java23 * the attribute name but leaves the rest up to subclasses.
26 /** {@code non-null;} attribute name */
27 private final String name; field in class:BaseAttribute
32 * @param name {@code non-null;} attribute name
34 public BaseAttribute(String name) { argument
35 if (name == null) {
36 throw new NullPointerException("name == null");
39 this.name = name;
[all...]
H A DBaseLocalVariables.java33 * @param name {@code non-null;} attribute name
36 public BaseLocalVariables(String name, argument
38 super(name);
/dalvik/dx/src/com/android/dx/dex/file/
H A DMemberIdsSection.java26 * @param name {@code null-ok;} the name of this instance, for annotation
30 public MemberIdsSection(String name, DexFile file) { argument
31 super(name, file, 4);
/dalvik/libcore/auth/src/main/java/javax/security/auth/
H A DAuthPermission.java26 * <i>target name</i> of the permission specifies which methods are allowed
46 * createLoginContext.<i>name</i> instantiate a LoginContext with the
47 * specified name. The wildcard name ('*')
48 * allows to a LoginContext of any name.
63 // inits permission name.
64 private static String init(String name) { argument
66 if (name == null) {
70 if (CREATE_LOGIN_CONTEXT.equals(name)) {
73 return name;
82 AuthPermission(String name) argument
94 AuthPermission(String name, String actions) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/lang/reflect/
H A DReflectPermission.java32 * name.
35 * the name of the new permission
37 * if {@code name} is empty
39 * if {@code name} is {@code null}
47 * name and action list. The action list will be ignored.
49 * @param name
50 * the name of the new permission
54 * if {@code name} is empty
56 * if {@code name} is {@code null}
58 public ReflectPermission(String name, Strin argument
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DHistoricalNamesUtil.java166 public static String getHistoricalName(String name) { argument
167 return (!historicalNames.containsKey(name) ? name : historicalNames
168 .get(name));
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/util/
H A DMsgHelpTest.java31 public MsgHelpTest(String name) { argument
32 super(name);
/dalvik/libcore/nio/src/main/java/java/nio/
H A DByteOrder.java56 private final String name; field in class:ByteOrder
58 private ByteOrder(String name) { argument
60 this.name = name;
72 return name;

Completed in 1211 milliseconds

1234567891011>>