HomeSort by relevance Sort by last modified time
    Searched refs:Name (Results 901 - 925 of 2465) sorted by null

<<31323334353637383940>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
sections.d 2 #name: c54x sections
7 Idx Name Size VMA + LMA + File off Algn
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
libdso-13b.d 12 Tag Type Name/Value
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
pr12718.d 0 #name: PR ld/12718
9 +\[Nr\] Name +Type +Addr +Off +Size +ES +Flg +Lk +Inf +Al
pr12921.d 0 #name: PR ld/12921
9 +\[Nr\] Name +Type +Addr +Off +Size +ES +Flg +Lk +Inf +Al
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
textrel-1.d 0 #name: MIPS textrel-1
8 Tag Type Name/Value
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
sec-12.d 16 Idx Name Size VMA LMA File off Algn
sec-6.d 20 Idx Name Size VMA LMA File off Algn
sec-9.d 15 Idx Name Size VMA LMA File off Algn
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-at3.d 0 # name: rgn-at3
16 Idx +Name +Size +VMA +LMA +File off +Algn +Flags
rgn-over8-ok.d 0 # name: rgn-over8
16 Idx +Name +Size +VMA +LMA +File off +Algn +Flags
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
pr12718.d 0 #name: PR ld/12718
9 +\[Nr\] Name +Type +Address +Off +Size +ES +Flg +Lk +Inf +Al
pr12921.d 0 #name: PR ld/12921
9 +\[Nr\] Name +Type +Address +Off +Size +ES +Flg +Lk +Inf +Al
  /external/clang/unittests/AST/
CommentParser.cpp 164 StringRef Name,
171 if (ActualName != Name)
173 << "BlockCommandComment has name \"" << ActualName.str() << "\", "
174 "expected \"" << Name.str() << "\"";
198 << "ParamCommandComment has name \"" << ActualCommandName.str() << "\", "
215 << "ParamCommandComment has no parameter name";
220 << "ParamCommandComment has parameter name \"" << ActualParamName.str()
244 << "TParamCommandComment has name \"" << ActualCommandName.str() << "\", "
249 << "TParamCommandComment has no parameter name";
254 << "TParamCommandComment has parameter name \"" << ActualParamName.str(
    [all...]
  /art/compiler/optimizing/
intrinsics.cc 39 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions) \
40 case Intrinsics::k ## Name: \
55 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions) \
56 case Intrinsics::k ## Name: \
71 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions) \
72 case Intrinsics::k ## Name: \
87 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions) \
88 case Intrinsics::k ## Name: \
609 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions) \
610 case Intrinsics::k ## Name:
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 111 static StringRef sanitizeFilenameAsIdentifier(StringRef Name,
113 if (Name.empty())
114 return Name;
116 if (!isValidIdentifier(Name)) {
118 // create a buffer with the sanitized name.
120 if (isDigit(Name[0]))
122 Buffer.reserve(Buffer.size() + Name.size());
123 for (unsigned I = 0, N = Name.size(); I != N; ++I) {
124 if (isIdentifierBody(Name[I]))
125 Buffer.push_back(Name[I])
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 196 StringRef Name = SRE->getSymbol().getName();
198 if (Name == "lt") return 0;
199 if (Name == "gt") return 1;
200 if (Name == "eq") return 2;
201 if (Name == "so") return 3;
202 if (Name == "un") return 3;
204 if (Name == "cr0") return 0;
205 if (Name == "cr1") return 1;
206 if (Name == "cr2") return 2;
207 if (Name == "cr3") return 3
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 21 // end up with a single literal token (the instruction name) and some number of
174 /// Name - The full class name, suitable for use in an enum.
175 std::string Name;
177 /// ClassName - The unadorned generic name for this class (e.g., Token).
180 /// ValueName - The name of the value this class represents; for a token this
185 /// PredicateMethod - The name of the operand method to test whether the
189 /// RenderMethod - The name of the operand method to add this operand to an
193 /// ParserMethod - The name of the operand method to do a target specific
270 // i64 and s8 are not subsets of each other, so are ordered by name
    [all...]
CodeGenSchedule.cpp 157 std::string Name = ModelKey->getName();
160 ProcModels.emplace_back(ProcModels.size(), Name, ModelKey, ItinsDef);
165 Name = Name + "Model";
166 ProcModels.emplace_back(ProcModels.size(), Name,
315 const std::string &Name = (*RI)->getName();
316 if (Name != "NoWrite" && Name != "ReadDefault")
322 /// Compute a SchedWrite name from a sequence of writes.
324 std::string Name("(");
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 370 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name;
389 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name;
424 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name;
737 // Check that referenced parameter name is in the function decl.
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 467 Out.indent(2) << "Module name: " << ModuleName << "\n";
476 #define LANGOPT(Name, Bits, Default, Description) \
477 DUMP_BOOLEAN(LangOpts.Name, Description);
478 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
480 << static_cast<unsigned>(LangOpts.get##Name()) << "\n";
481 #define VALUE_LANGOPT(Name, Bits, Default, Description) \
482 Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
483 #define BENIGN_LANGOPT(Name, Bits, Default, Description)
484 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
517 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name)
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp 1 //===--------------------- SemaLookup.cpp - Name Lookup ------------------===//
10 // This file implements name lookup for C, C++, Objective-C, and
107 // During unqualified name lookup, the names appear as if they
211 // specific kind of name lookup.
233 // as (e.g.) looking up an operator name for redeclaration.
242 // When looking for a redeclaration of a tag name, we add:
375 // However, per C++ [dcl.typedef]p5, when looking up a tag name, prefer a tag
445 // exactly one declaration shall declare a class name or enumeration name
446 // that is not a typedef name and the other declarations shall all refer t
    [all...]
  /external/llvm/lib/IR/
Type.cpp 435 void StructType::setName(StringRef Name) {
436 if (Name == getName()) return;
441 // If this struct already had a name, remove its symbol table entry. Don't
442 // delete the data yet because it may be part of the new name.
446 // If this is just removing the name, we're done.
447 if (Name.empty()) {
456 // Look up the entry for the name.
458 getContext().pImpl->NamedStructTypes.insert(std::make_pair(Name, this));
460 // While we have a name collision, try a random rename.
462 SmallString<64> TempStr(Name);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 228 std::string Name;
231 VariableExprAST(SourceLocation Loc, const std::string &Name)
232 : ExprAST(Loc), Name(Name) {}
233 const std::string &getName() const { return Name; }
236 return ExprAST::dump(out << Name, ind);
354 /// which captures its name, and its argument names (thus implicitly the number
357 std::string Name;
364 PrototypeAST(SourceLocation Loc, const std::string &Name,
367 : Name(Name), Args(std::move(Args)), IsOperator(IsOperator)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Update.cpp 54 if (!DeleteEmptyFolderAndEmptySubFolders(pathPrefix + fileInfo.Name))
82 FString Name;
157 FString name = Prefix + res; local
160 if (!altStream.StreamSpec->Create(name, false))
164 TempFiles->Paths.Add(name);
169 altStream.Name = name;
258 DeleteFileAlways(altStream.Name);
272 SplitPathToParts_2(path, Prefix, Name);
282 int dotPos = Name.ReverseFind(L'.');
1283 UString name; local
1400 AString name = GetAnsiString(fileName); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
DexJarMaker.java 36 /** indicates name of the dex file added to jar */
49 manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0");

Completed in 475 milliseconds

<<31323334353637383940>>