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

1 2 3 4 5 6 7 8 91011

  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffHeader.pl 15 # * Neither the name of Apple Computer, Inc. ("Apple") nor the names of
182 Name: svn:mime-type
parseSvnDiffFooter.pl 16 # * Neither the name of Apple Computer, Inc. ("Apple") nor the names of
133 Name: svn:executable
325 Name: documentation
parseSvnProperty.pl 16 # * Neither the name of Apple Computer, Inc. ("Apple") nor the names of
53 name => "svn:executable",
69 name => "svn:executable",
85 name => "svn:mergeinfo",
101 name => "svn:mergeinfo",
118 name => "svn:mergeinfo",
132 Name: svn:mergeinfo
138 name => "svn:mergeinfo",
149 Name: svn:executable
154 name => "svn:executable"
    [all...]
parseDiff.pl 80 Name: svn:mime-type
116 Name: svn:mime-type
291 Name: svn:executable
332 Name: svn:executable
500 Name: svn:mime-type
502 Name: svn:executable
539 Name: svn:mime-type
541 Name: svn:executable
580 Name: svn:mime-type
622 Name: svn:mime-typ
    [all...]
  /external/llvm/lib/Target/PTX/
PTXParamManager.cpp 28 std::string Name;
29 Name = "__param_";
30 Name += utostr(ArgumentParams.size()+1);
31 Param.Name = Name;
45 std::string Name;
46 Name = "__ret_";
47 Name += utostr(ReturnParams.size()+1);
48 Param.Name = Name;
    [all...]
  /external/chromium/chrome/common/
