Home
last modified time | relevance | path

Searched refs:curr_context (Results 1 – 25 of 30) sorted by relevance

12

/dports/deskutils/presage/presage-0.9.1/src/lib/core/context_tracker/
H A DcontextChangeDetector.cpp99 …ctor::context_change_helper(const std::string& prev_context, const std::string& curr_context) const in context_change_helper()
104 if (curr_context.empty()) { in context_change_helper()
117 std::string::size_type ctx_idx = curr_context.rfind(prev_context); in context_change_helper()
132 std::string remainder = curr_context.substr(ctx_idx + prev_context.size()); in context_change_helper()
139 char last_char = curr_context[ctx_idx + prev_context.size() - 1]; in context_change_helper()
206 const std::string& curr_context = past_stream; // for clarity's sake in change() local
216 std::string::size_type ctx_idx = curr_context.rfind(prev_context); in change()
231 result = curr_context.substr(ctx_idx + prev_context.size()); in change()
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/util/
H A Dmetrics.py131 curr_context = current_context()
132 if not curr_context:
139 assert isinstance(curr_context, LoggingContext)
140 parent_context = curr_context
141 self._logging_context = LoggingContext(str(curr_context), parent_context)
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/logging/
H A Dcontext.py706 curr_context = current_context()
707 if not curr_context:
713 assert isinstance(curr_context, LoggingContext)
714 parent_context = curr_context
715 prefix = str(curr_context)
946 curr_context = current_context()
947 if not curr_context:
953 assert isinstance(curr_context, LoggingContext)
954 parent_context = curr_context
957 with LoggingContext(str(curr_context), parent_context=parent_context):
/dports/security/xinetd/xinetd-2.3.15/xinetd/
H A Dchild.c512 security_context_t curr_context = NULL; in set_context_from_socket() local
522 if (getcon(&curr_context) < 0) in set_context_from_socket()
532 if (!(bcon = context_new(curr_context))) in set_context_from_socket()
560 freecon(curr_context); in set_context_from_socket()
/dports/biology/ncbi-toolkit/ncbi/algo/blast/core/
H A Daa_ungapped.c465 Int4 curr_context; in s_BlastAaWordFinder_TwoHit() local
560 curr_context = BSearchContextInfo(query_offset, query_info); in s_BlastAaWordFinder_TwoHit()
567 query_info->contexts[curr_context].query_offset) { in s_BlastAaWordFinder_TwoHit()
575 cutoffs = word_params->cutoffs + curr_context; in s_BlastAaWordFinder_TwoHit()
783 Int4 curr_context = BSearchContextInfo(query_offset, in s_BlastAaWordFinder_OneHit() local
786 curr_context; in s_BlastAaWordFinder_OneHit()
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/algo/blast/core/
H A Daa_ungapped.c465 Int4 curr_context; in s_BlastAaWordFinder_TwoHit() local
560 curr_context = BSearchContextInfo(query_offset, query_info); in s_BlastAaWordFinder_TwoHit()
567 query_info->contexts[curr_context].query_offset) { in s_BlastAaWordFinder_TwoHit()
575 cutoffs = word_params->cutoffs + curr_context; in s_BlastAaWordFinder_TwoHit()
783 Int4 curr_context = BSearchContextInfo(query_offset, in s_BlastAaWordFinder_OneHit() local
786 curr_context; in s_BlastAaWordFinder_OneHit()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/algo/blast/core/
H A Daa_ungapped.c465 Int4 curr_context; in s_BlastAaWordFinder_TwoHit() local
560 curr_context = BSearchContextInfo(query_offset, query_info); in s_BlastAaWordFinder_TwoHit()
567 query_info->contexts[curr_context].query_offset) { in s_BlastAaWordFinder_TwoHit()
575 cutoffs = word_params->cutoffs + curr_context; in s_BlastAaWordFinder_TwoHit()
783 Int4 curr_context = BSearchContextInfo(query_offset, in s_BlastAaWordFinder_OneHit() local
786 curr_context; in s_BlastAaWordFinder_OneHit()
/dports/security/pidgin-otr/pidgin-otr-4.0.2/
H A Dgtk-dialog.c2365 ConnContext *curr_context = instances->data; in otr_add_buddy_instances_top_menu() local
2367 curr_context); in otr_add_buddy_instances_top_menu()
2368 gboolean selected = (curr_context->their_instance == in otr_add_buddy_instances_top_menu()
2372 if (curr_context->m_context == curr_context && in otr_add_buddy_instances_top_menu()
2373 curr_context->msgstate == OTRL_MSGSTATE_PLAINTEXT) { in otr_add_buddy_instances_top_menu()
2379 g_hash_table_insert(conv_or_ctx_map, curr_context, in otr_add_buddy_instances_top_menu()
2382 curr_convctx->context = curr_context; in otr_add_buddy_instances_top_menu()
2393 level = otrg_plugin_context_to_trust(curr_context); in otr_add_buddy_instances_top_menu()
2406 *selected_instance != curr_context->their_instance) { in otr_add_buddy_instances_top_menu()
2411 GTK_SIGNAL_FUNC(select_menu_ctx), curr_context); in otr_add_buddy_instances_top_menu()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1026 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1040 curr_context = child_context; in GetDeclContextContainingSymbol()
1056 curr_context); in GetDeclContextContainingSymbol()
1058 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1061 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1065 return curr_context; in GetDeclContextContainingSymbol()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1031 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1045 curr_context = child_context; in GetDeclContextContainingSymbol()
1061 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1063 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1066 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1070 return curr_context; in GetDeclContextContainingSymbol()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1051 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1065 curr_context = child_context; in GetDeclContextContainingSymbol()
1081 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1083 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1086 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1090 return curr_context; in GetDeclContextContainingSymbol()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1031 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1045 curr_context = child_context; in GetDeclContextContainingSymbol()
1061 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1063 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1066 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1070 return curr_context; in GetDeclContextContainingSymbol()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1031 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1045 curr_context = child_context; in GetDeclContextContainingSymbol()
1061 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1063 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1066 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1070 return curr_context; in GetDeclContextContainingSymbol()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1051 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1065 curr_context = child_context; in GetDeclContextContainingSymbol()
1081 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1083 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1086 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1090 return curr_context; in GetDeclContextContainingSymbol()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1051 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1065 curr_context = child_context; in GetDeclContextContainingSymbol()
1081 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1083 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1086 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1090 return curr_context; in GetDeclContextContainingSymbol()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1051 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1065 curr_context = child_context; in GetDeclContextContainingSymbol()
1081 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1083 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1086 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1090 return curr_context; in GetDeclContextContainingSymbol()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1031 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl(); in GetDeclContextContainingSymbol() local
1045 curr_context = child_context; in GetDeclContextContainingSymbol()
1061 namespace_name_c_str, curr_context, OptionalClangModuleID()); in GetDeclContextContainingSymbol()
1063 m_parent_to_namespaces[curr_context].insert(namespace_decl); in GetDeclContextContainingSymbol()
1066 curr_context = namespace_decl; in GetDeclContextContainingSymbol()
1070 return curr_context; in GetDeclContextContainingSymbol()
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1051 clang::DeclContext *curr_context = m_ast.GetTranslationUnitDecl();
1065 curr_context = child_context;
1081 namespace_name_c_str, curr_context, OptionalClangModuleID());
1083 m_parent_to_namespaces[curr_context].insert(namespace_decl);
1086 curr_context = namespace_decl;
1090 return curr_context;
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/storage/
H A Ddatabase.py783 curr_context = current_context()
784 if not curr_context:
790 assert isinstance(curr_context, LoggingContext)
791 parent_context = curr_context
804 str(curr_context), parent_context=parent_context
/dports/www/firefox-esr/firefox-91.8.0/gfx/graphite2/src/
H A DPass.cpp640 const uint16 curr_context = m.slotMap().context(); in testConstraint() local
641 if (unsigned(r.sort + curr_context - r.preContext) > m.slotMap().size() in testConstraint()
642 || curr_context - r.preContext < 0) return false; in testConstraint()
644 vm::slotref * map = m.slotMap().begin() + curr_context - r.preContext; in testConstraint()
/dports/www/firefox/firefox-99.0/gfx/graphite2/src/
H A DPass.cpp640 const uint16 curr_context = m.slotMap().context(); in testConstraint() local
641 if (unsigned(r.sort + curr_context - r.preContext) > m.slotMap().size() in testConstraint()
642 || curr_context - r.preContext < 0) return false; in testConstraint()
644 vm::slotref * map = m.slotMap().begin() + curr_context - r.preContext; in testConstraint()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/graphite2/src/
H A DPass.cpp640 const uint16 curr_context = m.slotMap().context(); in testConstraint() local
641 if (unsigned(r.sort + curr_context - r.preContext) > m.slotMap().size() in testConstraint()
642 || curr_context - r.preContext < 0) return false; in testConstraint()
644 vm::slotref * map = m.slotMap().begin() + curr_context - r.preContext; in testConstraint()
/dports/graphics/graphite2/graphite2-1.3.14/src/
H A DPass.cpp640 const uint16 curr_context = m.slotMap().context(); in testConstraint() local
641 if (unsigned(r.sort + curr_context - r.preContext) > m.slotMap().size() in testConstraint()
642 || curr_context - r.preContext < 0) return false; in testConstraint()
644 vm::slotref * map = m.slotMap().begin() + curr_context - r.preContext; in testConstraint()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/graphite2/src/
H A DPass.cpp640 const uint16 curr_context = m.slotMap().context(); in testConstraint() local
641 if (unsigned(r.sort + curr_context - r.preContext) > m.slotMap().size() in testConstraint()
642 || curr_context - r.preContext < 0) return false; in testConstraint()
644 vm::slotref * map = m.slotMap().begin() + curr_context - r.preContext; in testConstraint()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/graphite2/src/
H A DPass.cpp637 const uint16 curr_context = m.slotMap().context(); in testConstraint() local
638 if (unsigned(r.sort + curr_context - r.preContext) > m.slotMap().size() in testConstraint()
639 || curr_context - r.preContext < 0) return false; in testConstraint()
641 vm::slotref * map = m.slotMap().begin() + curr_context - r.preContext; in testConstraint()

12