/external/llvm/include/llvm/TableGen/ |
Record.h | [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
AsmPrinter.cpp | 317 // their name or something. For now, just emit them as external. 334 void AsmPrinter::getNameWithPrefix(SmallVectorImpl<char> &Name, 336 TM.getNameWithPrefix(Name, GV, *Mang); 675 StringRef Name = SP->getDisplayName(); 676 if (!Name.empty()) 677 OS << Name << ":"; [all...] |
DwarfDebug.cpp | 247 static bool isObjCClass(StringRef Name) { 248 return Name.startswith("+") || Name.startswith("-"); 251 static bool hasObjCCategory(StringRef Name) { 252 if (!isObjCClass(Name)) 255 return Name.find(") ") != StringRef::npos; 284 // If the linkage name is different than the name, go ahead and output 285 // that as well into the name table. 289 // If this is an Objective-C selector name add it to the ObjC accelerato [all...] |
/external/llvm/lib/IR/ |
AsmWriter.cpp | 322 static void PrintEscapedString(StringRef Name, raw_ostream &Out) { 323 for (unsigned i = 0, e = Name.size(); i != e; ++i) { 324 unsigned char C = Name[i]; 340 /// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either 343 static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) { 344 assert(!Name.empty() && "Cannot get empty name!"); 353 // Scan the name to see if it needs quotes first. 354 bool NeedsQuotes = isdigit(static_cast<unsigned char>(Name[0])) [all...] |
/external/llvm/lib/Linker/ |
LinkModules.cpp | 239 // Steal STy's name. 465 // If the source has no name it can't link. If it has local linkage, 466 // there is no name match-up going on. 475 // If we found a global with the same name in the dest module, but it has 486 void upgradeMismatchedGlobalArray(StringRef Name); 510 static void forceRenaming(GlobalValue *GV, StringRef Name) { 511 // If the global doesn't force its name or if it already has the right name, 513 if (GV->hasLocalLinkage() || GV->getName() == Name) 519 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) { [all...] |
/external/llvm/lib/MC/ |
ELFObjectWriter.cpp | 78 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size, 106 StringRef Name; 118 return Name < RHS.Name; 134 /// @name Symbol Table Data 266 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags, 337 void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value, 355 write(*SymtabF, name); // st_name 362 write(*SymtabF, name); // st_name 669 // create a R_PPC64_TOC relocation. However the relocation symbol name [all...] |
/external/llvm/lib/Support/ |
CommandLine.cpp | 89 // Globals for name and overview of program. Program name is not a string to 111 void addLiteralOption(Option &Opt, const char *Name) { 113 if (!OptionsMap.insert(std::make_pair(Name, &Opt)).second) { 114 errs() << ProgramName << ": CommandLine Error: Option '" << Name 158 for (auto Name : OptionNames) 159 OptionsMap.erase(StringRef(Name)); 215 void cl::AddLiteralOption(Option &O, const char *Name) { 216 GlobalParser->addLiteralOption(O, Name); 264 // If the argument before the = is a valid option name, we match. If not [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | 517 // bits initializer will resolve into VarBitInit to keep the field name and bit 778 std::string Name = LHSs->getValue(); 782 if (const RecordVal *RV = CurRec->getValue(Name)) { 785 return VarInit::get(Name, RV->getType()); 788 Init *TemplateArgName = QualifyName(*CurRec, CurMultiClass, Name, 803 Init *MCName = QualifyName(CurMultiClass->Rec, CurMultiClass, Name, "::"); 816 if (Record *D = (CurRec->getRecords()).getDef(Name)) 820 "Undefined reference:'" + Name + "'\n"); [all...] |
TGParser.cpp | 362 // If this record is anonymous, it's no problem, just generate a new name 386 /// GetNewAnonymousName - Generate a unique anonymous name that can be used as 392 /// ParseObjectName - If an object name is specified, return it. Otherwise, 418 TokError("Record name is not typed!"); 427 /// ParseClassID - Parse and resolve a reference to a class name. This returns 434 TokError("expected name for ClassID"); 446 /// ParseMultiClassID - Parse and resolve a reference to a multiclass name. 453 TokError("expected name for MultiClassID"); 730 const std::string &Name, SMLoc NameLoc, 733 if (const RecordVal *RV = CurRec->getValue(Name)) [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonISelDAGToDAG.cpp | 189 const char *Name = "Hexagon DAG->DAG Pattern Instruction Selection"; 190 PassInfo *PI = new PassInfo(Name, "hexagon-isel", [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXAsmPrinter.cpp | 565 std::string Name; 566 raw_string_ostream NameStr(Name); 579 return Name; 1306 std::string name = "u"; local [all...] |
/external/llvm/lib/Target/PowerPC/AsmParser/ |
PPCAsmParser.cpp | 176 StringRef Name = SRE->getSymbol().getName(); 178 if (Name == "lt") return 0; 179 if (Name == "gt") return 1; 180 if (Name == "eq") return 2; 181 if (Name == "so") return 3; 182 if (Name == "un") return 3; 184 if (Name == "cr0") return 0; 185 if (Name == "cr1") return 1; 186 if (Name == "cr2") return 2; 187 if (Name == "cr3") return 3 [all...] |
/external/llvm/lib/Target/R600/AsmParser/ |
AMDGPUAsmParser.cpp | 296 /// @name Auto-generated Match Functions 335 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name, 344 OperandMatchResultTy parseNamedBit(const char *Name, OperandVector &Operands, 378 const char *Name; 670 StringRef Name, 676 if (Name.endswith("_e64")) 678 else if (Name.endswith("_e32")) 682 Operands.push_back(AMDGPUOperand::CreateToken(Name, NameLoc)); 685 AMDGPUAsmParser::OperandMatchResultTy Res = parseOperand(Operands, Name); 703 while ((Res = parseOperand(Operands, Name)) != MatchOperand_NoMatch) [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyLibCalls.cpp | [all...] |
/external/llvm/unittests/IR/ |
MetadataTest.cpp | 92 MDTypeRef getBasicType(StringRef Name) { 93 return MDBasicType::get(Context, dwarf::DW_TAG_unspecified_type, Name) 114 Function *getFunction(StringRef Name) { 116 Name, FunctionType::get(Type::getVoidTy(Context), None, false))); 722 // Try to uniquify Temp. This should, despite the name in the API, give a 872 auto *N = MDEnumerator::get(Context, 7, "name"); 875 EXPECT_EQ("name", N->getName()); 876 EXPECT_EQ(N, MDEnumerator::get(Context, 7, "name")); 878 EXPECT_NE(N, MDEnumerator::get(Context, 8, "name")); [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...] |
CodeGenRegisters.cpp | 35 Name = R->getName(); 44 : TheDef(nullptr), Name(N), Namespace(Nspace), Size(-1), Offset(-1), 270 // Add I->second as a name for the subreg SRI->second, assuming it is 271 // orphaned, and the name isn't already used for something else. 274 // We found a new name for the orphaned sub-register. 321 // Ensure that every sub-register has a unique name. 427 // name I->first. 570 std::string Name; 576 if (i) Name += '_'; 577 Name += Reg->getName() [all...] |
DAGISelMatcher.h | 377 /// when patterns have the same name in them, like '(mul GPR:$in, GPR:$in)'. 402 /// when patterns have the same name in them, like '(mul GPR:$in, GPR:$in)'. 725 /// Name - The name of the node we're matching, for comment emission. 726 std::string Name; 733 const std::string &name, unsigned firstresult) 735 Name(name), FirstResult(firstresult) {} 740 const std::string getName() const { return Name; } [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
ArchiveCommandLine.cpp | 266 const UString &name, bool include, NRecursedType::EEnum type)
273 recursed = DoesNameContainWildCard(name);
279 wildcardCensor.AddItem(include, name, recursed);
347 UString name;
local 353 AddNameToCensor(wildcardCensor, name, include, commonRecursedType);
354 name.Empty();
357 name += c;
359 if (!name.IsEmpty())
384 const UString &name = strings[i];
local 387 if (name.Length() < kSomeCludePostStringMinSize) [all...] |
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
pageint.h | 23 typedef enum { EndOfData, Number, Keyword, Name, Others } SyntaxType; 147 void AddNameParam(FX_LPCSTR name, int size); 205 CPDF_Font* FindFont(const CFX_ByteString& name); 206 CPDF_ColorSpace* FindColorSpace(const CFX_ByteString& name); 207 CPDF_Pattern* FindPattern(const CFX_ByteString& name, FX_BOOL bShading); 208 CPDF_Object* FindResourceObj(FX_BSTR type, const CFX_ByteString& name);
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
lcms2_internal.h | 673 char Name[cmsMAX_PATH]; [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | 306 /* Reads an XML name into the string provided. Returns 307 a pointer just past the last character of the name, 310 static const char* ReadName( const char* p, TIXML_STRING* name, TiXmlEncoding encoding ); 479 Element: name of the element 502 Element: name of the element 772 /** An attribute is a name-value pair. Elements have an arbitrary 773 number of attributes, each with a unique name. 795 name = _name; 802 /// Construct an attribute with a name and value. 805 name = _name 884 TIXML_STRING name; member in class:TiXmlAttribute [all...] |
/external/tinyxml/ |
tinyxml.h | 259 /* Reads an XML name into the string provided. Returns 260 a pointer just past the last character of the name, 263 static const char* ReadName( const char* p, TIXML_STRING* name, TiXmlEncoding encoding ); 441 Element: name of the element 462 Element: name of the element 687 /** An attribute is a name-value pair. Elements have an arbitrary 688 number of attributes, each with a unique name. 710 name = _name; 717 /// Construct an attribute with a name and value. 720 name = _name 794 TIXML_STRING name; member in class:TiXmlAttribute [all...] |
/external/tinyxml2/ |
tinyxml2.h | 289 void Trace( const char* name ) {
291 name, maxAllocs, maxAllocs*SIZE/1024, currentAllocs, SIZE, nAllocs, blockPtrs.Size() );
461 Element: name of the element
484 element with the specified name.
494 element with the specified name.
503 /// Get the previous (left) sibling element of this node, with an opitionally supplied name.
511 /// Get the next (right) sibling element of this node, with an opitionally supplied name.
763 /** An attribute is a name-value pair. Elements have an arbitrary
764 number of attributes, each with a unique name.
773 const char* Name() const { return name.GetStr(); } ///< The name of the attribute. 829 mutable StrPair name; member in class:tinyxml2::XMLAttribute [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | 55 void StripDebugInfoOfFunction(Module* M, const char* name) { 56 if (Function* FuncStart = M->getFunction(name)) { 286 StructType *createIdentifiedStructType(LLVMContext &Context, StringRef Name); 783 StringRef Name) { 784 auto *Ret = StructType::create(Context, Name); [all...] |