/freebsd/contrib/llvm-project/clang/lib/Edit/ |
H A D | RewriteObjCFoundationAPI.cpp | 60 const NSAPI &NS, Commit &commit) { in rewriteObjCRedundantCallWithLiteral() argument 62 if (!checkForLiteralCreation(Msg, II, NS.getASTContext().getLangOpts())) in rewriteObjCRedundantCallWithLiteral() 71 NS.getNSClassId(NSAPI::ClassId_NSString) == II && in rewriteObjCRedundantCallWithLiteral() 72 (NS.getNSStringSelector(NSAPI::NSStr_stringWithString) == Sel || in rewriteObjCRedundantCallWithLiteral() 73 NS.getNSStringSelector(NSAPI::NSStr_initWithString) == Sel)) || in rewriteObjCRedundantCallWithLiteral() 76 NS.getNSClassId(NSAPI::ClassId_NSArray) == II && in rewriteObjCRedundantCallWithLiteral() 77 (NS.getNSArraySelector(NSAPI::NSArr_arrayWithArray) == Sel || in rewriteObjCRedundantCallWithLiteral() 78 NS.getNSArraySelector(NSAPI::NSArr_initWithArray) == Sel)) || in rewriteObjCRedundantCallWithLiteral() 81 NS.getNSClassId(NSAPI::ClassId_NSDictionary) == II && in rewriteObjCRedundantCallWithLiteral() 82 (NS.getNSDictionarySelector( in rewriteObjCRedundantCallWithLiteral() [all …]
|
/freebsd/contrib/expat/lib/ |
H A D | xmltok_ns.c | 40 NS(XmlGetUtf8InternalEncoding)(void) { in NS() function 45 NS(XmlGetUtf16InternalEncoding)(void) { in NS() function 57 static const ENCODING *const NS(encodings)[] = { 65 NS(initScanProlog)(const ENCODING *enc, const char *ptr, const char *end, in NS() function 67 return initScan(NS(encodings), (const INIT_ENCODING *)enc, XML_PROLOG_STATE, in NS() 72 NS(initScanContent)(const ENCODING *enc, const char *ptr, const char *end, in NS() function 74 return initScan(NS(encodings), (const INIT_ENCODING *)enc, XML_CONTENT_STATE, in NS() 79 NS(XmlInitEncoding)(INIT_ENCODING *p, const ENCODING **encPtr, in NS() function 85 p->initEnc.scanners[XML_PROLOG_STATE] = NS(initScanProlog); in NS() 86 p->initEnc.scanners[XML_CONTENT_STATE] = NS(initScanContent); in NS() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | BytesOutputStyle.cpp | 202 BinarySubstreamRef NS = InfoS.getNamedStreamsBuffer(); in dumpNameMap() local 204 P.formatMsfStreamData("Named Stream Map", File, Layout, NS); in dumpNameMap() 232 BinarySubstreamRef NS = DbiS.getSectionContributionData(); in dumpSectionContributions() local 234 P.formatMsfStreamData("Section Contributions", File, Layout, NS); in dumpSectionContributions() 243 BinarySubstreamRef NS = DbiS.getSecMapSubstreamData(); in dumpSectionMap() local 245 P.formatMsfStreamData("Section Map", File, Layout, NS); in dumpSectionMap() 254 BinarySubstreamRef NS = DbiS.getModiSubstreamData(); in dumpModuleInfos() local 256 P.formatMsfStreamData("Module Infos", File, Layout, NS); in dumpModuleInfos() 265 BinarySubstreamRef NS = DbiS.getFileInfoSubstreamData(); in dumpFileInfo() local 267 P.formatMsfStreamData("File Info", File, Layout, NS); in dumpFileInfo() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NamedStreamMap.cpp | 26 NamedStreamMapTraits::NamedStreamMapTraits(NamedStreamMap &NS) : NS(&NS) {} 39 return NS->getString(Offset); in storageKeyToLookupKey() 43 return NS->appendStringData(S); in lookupKeyToStorageKey() 27 NamedStreamMapTraits(NamedStreamMap & NS) NamedStreamMapTraits() argument
|
H A D | PDBFileBuilder.cpp | 290 auto NS = WritableMappedBlockStream::createIndexedStream( in commit() 292 BinaryStreamWriter NSWriter(*NS); in commit() 302 auto NS = WritableMappedBlockStream::createIndexedStream( in commit() 304 BinaryStreamWriter NSW(*NS); in commit() 287 auto NS = WritableMappedBlockStream::createIndexedStream( commit() local 297 auto NS = WritableMappedBlockStream::createIndexedStream( commit() local
|
H A D | PDBFile.cpp | 368 auto NS = safelyCreateNamedStream("/names"); in getStringTable() local 369 if (!NS) in getStringTable() 370 return NS.takeError(); in getStringTable() 373 BinaryStreamReader Reader(**NS); in getStringTable() 377 StringTableStream = std::move(*NS); in getStringTable()
|
H A D | DbiModuleDescriptorBuilder.cpp | 169 auto NS = WritableMappedBlockStream::createIndexedStream( in commitSymbolStream() local 171 WritableBinaryStreamRef Ref(*NS); in commitSymbolStream()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmtAsm.cpp | 497 GCCAsmStmt *NS = in ActOnGCCAsmStmt() local 506 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) { in ActOnGCCAsmStmt() 509 return NS; in ActOnGCCAsmStmt() 519 unsigned NumOperands = NS->getNumOutputs() + NS->getNumInputs(); in ActOnGCCAsmStmt() 521 if (NS->isAsmGoto() && ConstraintIdx >= NumOperands) in ActOnGCCAsmStmt() 526 unsigned I = 0, E = NS->getNumOutputs(); in ActOnGCCAsmStmt() 571 targetDiag(NS->getOutputExpr(i)->getBeginLoc(), in ActOnGCCAsmStmt() 574 return NS; in ActOnGCCAsmStmt() 586 targetDiag(NS->getInputExpr(i)->getBeginLoc(), in ActOnGCCAsmStmt() 589 return NS; in ActOnGCCAsmStmt() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Edit/ |
H A D | Rewriters.h | 26 const NSAPI &NS, Commit &commit); 29 const NSAPI &NS, Commit &commit, 33 const NSAPI &NS, Commit &commit);
|
/freebsd/usr.sbin/route6d/misc/ |
H A D | chkrt | 15 open(NS, "/usr/bin/netstat -r -n|") || die "Can not open netstat"; 16 while (<NS>) { 23 close(NS);
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | QualTypeNames.cpp | 193 if (const auto *NS = dyn_cast<NamespaceDecl>(DC)) { in createOuterNNS() local 194 while (NS && NS->isInline()) { in createOuterNNS() 196 NS = dyn_cast<NamespaceDecl>(NS->getDeclContext()); in createOuterNNS() 198 if (NS && NS->getDeclName()) { in createOuterNNS() 199 return createNestedNameSpecifier(Ctx, NS, WithGlobalNsPrefix); in createOuterNNS()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StandardLibrary.cpp | 59 #define SYMBOL(Name, NS, Header) #NS #Name, in countSymbols() argument 97 auto AddNS = [&](llvm::StringRef NS) -> NSSymbolMap & { in initialize() argument 98 auto R = Mapping->NamespaceSymbols->try_emplace(NS, nullptr); in initialize() 145 #define SYMBOL(Name, NS, Header) \ in initialize() argument 146 {#NS #Name, static_cast<decltype(Symbol::NSLen)>(StringRef(#NS).size()), \ in initialize()
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-sysv.exp | 8 '' =NS "" 9 suffix =NS "suffixNS" 10 prefix =NS "prefixNS" 11 pre-middle-suffix =NS "pre-middle-suffixNS"
|
H A D | varmod-sysv.mk | 246 . for to in '' NS % %NS NPre% NPre%NS
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | NamedStreamMap.h | 28 NamedStreamMap *NS; member 30 explicit NamedStreamMapTraits(NamedStreamMap &NS);
|
/freebsd/contrib/opencsd/decoder/include/opencsd/ptm/ |
H A D | trc_pkt_elem_ptm.h | 74 void UpdateNS(const int NS); 148 inline void PtmTrcPacket::UpdateNS(const int NS) in UpdateNS() argument 150 context.curr_NS = NS; in UpdateNS()
|
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv3/ |
H A D | trc_pkt_elem_etmv3.h | 83 void UpdateNS(const int NS); 157 inline void EtmV3TrcPacket::UpdateNS(const int NS) in UpdateNS() argument 159 m_pkt_data.context.curr_NS = NS; in UpdateNS()
|
/freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
H A D | RustDemangle.cpp | 279 char NS = consume(); in demanglePath() local 280 if (!isLower(NS) && !isUpper(NS)) { in demanglePath() 289 if (isUpper(NS)) { in demanglePath() 292 if (NS == 'C') in demanglePath() 294 else if (NS == 'S') in demanglePath() 297 print(NS); in demanglePath()
|
/freebsd/sys/contrib/device-tree/src/arm/gemini/ |
H A D | gemini-ns2502.dts | 4 * Device Tree file for Edimax NS 2502 12 model = "Edimax NS-2502";
|
/freebsd/contrib/netbsd-tests/lib/libc/regex/ |
H A D | main.c | 62 # define NS 10 in main() macro 63 regmatch_t subs[NS]; in main() 126 err = regexec(&re, argv[optind], (size_t)NS, subs, eopts); in main() 143 for (i = 1; i < NS; i++) in main()
|
/freebsd/lib/libc/regex/grot/ |
H A D | main.c | 31 # define NS 10 in main() macro 32 regmatch_t subs[NS]; in main() 95 err = regexec(&re, argv[optind], (size_t)NS, subs, eopts); in main() 112 for (i = 1; i < NS; i++) in main()
|
/freebsd/contrib/openresolv/ |
H A D | libc.in | 154 NS="$LOCALNAMESERVERS $NAMESERVERS" 157 for n in $(uniqify $prepend_nameservers $NS $append_nameservers); do
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | secure.txt | 46 /* Neither specified: default to visible in both S and NS */ 50 secure-status = "disabled"; /* NS-only */ 51 status = "okay"; secure-status = "disabled"; /* NS-only */
|
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv4/ |
H A D | trc_pkt_elem_etmv4i.h | 148 …void setContextInfo(const bool update, const uint8_t EL = 0, const uint8_t NS = 0, const uint8_t S… 424 inline void EtmV4ITrcPacket::setContextInfo(const bool update, const uint8_t EL, const uint8_t NS, … in setContextInfo() argument 431 context.NS = NS; in setContextInfo()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
H A D | BuildTree.cpp | 993 auto *NS = new (allocator()) syntax::IdentifierNameSpecifier; in buildNameSpecifier() local 994 Builder.foldNode(NameSpecifierTokens, NS, nullptr); in buildNameSpecifier() 995 return NS; in buildNameSpecifier() 1003 auto *NS = new (allocator()) syntax::SimpleTemplateNameSpecifier; in buildNameSpecifier() local 1004 Builder.foldNode(NameSpecifierTokens, NS, nullptr); in buildNameSpecifier() 1005 return NS; in buildNameSpecifier() 1011 auto *NS = new (allocator()) syntax::DecltypeNameSpecifier; in buildNameSpecifier() local 1016 Builder.foldNode(NameSpecifierTokens, NS, nullptr); in buildNameSpecifier() 1017 return NS; in buildNameSpecifier() 1032 auto *NS = buildNameSpecifier(It); in TraverseNestedNameSpecifierLoc() local [all …]
|