HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 501 - 525 of 13238) sorted by null

<<21222324252627282930>>

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
EntityReferenceImpl.java 34 private String name; field in class:EntityReferenceImpl
36 EntityReferenceImpl(DocumentImpl document, String name) {
38 this.name = name;
43 return name;
  /libcore/luni/src/test/java/libcore/java/nio/file/attribute/
UserPrincipalNotFoundExceptionTest.java 28 final String name = "foobar"; local
30 new UserPrincipalNotFoundException(name);
31 assertEquals(name, upnfException.getName());
  /libcore/ojluni/src/main/java/java/nio/
ByteOrder.java 39 private String name; field in class:ByteOrder
41 private ByteOrder(String name) {
42 this.name = name;
85 return name;
  /libcore/ojluni/src/main/java/java/nio/charset/
CodingErrorAction.java 45 private String name; field in class:CodingErrorAction
47 private CodingErrorAction(String name) {
48 this.name = name;
81 return name;
  /libcore/ojluni/src/main/java/java/nio/file/attribute/
AclFileAttributeView.java 99 * <th> Name </th>
127 * FileAttribute#name name} {@code "acl:acl"} and a {@link FileAttribute#value
144 * Returns the name of the attribute view. Attribute views of this type
145 * have the name {@code "acl"}.
148 String name(); method in interface:AclFileAttributeView
BasicFileAttributeView.java 46 * <th> Name </th>
103 * Returns the name of the attribute view. Attribute views of this type
104 * have the name {@code "basic"}.
107 String name(); method in interface:BasicFileAttributeView
FileOwnerAttributeView.java 43 * identified by the name {@code "owner"}, and the value of the attribute is
53 * Returns the name of the attribute view. Attribute views of this type
54 * have the name {@code "owner"}.
57 String name(); method in interface:FileOwnerAttributeView
PosixFileAttributeView.java 79 * <th> Name </th>
110 * FileAttribute} with {@link FileAttribute#name name} {@code "posix:permissions"}
142 * Returns the name of the attribute view. Attribute views of this type
143 * have the name {@code "posix"}.
146 String name(); method in interface:PosixFileAttributeView
UserPrincipalNotFoundException.java 42 private final String name; field in class:UserPrincipalNotFoundException
47 * @param name
48 * the principal name; may be {@code null}
50 public UserPrincipalNotFoundException(String name) {
52 this.name = name;
56 * Returns the user principal name if this exception was created with the
57 * user principal name that was not found, otherwise <tt>null</tt>.
59 * @return the user principal name or {@code null}
62 return name;
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Permission.java 36 private String name; field in class:Permission
38 public Permission(String name) {
39 this.name = name;
47 return name;
  /libcore/ojluni/src/main/java/java/sql/
DriverPropertyInfo.java 40 * name and value. The <code>description</code> and <code>choices</code>
44 * @param name the name of the property
47 public DriverPropertyInfo(String name, String value) {
48 this.name = name;
53 * The name of the property.
55 public String name; field in class:DriverPropertyInfo
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSessionBindingEvent.java 38 * event of this type. The event's <code>name</code> field is the
55 * @serial The name to which the object is being bound or unbound
57 private String name; field in class:SSLSessionBindingEvent
63 * @param name the name to which the object is being bound or unbound
66 public SSLSessionBindingEvent(SSLSession session, String name)
69 this.name = name;
73 * Returns the name to which the object is being bound, or the name
    [all...]
  /libcore/ojluni/src/main/java/jdk/net/
ExtendedSocketOptions.java 39 private final String name; field in class:ExtendedSocketOptions.ExtSocketOption
41 ExtSocketOption(String name, Class<T> type) {
42 this.name = name;
45 @Override public String name() { return name; } method in class:ExtendedSocketOptions.ExtSocketOption
47 @Override public String toString() { return name; }
  /packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/helpers/
PlayerInfo.java 24 public String name; field in class:PlayerInfo
  /packages/apps/Car/Radio/src/com/android/car/radio/storage/
Favorite.java 40 public final String name; field in class:Favorite
43 @NonNull String name) {
51 this.name = Objects.requireNonNull(name);
61 return new Program(selector, name);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/name/
DeviceNameSettingsActivity.java 17 package com.android.tv.settings.name;
25 * Activity that displays Device Name settings
DeviceNameSuggestionActivity.java 17 package com.android.tv.settings.name;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
AbstractFileFilter.java 49 * @param name the filename within the directory to check
52 public boolean accept(File dir, String name) {
53 return accept(new File(dir, name));
62 String name = getClass().getName(); local
63 int period = name.lastIndexOf('.');
64 return (period > 0 ? name.substring(period + 1) : name);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 51 /// Print out a name of an LLVM value without any prefixes.
53 /// The name is surrounded with ""'s and escaped if it has any special or
55 void printLLVMNameWithoutPrefix(raw_ostream &OS, StringRef Name);
73 static StringRef name() { return "PrintModulePass"; } function in class:llvm::PrintModulePass
90 static StringRef name() { return "PrintFunctionPass"; } function in class:llvm::PrintFunctionPass
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/InstCombine/
InstCombine.h 32 static StringRef name() { return "InstCombinePass"; } function in class:llvm::InstCombinePass
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
IRPrintingPasses.h 51 /// Print out a name of an LLVM value without any prefixes.
53 /// The name is surrounded with ""'s and escaped if it has any special or
55 void printLLVMNameWithoutPrefix(raw_ostream &OS, StringRef Name);
73 static StringRef name() { return "PrintModulePass"; } function in class:llvm::PrintModulePass
90 static StringRef name() { return "PrintFunctionPass"; } function in class:llvm::PrintFunctionPass
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/InstCombine/
InstCombine.h 32 static StringRef name() { return "InstCombinePass"; } function in class:llvm::InstCombinePass
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
IRPrintingPasses.h 51 /// Print out a name of an LLVM value without any prefixes.
53 /// The name is surrounded with ""'s and escaped if it has any special or
55 void printLLVMNameWithoutPrefix(raw_ostream &OS, StringRef Name);
73 static StringRef name() { return "PrintModulePass"; } function in class:llvm::PrintModulePass
90 static StringRef name() { return "PrintFunctionPass"; } function in class:llvm::PrintFunctionPass
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/InstCombine/
InstCombine.h 32 static StringRef name() { return "InstCombinePass"; } function in class:llvm::InstCombinePass
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
IRPrintingPasses.h 51 /// Print out a name of an LLVM value without any prefixes.
53 /// The name is surrounded with ""'s and escaped if it has any special or
55 void printLLVMNameWithoutPrefix(raw_ostream &OS, StringRef Name);
73 static StringRef name() { return "PrintModulePass"; } function in class:llvm::PrintModulePass
90 static StringRef name() { return "PrintFunctionPass"; } function in class:llvm::PrintFunctionPass

Completed in 266 milliseconds

<<21222324252627282930>>