HomeSort by relevance Sort by last modified time
    Searched defs:Name (Results 401 - 425 of 676) sorted by null

<<11121314151617181920>>

  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
Parser.cpp     [all...]
  /external/clang/lib/Sema/
Sema.cpp 133 void Sema::addImplicitTypedef(StringRef Name, QualType T) {
134 DeclarationName DN = &Context.Idents.get(Name);
136 PushOnScopeChains(Context.buildImplicitTypedef(T, Name), TUScope);
158 // If either of the 128-bit integer types are unavailable to name lookup,
650 // This means that name lookup that occurs within the template
654 // name that was not visible at its first point of instantiation.
    [all...]
SemaExprMember.cpp 172 // if name lookup (3.4.1) resolves the name in the id-expression to a
180 // member name lookup, and it's sufficient to check that we have the naming
344 // didn't come from the same set *or* we encountered an illegal name.
426 // Also must look for a getter or setter name which uses property syntax.
501 // Check whether the declarations we found through a nested-name
506 // ... In these cases, the id-expression shall name a
509 // So it's perfectly legitimate for the nested-name specifier to name
626 // If the member name was a qualified-id, look into th
    [all...]
SemaLambda.cpp 640 // T has a name for linkage, then we infer the return type of the
    [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 235 // If this declaration injected a name into a context different from its
237 // update its visible declarations to include this name.
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 685 auto Name = hasName("i");
686 auto VD = internal::Matcher<VarDecl>(Name).dynCastTo<Decl>();
687 auto RD = internal::Matcher<RecordDecl>(Name).dynCastTo<Decl>();
734 // Checks that there was exactly one match with the name \c ExpectedName.
745 EXPECT_EQ(ExpectedName, Name);
747 Name.clear();
752 EXPECT_EQ("", Name);
760 Name = Named->getNameAsString();
763 llvm::raw_string_ostream OS(Name);
786 std::string Name;
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 37 FlattenedSpelling(const std::string &Variety, const std::string &Name,
39 V(Variety), N(Name), NS(Namespace), K(KnownToGCC) {}
42 N(Spelling.getValueAsString("Name")) {
53 const std::string &name() const { return N; } function in class:__anon7166::FlattenedSpelling
67 Ret.push_back(FlattenedSpelling("GNU", Spelling->getValueAsString("Name"),
70 "CXX11", Spelling->getValueAsString("Name"), "gnu", true));
89 static std::string WritePCHRecord(StringRef type, StringRef name) {
91 .EndsWith("Decl *", "AddDeclRef(" + std::string(name) +
94 "AddTypeSourceInfo(" + std::string(name) + ", Record);\n")
95 .Case("Expr *", "AddStmt(" + std::string(name) + ");\n"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 141 std::string Name;
144 VariableExprAST(const std::string &name) : Name(name) {}
204 /// which captures its name, and its argument names (thus implicitly the number
207 std::string Name;
212 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
214 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
221 return Name[Name.size() - 1]
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 146 std::string Name;
149 VariableExprAST(const std::string &name) : Name(name) {}
150 const std::string &getName() const { return Name; }
225 std::string Name;
230 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
232 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
239 return Name[Name.size() - 1]
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 33 cl::desc("Specify the name of an IR file to load for function definitions"),
34 cl::value_desc("input IR file name"));
143 std::string Name;
145 VariableExprAST(const std::string &name) : Name(name) {}
146 const std::string &getName() const { return Name; }
215 std::string Name;
220 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
222 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 128 std::string Name;
130 VariableExprAST(const std::string &name) : Name(name) {}
131 const std::string &getName() const { return Name; }
200 std::string Name;
205 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
207 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
214 return Name[Name.size()-1]
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 40 /// MCDwarfFile - Instances of this class represent the name of the dwarf
46 // Name - the base name of the file without its directory path.
48 std::string Name;
50 // DirIndex - the index into the list of directory names for this file name.
281 // Name of the symbol without a leading underbar, if any.
282 StringRef Name;
291 MCGenDwarfLabelEntry(StringRef name, unsigned fileNumber, unsigned lineNumber,
293 : Name(name), FileNumber(fileNumber), LineNumber(lineNumber)
    [all...]
  /external/llvm/include/llvm/Object/
ELF.h 412 /// \brief Get the name of \p Symb.
414 /// \param Symb The symbol to get the name of.
417 /// name.
555 StringRef Name = getRelocationTypeName(Type);
556 Result.append(Name.begin(), Name.end());
569 StringRef Name = getRelocationTypeName(Type1);
570 Result.append(Name.begin(), Name.end());
572 Name = getRelocationTypeName(Type2)
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 37 /// processing machinery. It is intentionally a short name to make qualified
82 /// \param Name the string name for the option to handle during parsing
86 void AddLiteralOption(Option &O, const char *Name);
154 const char *const Name;
159 OptionCategory(const char *const Name,
161 : Name(Name), Description(Description) {
164 const char *getName() const { return Name; }
283 // Prints option name followed by message. Always returns true
    [all...]
GCOV.h 265 StringRef getName() const { return Name; }
285 StringRef Name;
378 GCOVCoverage(StringRef Name)
379 : Name(Name), LogicalLines(0), LinesExec(0), Branches(0),
382 StringRef Name;
TargetRegistry.h 171 /// Name - The target name.
172 const char *Name;
264 /// @name Target Information
270 /// getName - Get the target name.
271 const char *getName() const { return Name; }
277 /// @name Feature Predicates
290 /// @name Feature Constructors
347 /// \param CPU This specifies the name of the target CPU.
526 /// \param SymbolLookUp The function to lookup a symbol name
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 754 // Add a linkage name to the DIE.
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 157 uint64_t ExecutionEngineState::RemoveMapping(StringRef Name) {
158 GlobalAddressMapTy::iterator I = GlobalAddressMap.find(Name);
187 void ExecutionEngine::addGlobalMapping(StringRef Name, uint64_t Addr) {
190 assert(!Name.empty() && "Empty GlobalMapping symbol name!");
192 DEBUG(dbgs() << "JIT: Map \'" << Name << "\' to [" << Addr << "]\n";);
193 uint64_t &CurVal = EEState.getGlobalAddressMap()[Name];
200 assert((!V.empty() || !Name.empty()) &&
202 V = Name;
229 uint64_t ExecutionEngine::updateGlobalMapping(StringRef Name, uint64_t Addr)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 44 dbgs() << "----- Contents of section " << S.Name << " " << State << " -----";
184 StringRef Name;
186 Check(I->getName(Name));
197 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name
206 GlobalSymbolTable[Name] =
345 StringRef Name;
350 Check(Section.getName(Name));
359 // slightly different name, so this won't have any effect for MachO
361 if (Name == ".eh_frame"
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 293 StringRef Name;
295 MDNodeKeyImpl(int64_t Value, StringRef Name) : Value(Value), Name(Name) {}
297 : Value(N->getValue()), Name(N->getName()) {}
300 return Value == RHS->getValue() && Name == RHS->getName();
302 unsigned getHashValue() const { return hash_combine(Value, Name); }
307 StringRef Name;
312 MDNodeKeyImpl(unsigned Tag, StringRef Name, uint64_t SizeInBits,
314 : Tag(Tag), Name(Name), SizeInBits(SizeInBits), AlignInBits(AlignInBits)
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 42 typedef SmallString<COFF::NameSize> name; typedef in namespace:__anon14887
66 name Name;
75 COFFSymbol(StringRef name);
96 std::string Name;
102 COFFSection(StringRef name);
142 COFFSymbol *createSymbol(StringRef Name);
144 COFFSection *createSection(StringRef Name);
147 object_t *createCOFFEntity(StringRef Name, list_t &List);
198 COFFSymbol::COFFSymbol(StringRef name)
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 500 // Returns hint and name fields, assuming \p Rva is pointing to a Hint/Name
503 StringRef &Name) const {
509 Name = StringRef(reinterpret_cast<const char *>(Ptr + 2));
    [all...]
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 207 SmallString<60> Name;
208 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "JTI"
210 return OutContext.GetOrCreateSymbol(Name);
216 SmallString<60> Name;
217 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "SJLJEH"
219 return OutContext.GetOrCreateSymbol(Name);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonExpandCondsets.cpp     [all...]

Completed in 490 milliseconds

<<11121314151617181920>>