HomeSort by relevance Sort by last modified time
    Searched refs:Name (Results 1 - 25 of 1954) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Basic/
LangOptions.cpp 20 #define LANGOPT(Name, Bits, Default, Description) Name = Default;
21 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
28 #define LANGOPT(Name, Bits, Default, Description)
29 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default;
30 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
31 Name = Default;
OpenMPKinds.cpp 25 #define OPENMP_DIRECTIVE(Name) \
26 .Case(#Name, OMPD_##Name)
36 #define OPENMP_DIRECTIVE(Name) \
37 case OMPD_##Name : return #Name;
47 #define OPENMP_CLAUSE(Name, Class) \
48 .Case(#Name, OMPC_##Name)
58 #define OPENMP_CLAUSE(Name, Class)
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
Attributes.java 28 * Attribute keys are generally instances of {@code Attributes.Name}. Values
34 * The {@code Attributes} as name/value pairs. Maps the attribute names (as
35 * {@link Attributes.Name}) of a JAR file manifest to arbitrary values. The
42 * The name part of the name/value pairs constituting an attribute as
47 * name = alphanum *headerchar
52 public static class Name {
54 public static final Name CLASS_PATH = new Name("Class-Path");
57 public static final Name MANIFEST_VERSION = new Name("Manifest-Version")
146 private final String name; field in class:Attributes.Name
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticOptions.h 39 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits;
40 #define ENUM_DIAGOPT(Name, Type, Bits, Default)
46 #define DIAGOPT(Name, Bits, Default)
47 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits;
63 #define DIAGOPT(Name, Bits, Default)
64 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
65 Type get##Name() const { return static_cast<Type>(Name); } \
    [all...]
MacroBuilder.h 29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") {
31 Out << "#define " << Name << ' ' << Value << '\n';
34 /// Append a \#undef line for Name. Name should be of the form XXX
36 void undefineMacro(const Twine &Name) {
37 Out << "#undef " << Name << '\n';
OperatorKinds.h 24 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
25 OO_##Name,
LangOptions.h 28 #define SANITIZER(NAME, ID) unsigned ID : 1;
40 #define LANGOPT(Name, Bits, Default, Description) unsigned Name : Bits;
41 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description)
48 #define LANGOPT(Name, Bits, Default, Description)
49 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
50 unsigned Name : Bits;
74 /// \brief The name of the handler function to be called when -ftrapv is
80 /// \brief The name of the current module.
89 #define LANGOPT(Name, Bits, Default, Description)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Property.h 10 UString Name;
  /external/smack/src/org/xbill/DNS/
CNAMERecord.java 6 * CNAME Record - maps an alias to its real name
24 * @param alias The name to which the CNAME alias points
27 CNAMERecord(Name name, int dclass, long ttl, Name alias) {
28 super(name, Type.CNAME, dclass, ttl, alias, "alias");
34 public Name
40 public Name
DNAMERecord.java 24 * @param alias The name to which the DNAME alias points
27 DNAMERecord(Name name, int dclass, long ttl, Name alias) {
28 super(name, Type.DNAME, dclass, ttl, alias, "alias");
34 public Name
40 public Name
MBRecord.java 27 MBRecord(Name name, int dclass, long ttl, Name mailbox) {
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
32 public Name
37 public Name
MDRecord.java 28 MDRecord(Name name, int dclass, long ttl, Name mailAgent) {
29 super(name, Type.MD, dclass, ttl, mailAgent, "mail agent");
33 public Name
38 public Name
MFRecord.java 28 MFRecord(Name name, int dclass, long ttl, Name mailAgent) {
29 super(name, Type.MF, dclass, ttl, mailAgent, "mail agent");
33 public Name
38 public Name
NSRecord.java 6 * Name Server Record - contains the name server serving the named zone
24 * @param target The name server for the given domain
27 NSRecord(Name name, int dclass, long ttl, Name target) {
28 super(name, Type.NS, dclass, ttl, target, "target");
32 public Name
37 public Name
KXRecord.java 29 KXRecord(Name name, int dclass, long ttl, int preference, Name target) {
30 super(name, Type.KX, dclass, ttl, preference, "preference",
35 public Name
46 public Name
AFSDBRecord.java 6 * AFS Data Base Record - maps a domain name to the name of an AFS cell
30 AFSDBRecord(Name name, int dclass, long ttl, int subtype, Name host) {
31 super(name, Type.AFSDB, dclass, ttl, subtype, "subtype", host, "host");
41 public Name
MGRecord.java 28 MGRecord(Name name, int dclass, long ttl, Name mailbox) {
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox");
33 public Name
MRRecord.java 24 * @param newName The new name of the mailbox specified by the domain.
28 MRRecord(Name name, int dclass, long ttl, Name newName) {
29 super(name, Type.MR, dclass, ttl, newName, "new name");
32 /** Gets the new name of the mailbox specified by the domain */
33 public Name
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_opcodes.c 36 .Name = "NOP"
40 .Name = "ILLEGAL OPCODE"
44 .Name = "ABS",
51 .Name = "ADD",
58 .Name = "ARL",
64 .Name = "CEIL",
71 .Name = "CLAMP",
78 .Name = "CMP",
85 .Name = "CND",
92 .Name = "COS"
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_opcodes.c 36 .Name = "NOP"
40 .Name = "ILLEGAL OPCODE"
44 .Name = "ABS",
51 .Name = "ADD",
58 .Name = "ARL",
64 .Name = "CEIL",
71 .Name = "CLAMP",
78 .Name = "CMP",
85 .Name = "CND",
92 .Name = "COS"
    [all...]
  /external/lzma/CPP/7zip/Compress/
BranchCoder.h 24 #define MyClassEncoderA(Name) class C ## Name: public CBranchConverter \
27 #define MyClassDecoderA(Name) class C ## Name: public CBranchConverter \
30 #define MyClassEncoderB(Name, ADD_ITEMS, ADD_INIT) class C ## Name: public CBranchConverter, public ADD_ITEMS \
33 #define MyClassDecoderB(Name, ADD_ITEMS, ADD_INIT) class C ## Name: public CBranchConverter, public ADD_ITEMS \
36 #define MyClassA(Name, id, subId) \
37 MyClassEncoderA(Name ## _Encoder) \
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesNameTest.java 26 * java.util.jar.Attributes.Name#Name(java.lang.String)
30 new Attributes.Name(null);
38 Attributes.Name attr1 = new Attributes.Name("Attr");
39 Attributes.Name attr2 = new Attributes.Name("Attr");
42 attr2 = new Attributes.Name("Attr1");
47 Attributes.Name attr1 = new Attributes.Name("Attr1")
    [all...]
  /external/clang/include/clang/Frontend/
CodeGenOptions.h 26 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits;
27 #define ENUM_CODEGENOPT(Name, Type, Bits, Default)
31 #define CODEGENOPT(Name, Bits, Default)
32 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits;
106 /// The name of the bitcode file to link before optzns.
109 /// The user provided name for the "main file", if non-empty. This is useful
110 /// in situations where the input file name does not match the original input
114 /// The name for the split debug info file that we'll break out. This is use
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerOptInfo.h 24 StringRef Name;
29 CheckerOptInfo(StringRef name, bool enable)
30 : Name(name), Enable(enable), Claimed(false) { }
32 StringRef getName() const { return Name; }
  /external/llvm/lib/ExecutionEngine/
RTDyldMemoryManager.cpp 71 void *RTDyldMemoryManager::getPointerToNamedFunction(const std::string &Name,
83 if (Name == "stat") return (void*)(intptr_t)&stat;
84 if (Name == "fstat") return (void*)(intptr_t)&fstat;
85 if (Name == "lstat") return (void*)(intptr_t)&lstat;
86 if (Name == "stat64") return (void*)(intptr_t)&stat64;
87 if (Name == "fstat64") return (void*)(intptr_t)&fstat64;
88 if (Name == "lstat64") return (void*)(intptr_t)&lstat64;
89 if (Name == "atexit") return (void*)(intptr_t)&atexit;
90 if (Name == "mknod") return (void*)(intptr_t)&mknod;
99 if (Name == "__main") return (void*)(intptr_t)&jit_noop
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011>>