Home
last modified time | relevance | path

Searched refs:subCmd (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DMapFile.cpp176 for (SectionCommand *subCmd : osec->commands) { in writeMapFile()
177 if (auto *isd = dyn_cast<InputSectionDescription>(subCmd)) { in writeMapFile()
193 if (auto *data = dyn_cast<ByteCommand>(subCmd)) { in writeMapFile()
200 if (auto *assign = dyn_cast<SymbolAssignment>(subCmd)) { in writeMapFile()
H A DLinkerScript.cpp287 for (SectionCommand *subCmd : cast<OutputDesc>(cmd)->osec.commands) in getSymbolAssignmentValues()
288 if (auto *assign = dyn_cast<SymbolAssignment>(subCmd)) in getSymbolAssignmentValues()
318 auto from = llvm::find_if(sectionCommands, [&](SectionCommand *subCmd) { in processInsertCommands() argument
319 return isa<OutputDesc>(subCmd) && in processInsertCommands()
320 cast<OutputDesc>(subCmd)->osec.name == name; in processInsertCommands()
329 llvm::find_if(sectionCommands, [&cmd](SectionCommand *subCmd) { in processInsertCommands() argument
330 auto *to = dyn_cast<OutputDesc>(subCmd); in processInsertCommands()
702 for (SectionCommand *subCmd : cast<OutputDesc>(cmd)->osec.commands) in processSymbolAssignments()
703 if (auto *assign = dyn_cast<SymbolAssignment>(subCmd)) in processSymbolAssignments()
H A DICF.cpp574 for (SectionCommand *subCmd : osd->osec.commands) in run()
575 if (auto *isd = dyn_cast<InputSectionDescription>(subCmd)) in run()
/freebsd-14.2/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2203 char *subCmd; in DbObjCmd() local
2210 subCmd = Tcl_GetStringFromObj( objv[2], 0 ); in DbObjCmd()
2211 if( *subCmd=='f' && strcmp(subCmd,"flush")==0 ){ in DbObjCmd()
2218 }else if( *subCmd=='s' && strcmp(subCmd,"size")==0 ){ in DbObjCmd()