HomeSort by relevance Sort by last modified time
    Searched refs:NS (Results 76 - 100 of 223) sorted by null

1 2 34 5 6 7 8 9

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DbiModuleDescriptorBuilder.cpp 140 auto NS = WritableMappedBlockStream::createIndexedStream(
142 WritableBinaryStreamRef Ref(*NS);
PDBFileBuilder.cpp 280 auto NS = WritableMappedBlockStream::createIndexedStream(
282 BinaryStreamWriter NSWriter(*NS);
290 auto NS = WritableMappedBlockStream::createIndexedStream(
292 BinaryStreamWriter NSW(*NS);
PDBFile.cpp 378 auto NS =
380 if (!NS)
381 return NS.takeError();
384 BinaryStreamReader Reader(**NS);
388 StringTableStream = std::move(*NS);
  /external/clang/test/CXX/class.access/class.friend/
p1.cpp 198 namespace ns { namespace in namespace:test5
202 class ns::A {
207 namespace ns { namespace in namespace:test5
294 namespace NS {
303 NS::bar->foo();
307 NS::bar->foo(); // expected-error {{private member}}
  /external/llvm/lib/DebugInfo/PDB/Raw/
PDBFile.cpp 282 auto NS = MappedBlockStream::createIndexedStream(NameStreamIndex, *this);
283 if (!NS)
284 return NS.takeError();
286 StreamReader Reader(**NS);
291 StringTableStream = std::move(*NS);
  /external/clang/lib/Lex/
Pragma.cpp 762 PragmaNamespace *NS = PragmaHandlers.get();
769 NS = Existing->getIfNamespace();
770 assert(NS && "Invalid namespace, registered as a regular pragma handler!");
773 NS->RemovePragmaHandler(Handler);
776 if (NS != PragmaHandlers.get() && NS->IsEmpty()) {
777 PragmaHandlers->RemovePragmaHandler(NS);
778 delete NS;
969 explicit PragmaDiagnosticHandler(const char *NS) :
970 PragmaHandler("diagnostic"), Namespace(NS) {
    [all...]
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 315 uint32_t NS = Func.getNumValueSites(VK);
316 if (!NS)
319 OS << "# NumValueSites:\n" << NS << "\n";
320 for (uint32_t S = 0; S < NS; S++) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProfWriter.cpp 354 uint32_t NS = Func.getNumValueSites(VK);
355 if (!NS)
358 OS << "# NumValueSites:\n" << NS << "\n";
359 for (uint32_t S = 0; S < NS; S++) {
  /external/arm-neon-tests/
ref_vreinterpret.c 41 #define TEST_VREINTERPRET(Q, T1, T2, W, N, TS1, TS2, WS, NS) \
43 vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
48 #define TEST_VREINTERPRET_POLY(Q, T1, T2, W, N, TS1, TS2, WS, NS) \
50 vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
55 #define TEST_VREINTERPRET_FP(Q, T1, T2, W, N, TS1, TS2, WS, NS) \
57 vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
63 #define TEST_VREINTERPRET_FP16(Q, T1, T2, W, N, TS1, TS2, WS, NS) \
65 vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
  /external/clang/lib/StaticAnalyzer/Checkers/
LLVMConventionsChecker.cpp 40 /// namespace named by ns.
41 static bool InNamespace(const Decl *D, StringRef NS) {
46 if (!II || !II->getName().equals(NS))
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 180 void addSourceLine(DIE *Die, DINameSpace NS);
232 DIE *getOrCreateNameSpace(DINameSpace NS);
DwarfCompileUnit.cpp 182 void CompileUnit::addSourceLine(DIE *Die, DINameSpace NS) {
184 if (!NS.Verify())
187 unsigned Line = NS.getLineNumber();
190 StringRef FN = NS.getFilename();
192 unsigned FileID = DD->GetOrCreateSourceID(FN, NS.getDirectory());
895 DIE *CompileUnit::getOrCreateNameSpace(DINameSpace NS) {
896 DIE *NDie = getDIE(NS);
900 insertDIE(NS, NDie);
901 if (!NS.getName().empty())
902 addString(NDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, NS.getName())
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 247 size_t NS = detail::join_one_item_size(Separator);
249 Result.reserve(NI + (sizeof...(Items) - 1) * NS + 1);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 364 void DwarfUnit::addSourceLine(DIE &Die, const DINamespace *NS) {
365 addSourceLine(Die, NS->getLine(), NS->getFilename(), NS->getDirectory());
666 if (auto *NS = dyn_cast<DINamespace>(Context))
667 return getOrCreateNameSpace(NS);
    [all...]
DwarfUnit.h 232 void addSourceLine(DIE &Die, const DINamespace *NS);
279 DIE *getOrCreateNameSpace(const DINamespace *NS);
  /external/clang/lib/Analysis/
Consumed.cpp 487 void setInfo(const Expr *To, ConsumedState NS);
540 // If NS is not CS_None, sets the state of From to NS.
542 ConsumedState NS) {
549 if (NS != CS_None && PInfo.isPointerToValue())
550 setStateForVarOrTmp(StateMap, PInfo, NS);
567 void ConsumedStmtVisitor::setInfo(const Expr *To, ConsumedState NS) {
572 setStateForVarOrTmp(StateMap, PInfo, NS);
573 } else if (NS != CS_None) {
574 insertInfo(To, PropagationInfo(NS));
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/
xlat_tables_defs.h 130 #define NS (U(0x1) << 3)
153 /* Non-secure bit, NS. */
  /external/clang/test/CodeGenCXX/
mangle.cpp 97 namespace NS {
112 NS::ft1<int>(1);
160 namespace NS {
165 template bool NS::operator==(const ::A<char>&, const ::A<char>&);
  /external/clang/test/Modules/Inputs/submodules-merge-defs/
defs.h 60 namespace NS {
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 366 uint64_t NS = 0;
368 NS += PD.NumValueSites[Kind];
369 if (NS) {
370 ArrayType *ValuesTy = ArrayType::get(Type::getInt64Ty(Ctx), NS);
  /external/swiftshader/third_party/LLVM/tools/opt/
opt.cpp 356 DINameSpace NS(Context);
357 if (!NS.getName().empty()) {
358 getContextName(NS.getContext(), N);
359 N = N + NS.getName().str() + "::";
  /external/clang/lib/Index/
IndexingContext.cpp 206 if (auto NS = dyn_cast<NamespaceDecl>(Parent)) {
207 if (NS->isAnonymousNamespace())
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
StringExtras.h 392 size_t NS = detail::join_one_item_size(Separator);
394 Result.reserve(NI + (sizeof...(Items) - 1) * NS + 1);
  /external/u-boot/arch/arm/cpu/armv7/
nonsec_virt.S 76 orr r5, r5, #0x31 @ enable NS, AW, FW bits
85 mcr p15, 0, r5, c1, c1, 0 @ write SCR (with NS bit set)
  /external/clang/include/clang/AST/
DeclBase.h 694 bool isInIdentifierNamespace(unsigned NS) const {
695 return getIdentifierNamespace() & NS;
702 static bool isTagIdentifierNamespace(unsigned NS) {
704 return (NS & ~IDNS_TagFriend) == (IDNS_Tag | IDNS_Type);
    [all...]

Completed in 3226 milliseconds

1 2 34 5 6 7 8 9