/external/llvm/include/llvm/CodeGen/ |
GCStrategy.h | 80 std::string Name; 99 /// Return the name of the GC strategy. This is the value of the collector 100 /// name string specified on functions which use this strategy. 101 const std::string &getName() const { return Name; } 117 /** @name Statepoint Specific Properties */ 129 /** @name GCRoot Specific Properties 168 /// static GCRegistry::Add<CustomGC> X("custom-name",
|
MachinePassRegistry.h | 55 const char *Name; // Name of function pass. 63 , Name(N) 71 const char *getName() const { return Name; } 102 void setDefault(StringRef Name);
|
/external/llvm/include/llvm/MC/ |
MCSymbol.h | 27 /// MCSymbol - Instances of this class represent a symbol name in the MC file, 40 /// Name - The name of the symbol. The referred-to string data is actually 42 StringRef Name; 67 MCSymbol(StringRef name, bool isTemporary) 68 : Name(name), Section(nullptr), Value(nullptr), 80 /// getName - Get the symbol name. 81 StringRef getName() const { return Name; } 83 /// @name Accessor [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitstreamReader.cpp | 321 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name. 322 std::string Name; 324 Name += (char)Record[i]; 325 CurBlockInfo->Name = Name; 330 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name. 331 std::string Name; 333 Name += (char)Record[i]; 335 Name));
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
RuntimeDyldCOFFX86_64.h | 199 StringRef Name; 200 Check(Section.getName(Name)); 203 if (Name == ".xdata") {
|
/external/llvm/lib/IR/ |
GCOV.cpp | 140 << " != " << CfgChecksum << " in (" << Name << ").\n"; 144 if (!Buff.readString(Name)) 175 errs() << "Unexpected block number: " << BlockNo << " (in " << Name 204 errs() << "Unexpected block number: " << BlockNo << " (in " << Name 217 // Read the source file name. 222 << " != " << F << " (in " << Name << ").\n"; 259 << " != " << GCDAIdent << " (in " << Name << ").\n"; 268 << " != " << GCDAChecksum << " (in " << Name << ").\n"; 278 << " != " << CfgChecksum << " (in " << Name << ").\n"; 286 if (Name != GCDAName) [all...] |
/external/llvm/lib/Support/ |
GraphWriter.cpp | 67 std::string llvm::createGraphFilename(const Twine &Name, int &FD) { 70 std::error_code EC = sys::fs::createTemporaryFile(Name, "dot", FD, Filename); 107 for (auto Name : parts) { 108 if (ErrorOr<std::string> P = sys::findProgramByName(Name)) { 112 Log << " Tried '" << Name << "'\n"; 119 static const char *getProgramName(GraphProgram::Name program) { 136 GraphProgram::Name program) {
|
/external/llvm/lib/Target/Hexagon/ |
HexagonExpandPredSpillCode.cpp | 342 const char *Name = "Hexagon Expand Predicate Spill Code"; 343 PassInfo *PI = new PassInfo(Name, "hexagon-spill-pred",
|
/external/llvm/lib/Target/Mips/ |
Mips16HardFloatInfo.h | 40 const char *Name; 46 extern FuncSignature const *findFuncSignature(const char *name);
|
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
PPCAsmBackend.cpp | 88 // name offset bits flags 98 // name offset bits flags 192 StringRef Name = TheTarget.getName(); 193 if (Name == "ppc64" || Name == "ppc64le") return 8; 194 assert(Name == "ppc32" && "Unknown target name!");
|
/external/llvm/lib/Target/PowerPC/ |
PPCMCInstLower.cpp | 45 SmallString<128> Name; 54 Name += DL->getPrivateGlobalPrefix(); 56 unsigned PrefixLen = Name.size(); 60 Mang->getNameWithPrefix(Name, MO.getSymbolName()); 63 TM.getNameWithPrefix(Name, GV, *Mang); 66 unsigned OrigLen = Name.size() - PrefixLen; 68 Name += Suffix; 69 MCSymbol *Sym = Ctx.GetOrCreateSymbol(Name); 70 StringRef OrigName = StringRef(Name).substr(PrefixLen, OrigLen); 72 // If the target flags on the operand changes the name of the symbol, do tha [all...] |
/external/llvm/lib/Target/XCore/MCTargetDesc/ |
XCoreMCTargetDesc.cpp | 101 void emitCCTopData(StringRef Name) override; 102 void emitCCTopFunction(StringRef Name) override; 103 void emitCCBottomData(StringRef Name) override; 104 void emitCCBottomFunction(StringRef Name) override; 111 void XCoreTargetAsmStreamer::emitCCTopData(StringRef Name) { 112 OS << "\t.cc_top " << Name << ".data," << Name << '\n'; 115 void XCoreTargetAsmStreamer::emitCCTopFunction(StringRef Name) { 116 OS << "\t.cc_top " << Name << ".function," << Name << '\n' [all...] |
/external/llvm/lib/Transforms/Utils/ |
ModuleUtils.cpp | 84 const char *Name = CompilerUsed ? "llvm.compiler.used" : "llvm.used"; 85 GlobalVariable *GV = M.getGlobalVariable(Name);
|
/external/llvm/tools/llvm-cov/ |
CoverageFilters.h | 34 /// \brief Matches functions that contain a specific string in their name. 36 StringRef Name; 39 NameCoverageFilter(StringRef Name) : Name(Name) {} 44 /// \brief Matches functions whose name matches a certain regular expression.
|
CoverageSummaryInfo.h | 118 StringRef Name; 123 FunctionCoverageSummary(StringRef Name) : Name(Name), ExecutionCount(0) {} 125 FunctionCoverageSummary(StringRef Name, uint64_t ExecutionCount, 128 : Name(Name), ExecutionCount(ExecutionCount), 140 StringRef Name; 145 FileCoverageSummary(StringRef Name) : Name(Name) { [all...] |
/external/llvm/tools/llvm-lto/ |
llvm-lto.cpp | 222 StringRef Name = LTOMod->getSymbolName(I); 223 if (!DSOSymbolsSet.count(Name)) 228 KeptDSOSyms.push_back(Name);
|
/external/lzma/CPP/7zip/Common/ |
CreateCoder.h | 16 UString Name;
65 const UString &name, CMethodId &methodId, UInt32 &numInStreams, UInt32 &numOutStreams);
69 CMethodId methodId, UString &name);
|
/external/lzma/CPP/7zip/UI/Common/ |
DirItem.h | 16 UString Name;
31 UString GetPrefixesPath(const CIntVector &parents, int index, const UString &name) const;
58 UString Name;
|
/external/mesa3d/src/mesa/program/ |
prog_instruction.c | 145 const char *Name; 341 * Return string name for given program opcode. 347 return InstInfo[opcode].Name;
|
prog_parameter.h | 73 const char *Name; /**< Null-terminated string */ 130 gl_register_file type, const char *name, 138 const char *name, const gl_constant_value values[4]); 142 const char *name, const gl_constant_value values[4], 157 const char *name, GLuint size, GLenum datatype, 162 const char *name, GLint size, GLenum datatype, GLint attrib); 170 GLsizei nameLen, const char *name); 174 GLsizei nameLen, const char *name);
|
/external/mesa3d/src/mesa/swrast/ |
s_texfetch.c | 113 gl_format Name; 1122 /* check that the table entries are sorted by format name */ 1125 assert(texfetch_funcs[fmt].Name == fmt);
|
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/ |
SkPdfType1FontDictionary_autogen.cpp | 35 SkString SkPdfType1FontDictionary::Name(SkPdfNativeDoc* doc) { 36 SkPdfNativeObject* ret = get("Name", ""); 44 return get("Name", "") != NULL;
|
SkPdfType3FontDictionary_autogen.cpp | 35 SkString SkPdfType3FontDictionary::Name(SkPdfNativeDoc* doc) { 36 SkPdfNativeObject* ret = get("Name", ""); 44 return get("Name", "") != NULL;
|
/external/v8/src/ |
func-name-inferrer.h | 19 // FuncNameInferrer is a stateful class that is used to perform name 22 // to a variable or a property (see test-func-name-inference.cc for examples.) 25 // (assignments, declarations, object literals) we collect name strings, 27 // parsing the RHS we can infer a name for function literals that do not have 28 // a name. 33 // Returns whether we have entered name collection state. 36 // Pushes an enclosing the name of enclosing function onto names stack. 37 void PushEnclosingName(const AstRawString* name); 39 // Enters name collection state. 44 // Pushes an encountered name onto names stack when in collection state 86 const AstRawString* name; member in struct:v8::internal::FuncNameInferrer::Name [all...] |
/frameworks/compile/slang/ |
slang_rs_check_ast.cpp | 87 const char *Name; 91 Name = "float"; 94 Name = "double"; 97 Name = "char"; 100 Name = "short"; 103 Name = "int"; 106 Name = "long"; 109 Name = "uchar"; 112 Name = "ushort"; 115 Name = "uint" [all...] |