Searched refs:FN (Results 1 - 24 of 24) sorted by relevance

/external/mksh/src/
H A Demacsfn.h3 #define FN(cname,sname,flags) static int x_##cname(int); macro
5 #define FN(cname,sname,flags) XFUNC_##cname, macro
8 #define FN(cname,sname,flags) { x_##cname, sname, flags }, macro
12 #define F0 FN
16 FN(beg_hist, "beginning-of-history", 0)
17 FN(cls, "clear-screen", 0)
18 FN(comment, "comment", 0)
19 FN(comp_comm, "complete-command", 0)
20 FN(comp_file, "complete-file", 0)
21 FN(comp_lis
85 #undef FN macro
[all...]
H A Dsh_flags.h3 #define FN(sname,cname,ochar,flags) /* nothing */ macro
5 #define FN(sname,cname,ochar,flags) cname, macro
8 #define FN(sname,cname,ochar,flags) { sname, ochar, flags }, macro
12 #define F0 FN
26 FN("bgnice", FBGNICE, 0, OF_ANY)
30 FN("braceexpand", FBRACEEXPAND, 0, OF_ANY)
33 FN("emacs", FEMACS, 0, OF_ANY)
36 FN("errexit", FERREXIT, 'e', OF_ANY)
39 FN("gmacs", FGMACS, 0, OF_ANY)
42 FN("ignoreeo
141 #undef FN macro
[all...]
H A Dvar_spec.h3 #define FN(name) /* nothing */ macro
5 #define FN(name) V_##name, macro
9 #define FN(name) #name, macro
13 #define F0 FN
16 /* NOTE: F0 are skipped for the ITEMS array, only FN generate names */
22 FN(COLUMNS)
24 FN(HISTFILE)
26 FN(HISTSIZE)
27 FN(IFS)
28 FN(LINEN
37 #undef FN macro
[all...]
/external/clang/test/Preprocessor/
H A Dinclude-directive2.c14 #define FN limits.h> macro
15 #include <FN
/external/emma/
H A Dtest.sh79 FN:5,SubBunny::addOne (int): int
81 FN:12,SubBunny::identity (int): boolean
83 FN:3,SubBunny::SubBunny (): void
91 FN:23,Bunny::dontAddOne (int): int
93 FN:27,Bunny::identity (int): boolean
95 FN:16,Bunny::addOne (int): int
97 FN:5,Bunny::Bunny (): void
99 FN:31,Bunny::main (String []): void
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp56 const std::string &FN,
59 if (!Filename.set(FN)) {
60 errs() << "Invalid file name: '" << FN << "'\n";
55 LoadFile(const char *argv0, const std::string &FN, LLVMContext& Context) argument
/external/llvm/lib/Linker/
H A DLinker.cpp93 // LoadObject - Read in and parse the bitcode file named by FN and return the
97 Linker::LoadObject(const sys::Path &FN) { argument
102 if (error_code ec = MemoryBuffer::getFileOrSTDIN(FN.c_str(), Buffer))
103 ParseErrorMessage = "Error reading file '" + FN.str() + "'" + ": "
110 Error = "Bitcode file '" + FN.str() + "' could not be loaded";
/external/llvm/include/llvm/
H A DLinker.h282 /// Read in and parse the bitcode file named by FN and return the
284 std::auto_ptr<Module> LoadObject(const sys::Path& FN);
/external/opencv/cvaux/include/
H A Dcvvidsurv.hpp274 char* FN = NULL; local
280 FN = N;
285 FN = strcat(tmp,N);
288 if(!IsParam(FN))
292 AddParam(FN,(char**)NULL);
296 AddParam(FN);
302 SetParamStr(FN,val);
307 SetParam(FN,val);
309 CommentParam(FN, pM->GetParamComment(N));
/external/llvm/include/llvm/Support/
H A DSourceMgr.h185 SMDiagnostic(const SourceMgr &sm, SMLoc L, const std::string &FN,
/external/clang/include/clang/Basic/
H A DSourceLocation.h366 PresumedLoc(const char *FN, unsigned Ln, unsigned Co, SourceLocation IL) argument
367 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
/external/llvm/lib/Support/
H A DSourceMgr.cpp234 SMDiagnostic::SMDiagnostic(const SourceMgr &sm, SMLoc L, const std::string &FN, argument
239 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
/external/expat/
H A DMakefile88 for FN in $(APIHEADER) ; do $(INSTALL_DATA) $$FN $(DESTDIR)$(includedir) ; done
H A DMakefile.in88 for FN in $(APIHEADER) ; do $(INSTALL_DATA) $$FN $(DESTDIR)$(includedir) ; done
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp972 SmallString<128> FN; local
974 FN += PLoc.getFilename();
975 Lexer::Stringify(FN);
976 OS << '"' << FN.str() << '"';
/external/llvm/include/llvm/TableGen/
H A DRecord.h1150 FieldInit(Init *R, const std::string &FN) argument
1151 : TypedInit(R->getFieldType(FN)), Rec(R), FieldName(FN) {
1159 static FieldInit *get(Init *R, const std::string &FN);
1160 static FieldInit *get(Init *R, const Init *FN);
/external/qemu/android/
H A Dhw-events.h365 KEY_CODE(FN ,0x1d0) \
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp589 StringRef FN = DIUnit.getFilename(); local
591 unsigned ID = GetOrCreateSourceID(FN, CompilationDir);
598 NewCU->addString(Die, dwarf::DW_AT_name, FN);
H A DDwarfCompileUnit.cpp226 StringRef FN = NS.getFilename();
228 unsigned FileID = DD->GetOrCreateSourceID(FN, NS.getDirectory());
/external/llvm/lib/TableGen/
H A DRecord.cpp1472 FieldInit *FieldInit::get(Init *R, const std::string &FN) { argument
1477 Key TheKey(std::make_pair(R, FN));
1480 if (!I) I = new FieldInit(R, FN);
/external/clang/include/clang/AST/
H A DExpr.h2034 enum { FN=0, PREARGS_START=1 }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::CallExpr::__anon3281
2068 const Expr *getCallee() const { return cast<Expr>(SubExprs[FN]); }
2069 Expr *getCallee() { return cast<Expr>(SubExprs[FN]); }
2070 void setCallee(Expr *F) { SubExprs[FN] = F; }
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas1612 FN: Integer;
3153 FN := Length(AInput);
3154 if (FN > 0) then
3156 GetMem(FData,FN * SizeOf(Char));
3157 Move(AInput[1],FData^,FN * SizeOf(Char));
3163 if (FP < FN) then
3182 FN := ANumberOfActualCharsInArray;
3233 if ((FP + I - 1) >= FN) then
3332 Result := FN;
3382 FN
[all...]
H A DAntlr.Runtime.Tree.pas1677 FN: Integer;
3862 if (FP > FN) then
3872 FN := Length(FPattern);
/external/clang/lib/AST/
H A DExpr.cpp936 SubExprs[FN] = fn;
964 SubExprs[FN] = fn;

Completed in 456 milliseconds