chrome_version_info.cc 32 std::string VersionInfo::Name() const {
72 std::string VersionInfo::Name() const {
  /external/clang/include/clang/Basic/
MacroBuilder.h 27 /// Append a #define line for macro of the form "#define Name Value\n".
28 void defineMacro(const Twine &Name, const Twine &Value = "1") {
29 Out << "#define " << Name << ' ' << Value << '\n';
32 /// Append a #undef line for Name. Name should be of the form XXX
34 void undefineMacro(const Twine &Name) {
35 Out << "#undef " << Name << '\n';
  /external/clang/lib/Index/
EntityImpl.h 29 DeclarationName Name;
34 /// \brief If Name is a selector, this keeps track whether it's for an
39 EntityImpl(Entity parent, DeclarationName name, unsigned idNS,
41 : Parent(parent), Name(name), IdNS(idNS),
50 static Entity get(StringRef Name, Program &Prog, ProgramImpl &ProgImpl);
55 Profile(ID, Parent, Name, IdNS, IsObjCInstanceMethod);
58 DeclarationName Name, unsigned IdNS,
61 ID.AddPointer(Name.getAsOpaquePtr());
  /external/llvm/include/llvm/MC/
MCFixupKindInfo.h 26 /// A target specific name for the fixup kind. The names will be unique for
28 const char *Name;
  /external/v8/src/
token.h 12 // * Neither the name of Google Inc. nor the names of its
37 // same signature M(name, string, precedence), where name is the
38 // symbolic token name, string is the corresponding syntactic symbol
50 #define IGNORE_TOKEN(name, string, precedence)
183 #define T(name, string, precedence) name,
190 // Returns a string corresponding to the C++ token name
192 static const char* Name(Value tok) {
  /external/clang/include/clang/Driver/
Tool.h 28 /// The tool name (for debugging).
29 const char *Name;
31 /// The human readable name for the tool, for use in diagnostics.
38 Tool(const char *Name, const char *ShortName,
44 const char *getName() const { return Name; }
63 /// linker, then this is the final output name of the linked image.
  /external/clang/include/clang/Lex/
Pragma.h 52 /// name (e.g. "pack") and the HandlePragma method is invoked when a pragma with
60 std::string Name;
62 explicit PragmaHandler(StringRef name) : Name(name) {}
66 StringRef getName() const { return Name; }
90 /// Handlers - This is a map of the handlers in this namespace with their name
95 explicit PragmaNamespace(StringRef Name) : PragmaHandler(Name) {}
99 /// specified name. If not, return the handler for the null name if i
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 30 const std::string Name;
34 BugType(StringRef name, StringRef cat)
35 : Name(name), Category(cat), SuppressonSink(false) {}
39 StringRef getName() const { return Name; }
54 BuiltinBug(const char *name, const char *description)
55 : BugType(name, "Logic error"), desc(description) {}
57 BuiltinBug(const char *name)
58 : BugType(name, "Logic error"), desc(name) {}
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerOptInfo.h 23 StringRef Name;
28 CheckerOptInfo(StringRef name, bool enable)
29 : Name(name), Enable(enable), Claimed(false) { }
31 StringRef getName() const { return Name; }
  /external/clang/lib/AST/
Mangle.cpp 10 // Implements generic name mangling support for blocks and Objective-C.
117 llvm::SmallString<64> Name;
118 llvm::raw_svector_ostream OS(Name);
  /external/clang/lib/Rewrite/
HTMLPrint.cpp 68 const char* Name;
70 // there is no entry. Fall back to the memory buffer for a name in those
73 Name = Entry->getName();
75 Name = R.getSourceMgr().getBuffer(FID)->getBufferIdentifier();
78 html::AddHeaderFooterInternalBuiltinCSS(R, FID, Name);
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 23 std::string Name;
26 Name = GraphName;
35 ViewGraph(Graph, Name, Simple, Title);
49 std::string Name;
53 Name = GraphName;
58 std::string Filename = Name + "." + F.getNameStr() + ".dot";
  /external/llvm/lib/Target/MBlaze/
MBlazeMCInstLower.cpp 54 SmallString<256> Name;
55 raw_svector_ostream(Name) << Printer.MAI->getPrivateGlobalPrefix() << "JTI"
63 // Create a symbol for the name.
64 return Ctx.GetOrCreateSymbol(Name.str());
69 SmallString<256> Name;
70 raw_svector_ostream(Name) << Printer.MAI->getPrivateGlobalPrefix() << "CPI"
81 // Create a symbol for the name.
82 return Ctx.GetOrCreateSymbol(Name.str());
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.cpp 51 SmallString<256> Name;
52 raw_svector_ostream(Name) << Printer.MAI->getPrivateGlobalPrefix() << "JTI"
61 // Create a symbol for the name.
62 return Ctx.GetOrCreateSymbol(Name.str());
67 SmallString<256> Name;
68 raw_svector_ostream(Name) << Printer.MAI->getPrivateGlobalPrefix() << "CPI"
77 // Create a symbol for the name.
78 return Ctx.GetOrCreateSymbol(Name.str());
  /external/llvm/lib/VMCore/
LeaksContext.h 32 explicit LeakDetectorImpl(const char* const name = "") :
33 Cache(0), Name(name) { }
41 Name = n;
71 errs() << "Leaked " << Name << " objects found: " << Message << ":\n";
89 const char* Name;
  /external/mesa3d/src/mesa/program/
prog_parameter.h 57 const char *Name; /**< Null-terminated string */
105 const char * name);
108 const char * name);
prog_uniform.h 49 const char *Name; /**< Null-terminated string */
80 const char *name, GLenum target, GLuint progPos);
83 _mesa_lookup_uniform(const struct gl_uniform_list *list, const char *name);
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/
SDL_syscdrom.h 28 /* Get the name of the specified drive */
29 const char *(*Name)(int drive);
  /external/v8/src/arm/
constants-arm.cc 12 // * Neither the name of Google Inc. nor the names of its
79 const char* Registers::Name(int reg) {
104 const char* VFPRegisters::Name(int reg, bool is_double) {
110 int VFPRegisters::Number(const char* name, bool* is_double) {
112 if (strcmp(names_[i], name) == 0) {
123 // No register with the requested name found.
128 int Registers::Number(const char* name) {
131 if (strcmp(names_[i], name) == 0) {
139 if (strcmp(aliases_[i].name, name) == 0)
    [all...]
  /external/v8/src/mips/
constants-mips.cc 12 // * Neither the name of Google Inc. nor the names of its
70 const char* Registers::Name(int reg) {
81 int Registers::Number(const char* name) {
84 if (strcmp(names_[i], name) == 0) {
92 if (strcmp(aliases_[i].name, name) == 0) {
98 // No register with the reguested name found.
114 const char* FPURegisters::Name(int creg) {
125 int FPURegisters::Number(const char* name) {
128 if (strcmp(names_[i], name) == 0)
    [all...]

Completed in 493 milliseconds

1 2 3 4 5 6 7 8 91011