Searched refs:TAB (Results 1 - 25 of 50) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.h21 MCELFStreamer* createAArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB,
H A DAArch64ELFStreamer.cpp58 AArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB, argument
60 : MCELFStreamer(Context, TAB, OS, Emitter),
149 MCELFStreamer* createAArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB, argument
152 AArch64ELFStreamer *S = new AArch64ELFStreamer(Context, TAB, OS, Emitter);
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.h21 MCELFStreamer* createARMELFStreamer(MCContext &Context, MCAsmBackend &TAB,
H A DARMELFStreamer.cpp64 ARMELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS,
66 : MCELFStreamer(SK_ARMELFStreamer, Context, TAB, OS, Emitter),
465 MCELFStreamer* createARMELFStreamer(MCContext &Context, MCAsmBackend &TAB,
469 ARMELFStreamer *S = new ARMELFStreamer(Context, TAB, OS, Emitter, IsThumb);
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.h21 MipsELFStreamer(MCContext &Context, MCAsmBackend &TAB, argument
24 : MCELFStreamer(SK_MipsELFStreamer, Context, TAB, OS, Emitter) {
38 MCELFStreamer* createMipsELFStreamer(MCContext &Context, MCAsmBackend &TAB,
H A DMipsELFStreamer.cpp20 MCELFStreamer* createMipsELFStreamer(MCContext &Context, MCAsmBackend &TAB, argument
23 MipsELFStreamer *S = new MipsELFStreamer(Context, TAB, OS, Emitter,
/freebsd-10.0-release/usr.bin/colrm/
H A Dcolrm.c56 #define TAB 8 macro
113 column = (column + TAB) & ~(TAB - 1);
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCELFStreamer.h32 MCELFStreamer(StreamerKind Kind, MCContext &Context, MCAsmBackend &TAB, argument
34 : MCObjectStreamer(Kind, Context, TAB, OS, Emitter) {}
37 MCELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
39 : MCObjectStreamer(SK_ELFStreamer, Context, TAB, OS, Emitter) {}
41 MCELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
43 : MCObjectStreamer(SK_ELFStreamer, Context, TAB, OS, Emitter,
H A DMCObjectStreamer.h43 MCObjectStreamer(StreamerKind Kind, MCContext &Context, MCAsmBackend &TAB,
45 MCObjectStreamer(StreamerKind Kind, MCContext &Context, MCAsmBackend &TAB,
H A DMCStreamer.h659 /// \param TAB - If given, a target asm backend to use to show the fixup
661 /// ownership of \p TAB.
672 MCAsmBackend *TAB = 0,
678 /// Takes ownership of \p TAB and \p CE.
679 MCStreamer *createMachOStreamer(MCContext &Ctx, MCAsmBackend &TAB,
686 /// Takes ownership of \p TAB and \p CE.
688 MCAsmBackend &TAB,
694 MCStreamer *createELFStreamer(MCContext &Ctx, MCAsmBackend &TAB,
701 /// Takes ownership of \p TAB and \p CE.
702 MCStreamer *createPureStreamer(MCContext &Ctx, MCAsmBackend &TAB,
[all...]
/freebsd-10.0-release/contrib/dialog/
H A Drc.c73 #define whitespace(c) (c == ' ' || c == TAB)
H A Ddlg_keys.h152 DLG_KEYS_DATA( DLGK_FIELD_NEXT, TAB ), \
H A Dui_getc.c513 case TAB:
520 (isBeforeChr(TAB) ||
522 p = (isBeforeChr(TAB)
H A Dinputstr.c424 if (string[inx_wchars[inx]] == TAB) {
456 if (ch == TAB)
533 case TAB:
726 } else if (ch == TAB) {
H A Dinputbox.c35 DLG_KEYS_DATA( DLGK_FIELD_NEXT, TAB ), \
/freebsd-10.0-release/contrib/texinfo/info/
H A Dinfomap.h29 #define TAB '\011' macro
H A Dinfomap.c342 map[TAB].function = ea_complete;
364 map[TAB].function = ea_tab_insert;
407 map[TAB].function = info_move_to_next_xref;
463 map[TAB].function = info_move_to_prev_xref;
592 map[TAB].function = ea_complete;
619 map[TAB].function = ea_tab_insert;
662 map[TAB].function = info_move_to_next_xref;
737 map[TAB].function = info_move_to_prev_xref;
852 TAB, NUL, A_info_move_to_next_xref,
919 ESC, TAB, NU
[all...]
/freebsd-10.0-release/contrib/libreadline/
H A Dchardefs.h141 #ifndef TAB
142 #define TAB '\t' macro
H A Dkeymaps.c110 newmap[TAB].function = rl_insert;
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCObjectStreamer.cpp25 MCAsmBackend &TAB, raw_ostream &OS,
28 Assembler(new MCAssembler(Context, TAB, *Emitter_,
29 *TAB.createObjectWriter(OS), OS)),
33 MCAsmBackend &TAB, raw_ostream &OS,
24 MCObjectStreamer(StreamerKind Kind, MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, MCCodeEmitter *Emitter_) argument
32 MCObjectStreamer(StreamerKind Kind, MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, MCCodeEmitter *Emitter_, MCAssembler *_Assembler) argument
H A DMCPureStreamer.cpp30 MCPureStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
32 : MCObjectStreamer(SK_PureStreamer, Context, TAB, OS, Emitter) {}
/freebsd-10.0-release/usr.bin/column/
H A Dcolumn.c59 #define TAB 8 macro
140 maxlength = roundup(maxlength + 1, TAB);
170 while ((cnt = roundup(chcnt + 1, TAB)) <= endcol) {
198 while ((cnt = roundup(chcnt + 1, TAB)) <= endcol) {
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DTargetRegistry.h56 MCAsmBackend *TAB,
115 MCAsmBackend &TAB,
128 MCAsmBackend *TAB,
402 /// \param TAB The target assembler backend object. Takes ownership.
408 MCAsmBackend &TAB,
415 return MCObjectStreamerCtorFn(*this, TT, Ctx, TAB, _OS, _Emitter,
428 MCAsmBackend *TAB,
432 useDwarfDirectory, InstPrint, CE, TAB, ShowInst);
407 createMCObjectStreamer(StringRef TT, MCContext &Ctx, MCAsmBackend &TAB, raw_ostream &_OS, MCCodeEmitter *_Emitter, bool RelaxAll, bool NoExecStack) const argument
420 createAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS, bool isVerboseAsm, bool useLoc, bool useCFI, bool useDwarfDirectory, MCInstPrinter *InstPrint, MCCodeEmitter *CE, MCAsmBackend *TAB, bool ShowInst) const argument
/freebsd-10.0-release/usr.sbin/bsdinstall/partedit/
H A Ddiskeditor.c89 DLG_KEYS_DATA( DLGK_FIELD_NEXT, TAB ),
100 DLG_KEYS_DATA( DLGK_FIELD_NEXT, TAB ),
/freebsd-10.0-release/usr.bin/col/
H A Dcol.c58 #define TAB '\t' /* tab */ macro
214 case TAB: /* adjust column */

Completed in 127 milliseconds

12