| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| ScopedPrinter.h | 96 void printEnum(StringRef Label, T Value, 109 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n"; 111 startLine() << Label << ": " << hex(Value) << "\n"; 116 void printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags, 143 startLine() << Label << " [ (" << hex(Value) << ")\n"; 150 template <typename T> void printFlags(StringRef Label, T Value) { 151 startLine() << Label << " [ (" << hex(Value) << ")\n"; 163 void printNumber(StringRef Label, uint64_t Value) { 164 startLine() << Label << ": " << Value << "\n"; 167 void printNumber(StringRef Label, uint32_t Value) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| SymbolDumpDelegate.h | 24 virtual void printRelocatedField(StringRef Label, uint32_t RelocOffset, 27 virtual void printBinaryBlockWithRelocs(StringRef Label,
|
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| ByteCodeEmitter.cpp | 87 void ByteCodeEmitter::emitLabel(LabelTy Label) { 89 LabelOffsets.insert({Label, Target}); 90 auto It = LabelRelocs.find(Label); 95 /// Rewrite the operand of all jumps to this label. 104 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { 109 auto It = LabelOffsets.find(Label); 115 LabelRelocs[Label].push_back(Position); 152 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { 153 return emitJt(getOffset(Label), SourceInfo{}); 156 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { [all...] |
| ByteCodeEmitter.h | 47 /// Define a label. 48 void emitLabel(LabelTy Label); 49 /// Create a label. 63 bool jumpTrue(const LabelTy &Label); 64 bool jumpFalse(const LabelTy &Label); 65 bool jump(const LabelTy &Label); 66 bool fallthrough(const LabelTy &Label); 81 /// Index of the next available label. 87 /// Label information for linker. 89 /// Location of label relocations [all...] |
| EvalEmitter.h | 51 /// Define a label. 52 void emitLabel(LabelTy Label); 53 /// Create a label. 65 bool jumpTrue(const LabelTy &Label); 66 bool jumpFalse(const LabelTy &Label); 67 bool jump(const LabelTy &Label); 68 bool fallthrough(const LabelTy &Label); 104 /// Next label ID to generate - first label is 1. 106 /// Label being executed - 0 is the entry label [all...] |
| EvalEmitter.cpp | 45 void EvalEmitter::emitLabel(LabelTy Label) { 46 CurrentLabel = Label; 69 bool EvalEmitter::jumpTrue(const LabelTy &Label) { 72 ActiveLabel = Label; 77 bool EvalEmitter::jumpFalse(const LabelTy &Label) { 80 ActiveLabel = Label; 85 bool EvalEmitter::jump(const LabelTy &Label) { 87 CurrentLabel = ActiveLabel = Label; 91 bool EvalEmitter::fallthrough(const LabelTy &Label) { 93 ActiveLabel = Label; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| ScopedPrinter.cpp | 22 void ScopedPrinter::printBinaryImpl(StringRef Label, StringRef Str, 29 startLine() << Label; 39 startLine() << Label << ":";
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCLabel.h | 20 /// Instances of this class represent a label name in the MC file, 24 // The instance number of this Directional Local Label. 36 /// Get the current instance of this Directional Local Label. 39 /// Increment the current instance of this Directional Local Label. 49 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { 50 Label.print(OS);
|
| MCPseudoProbe.h | 67 /// uses an address from a temporary label created at the current address in the 70 MCSymbol *Label; 77 MCPseudoProbe(MCSymbol *Label, uint64_t Guid, uint64_t Index, uint64_t Type, 79 : Label(Label), Guid(Guid), Index(Index), Type(Type), 86 MCSymbol *getLabel() const { return Label; }
|
| MCCodeView.h | 32 const MCSymbol *Label = nullptr; 42 MCCVLoc(const MCSymbol *Label, unsigned functionid, unsigned fileNum, 44 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), 51 const MCSymbol *getLabel() const { return Label; } 67 void setLabel(const MCSymbol *L) { Label = L; } 165 void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId,
|
| ConstantPools.h | 33 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {} 35 MCSymbol *Label; 72 // constant pool is a vector of (label, value) pairs. When the ldr 73 // pseudo is parsed we insert a new (label, value) pair into the constant pool 74 // for the current section and add MCSymbolRefExpr to the new label as 76 // output the (label, value) pairs in each constant pool at the end of the
|
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| UsingDeclarationsSorter.cpp | 69 std::string Label; 71 UsingDeclaration(const AnnotatedLine *Line, const std::string &Label) 72 : Line(Line), Label(Label) {} 75 return compareLabels(Label, Other.Label) < 0; 79 /// Computes the label of a using declaration starting at tthe using token 89 std::string Label; 92 Label.append("typename "); 96 Label.append("::") [all...] |
| /src/sys/rump/net/lib/libnetmpls/ |
| Makefile | 7 COMMENT=Multiprotocol Label Switching (PF_MPLS)
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| MCSection.cpp | 91 void MCSection::addPendingLabel(MCSymbol *label, unsigned Subsection) { 92 PendingLabels.push_back(PendingLabel(label, Subsection)); 103 PendingLabel& Label = *It; 104 if (Label.Subsection == Subsection) { 105 Label.Sym->setFragment(F); 106 Label.Sym->setOffset(FOffset); 116 PendingLabel& Label = PendingLabels[0]; 118 this->getSubsectionInsertionPoint(Label.Subsection); 122 flushPendingLabels(F, 0, Label.Subsection);
|
| MCStreamer.cpp | 473 // Return a dummy non-null value so that label fields appear filled in when 479 MCSymbol *Label = emitCFILabel(); 481 MCCFIInstruction::cfiDefCfa(Label, Register, Offset); 490 MCSymbol *Label = emitCFILabel(); 492 MCCFIInstruction::cfiDefCfaOffset(Label, Offset); 500 MCSymbol *Label = emitCFILabel(); 502 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment); 510 MCSymbol *Label = emitCFILabel(); 512 MCCFIInstruction::createDefCfaRegister(Label, Register); 521 MCSymbol *Label = emitCFILabel() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| MipsELFStreamer.cpp | 62 MCSymbol *Label = getContext().createTempSymbol("cfi", true); 63 MCELFStreamer::emitLabel(Label); 64 return Label; 79 auto *Label = cast<MCSymbolELF>(L); 80 getAssembler().registerSymbol(*Label); 81 Label->setOther(ELF::STO_MIPS_MICROMIPS);
|
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/ |
| hello.cs | 12 using System.Windows.Forms; /* Application, Form, Label, Button */ 22 private Label label1; 23 private Label label2; 29 label1 = new Label(); 34 label2 = new Label(); 43 Label okLabel = new Label();
|
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-gnome/ |
| hello.cc | 30 Gtk::Label *label1; 32 Gtk::Label *label2; 51 label1 = new Gtk::Label (_("Hello, world!")); 56 label2 = new Gtk::Label (g_strdup_printf (_("This program is running as process number %d."), getpid ()));
|
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/ |
| Hello.java | 24 Label label1 = new Label(GettextResource.gettext(catalog,"Hello, world!")); 25 Label label2 = 26 new Label(
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| ErlangGCPrinter.cpp | 84 MCSymbol *Label = P.Label; 85 AP.emitLabelPlusOffset(Label /*Hi*/, 0 /*Offset*/, 4 /*Size*/);
|
| AsmPrinterDwarf.cpp | 158 void AsmPrinter::emitDwarfSymbolReference(const MCSymbol *Label, 165 OutStreamer->EmitCOFFSecRel32(Label, /*Offset=*/0); 171 OutStreamer->emitSymbolValue(Label, getDwarfOffsetByteSize()); 176 // Otherwise, emit it as a label difference from the start of the section. 177 emitLabelDifference(Label, Label->getSection().getBeginSymbol(), 192 void AsmPrinter::emitDwarfOffset(const MCSymbol *Label, uint64_t Offset) const { 193 emitLabelPlusOffset(Label, Offset, getDwarfOffsetByteSize());
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/ |
| PDBSymbolExe.h | 38 void dumpChildren(raw_ostream &OS, StringRef Label, PDB_SymType ChildType,
|
| PDBSymbolLabel.h | 1 //===- PDBSymbolLabel.h - label info ----------------------------*- C++ -*-===// 21 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Label)
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| X86WinCOFFTargetStreamer.cpp | 46 MCSymbol *Label; 161 MCSymbol *Label = getContext().createTempSymbol("cfi", true); 162 getStreamer().emitLabel(Label); 163 return Label; 192 // Claim there is a zero-length prologue to make the label math work out 207 Inst.Label = emitFPOLabel(); 218 Inst.Label = emitFPOLabel(); 229 Inst.Label = emitFPOLabel(); 247 Inst.Label = emitFPOLabel(); 286 void emitFrameDataRecord(MCStreamer &OS, MCSymbol *Label); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/ |
| AArch64WinCOFFStreamer.cpp | 75 MCSymbol *Label = S.emitCFILabel(); 76 auto Inst = WinEH::Instruction(UnwindCode, Label, Reg, Offset); 178 MCSymbol *Label = S.emitCFILabel(); 179 CurFrame->PrologEnd = Label; 180 WinEH::Instruction Inst = WinEH::Instruction(Win64EH::UOP_End, Label, -1, 0); 202 MCSymbol *Label = S.emitCFILabel(); 203 WinEH::Instruction Inst = WinEH::Instruction(Win64EH::UOP_End, Label, -1, 0);
|