text
stringlengths
24
1.04M
metadata
stringlengths
233
497
### File: re2/testing/charclass_test.cc // Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test character class manipulations. #include <stdio.h> #include "util/test.h" #include "util/utf.h" #include "re2...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/charclass_test.cc", "license": "bsd", "size": 5771}
### File: re2/testing/compile_test.cc // Copyright 2007 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test prog.cc, compile.cc #include <string> #include "util/test.h" #include "util/logging.h" #include "re2/regexp.h"...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/compile_test.cc", "license": "bsd", "size": 11287}
### File: re2/testing/dfa_test.cc // Copyright 2006-2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stdint.h> #include <string> #include <thread> #include <vector> #include "util/test.h" #include "util/flags....
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/dfa_test.cc", "license": "bsd", "size": 12166}
### File: re2/testing/dump.cc // Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Dump the regexp into a string showing structure. // Tested by parse_unittest.cc // This function traverses the regexp recurs...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/dump.cc", "license": "bsd", "size": 4200}
### File: re2/testing/exhaustive1_test.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Exhaustive testing of regular expression matching. #include <string> #include <vector> #include "util/test.h" #...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/exhaustive1_test.cc", "license": "bsd", "size": 1254}
### File: re2/testing/exhaustive2_test.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Exhaustive testing of regular expression matching. #include <stddef.h> #include <memory> #include <string> #incl...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/exhaustive2_test.cc", "license": "bsd", "size": 2514}
### File: re2/testing/exhaustive3_test.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Exhaustive testing of regular expression matching. #include <stddef.h> #include <memory> #include <string> #incl...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/exhaustive3_test.cc", "license": "bsd", "size": 3339}
### File: re2/testing/exhaustive_test.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Exhaustive testing of regular expression matching. #include "util/test.h" #include "re2/testing/exhaustive_tester...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/exhaustive_test.cc", "license": "bsd", "size": 931}
### File: re2/testing/exhaustive_tester.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Exhaustive testing of regular expression matching. // Each test picks an alphabet (e.g., "abc"), a maximum stri...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/exhaustive_tester.cc", "license": "bsd", "size": 5640}
### File: re2/testing/exhaustive_tester.h // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef RE2_TESTING_EXHAUSTIVE_TESTER_H_ #define RE2_TESTING_EXHAUSTIVE_TESTER_H_ #include <stdint.h> #include <str...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/exhaustive_tester.h", "license": "bsd", "size": 3722}
### File: re2/testing/filtered_re2_test.cc // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stddef.h> #include <algorithm> #include <memory> #include <string> #include <vector> #include <utility> ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/filtered_re2_test.cc", "license": "bsd", "size": 10096}
### File: re2/testing/mimics_pcre_test.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "util/test.h" #include "util/logging.h" #include "re2/prog.h" #include "re2/regexp.h" namespace re2 { str...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/mimics_pcre_test.cc", "license": "bsd", "size": 2055}
### File: re2/testing/null_walker.cc // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "util/test.h" #include "util/logging.h" #include "re2/regexp.h" #include "re2/walker-inl.h" namespace re2 { //...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/null_walker.cc", "license": "bsd", "size": 1428}
### File: re2/testing/parse_test.cc // Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test parse.cc, dump.cc, and tostring.cc. #include <string> #include "util/test.h" #include "util/logging.h" #include ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/parse_test.cc", "license": "bsd", "size": 18295}
### File: re2/testing/possible_match_test.cc // Copyright 2006-2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <string.h> #include <string> #include <vector> #include "util/test.h" #include "util/logging.h" #i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/possible_match_test.cc", "license": "bsd", "size": 9677}
### File: re2/testing/random_test.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Random testing of regular expression matching. #include <stdio.h> #include <string> #include <vector> #include "util...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/random_test.cc", "license": "bsd", "size": 3632}
### File: re2/testing/re2_arg_test.cc // Copyright 2005 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // This tests to make sure numbers are parsed from strings // correctly. // Todo: Expand the test to validate strings pa...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/re2_arg_test.cc", "license": "bsd", "size": 5801}
### File: re2/testing/re2_test.cc // -*- coding: utf-8 -*- // Copyright 2002-2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // TODO: Test extractions for PartialMatch/Consume #include <errno.h> #include <stddef.h> #in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/re2_test.cc", "license": "bsd", "size": 53300}
### File: re2/testing/regexp_benchmark.cc // Copyright 2006-2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Benchmarks for regular expression implementations. #include <stdint.h> #include <stdio.h> #include <stdlib....
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/regexp_benchmark.cc", "license": "bsd", "size": 60576}
### File: re2/testing/regexp_generator.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Regular expression generator: generates all possible // regular expressions within parameters (see regexp_generat...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/regexp_generator.cc", "license": "bsd", "size": 8459}
### File: re2/testing/regexp_generator.h // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef RE2_TESTING_REGEXP_GENERATOR_H_ #define RE2_TESTING_REGEXP_GENERATOR_H_ // Regular expression generator: gen...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/regexp_generator.h", "license": "bsd", "size": 2709}
### File: re2/testing/regexp_test.cc // Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test parse.cc, dump.cc, and tostring.cc. #include <stddef.h> #include <map> #include <string> #include <vector> #inc...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/regexp_test.cc", "license": "bsd", "size": 2353}
### File: re2/testing/required_prefix_test.cc // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <string> #include "util/test.h" #include "util/logging.h" #include "re2/prog.h" #include "re2/regexp.h...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/required_prefix_test.cc", "license": "bsd", "size": 4563}
### File: re2/testing/search_test.cc // Copyright 2006-2007 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "util/test.h" #include "re2/prog.h" #include "re2/regexp.h" #include "re2/testing/tester.h" #include "re2/t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/search_test.cc", "license": "bsd", "size": 8709}
### File: re2/testing/set_test.cc // Copyright 2010 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stddef.h> #include <string> #include <vector> #include <utility> #include "util/test.h" #include "util/logging.h"...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/set_test.cc", "license": "bsd", "size": 5944}
### File: re2/testing/simplify_test.cc // Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test simplify.cc. #include <string.h> #include <string> #include "util/test.h" #include "util/logging.h" #include ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/simplify_test.cc", "license": "bsd", "size": 8398}
### File: re2/testing/string_generator.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // String generator: generates all possible strings of up to // maxlen letters using the set of letters in alpha. //...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/string_generator.cc", "license": "bsd", "size": 3688}
### File: re2/testing/string_generator.h // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef RE2_TESTING_STRING_GENERATOR_H_ #define RE2_TESTING_STRING_GENERATOR_H_ // String generator: generates all p...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/string_generator.h", "license": "bsd", "size": 2784}
### File: re2/testing/string_generator_test.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test StringGenerator. #include <stdint.h> #include <string> #include "util/test.h" #include "util/utf.h" #...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/string_generator_test.cc", "license": "bsd", "size": 2643}
### File: re2/testing/tester.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Regular expression engine tester -- test all the implementations against each other. #include <stddef.h> #include <stdint....
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/tester.cc", "license": "bsd", "size": 20352}
### File: re2/testing/tester.h // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef RE2_TESTING_TESTER_H_ #define RE2_TESTING_TESTER_H_ // Comparative tester for regular expression matching. // Checks a...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/testing/tester.h", "license": "bsd", "size": 4114}
### File: re2/tostring.cc // Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Format a regular expression structure as a string. // Tested by parse_test.cc #include <string.h> #include <string> #include "u...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/tostring.cc", "license": "bsd", "size": 8710}
### File: re2/unicode.py # Copyright 2008 The RE2 Authors. All Rights Reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. """Parser for Unicode data files (as distributed by unicode.org).""" from __future__ import absolute_import from __future__ import divi...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Python", "repo_name": "minhanghuang/re2", "path": "re2/unicode.py", "license": "bsd", "size": 8097}
### File: re2/unicode_casefold.h // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef RE2_UNICODE_CASEFOLD_H_ #define RE2_UNICODE_CASEFOLD_H_ // Unicode case folding tables. // The Unicode case folding...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/unicode_casefold.h", "license": "bsd", "size": 2562}
### File: re2/unicode_groups.h // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef RE2_UNICODE_GROUPS_H_ #define RE2_UNICODE_GROUPS_H_ // Unicode character groups. // The codes get split into ranges o...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/unicode_groups.h", "license": "bsd", "size": 1548}
### File: re2/walker-inl.h // Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef RE2_WALKER_INL_H_ #define RE2_WALKER_INL_H_ // Helper class for traversing Regexps without recursion. // Clients should de...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "re2/walker-inl.h", "license": "bsd", "size": 7736}
### File: runtests #!/usr/bin/env sh # System Integrity Protection on Darwin complicated these matters somewhat. # See https://github.com/google/re2/issues/175 for details. if [ "x$1" = "x-shared-library-path" ]; then if [ "x$(uname)" = "xDarwin" ]; then DYLD_LIBRARY_PATH="$2:$DYLD_LIBRARY_PATH" export DYLD_LIBRA...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Shell", "repo_name": "minhanghuang/re2", "path": "runtests", "license": "bsd", "size": 646}
### File: testinstall.cc // Copyright 2008 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stdio.h> #include <re2/filtered_re2.h> #include <re2/re2.h> int main() { re2::FilteredRE2 f; int id; f.Add("a.*b.*c"...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "testinstall.cc", "license": "bsd", "size": 621}
### File: util/benchmark.cc // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <algorithm> #include <chrono> #include "util/benchmark.h" #in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/benchmark.cc", "license": "bsd", "size": 2998}
### File: util/benchmark.h // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_BENCHMARK_H_ #define UTIL_BENCHMARK_H_ #include <stdint.h> #include <functional> #include "util/logging.h" #include ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/benchmark.h", "license": "bsd", "size": 3762}
### File: util/flags.h // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_FLAGS_H_ #define UTIL_FLAGS_H_ // Simplified version of Google's command line flags. // Does not support parsing the comm...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/flags.h", "license": "bsd", "size": 678}
### File: util/fuzz.cc // Copyright 2016 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stddef.h> #include <stdint.h> #include <stdlib.h> // Entry point for libFuzzer. extern "C" int LLVMFuzzerTestOneInput(const ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/fuzz.cc", "license": "bsd", "size": 544}
### File: util/logging.h // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_LOGGING_H_ #define UTIL_LOGGING_H_ // Simplified version of Google's logging. #include <assert.h> #include <stdio.h> #...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/logging.h", "license": "bsd", "size": 2882}
### File: util/malloc_counter.h // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_MALLOC_COUNTER_H_ #define UTIL_MALLOC_COUNTER_H_ namespace testing { class MallocCounter { public: MallocCoun...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/malloc_counter.h", "license": "bsd", "size": 505}
### File: util/mix.h // Copyright 2016 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_MIX_H_ #define UTIL_MIX_H_ #include <stddef.h> #include <limits> namespace re2 { // Silence "truncation of constant value...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/mix.h", "license": "bsd", "size": 969}
### File: util/mutex.h // Copyright 2007 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_MUTEX_H_ #define UTIL_MUTEX_H_ /* * A simple mutex wrapper, supporting locks and read-write locks. * You should assume ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/mutex.h", "license": "bsd", "size": 4772}
### File: util/pcre.cc // Copyright 2003-2009 Google Inc. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // This is a variant of PCRE's pcrecpp.cc, originally written at Google. // The main changes are the addition of the HitLimit method an...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/pcre.cc", "license": "bsd", "size": 36093}
### File: util/pcre.h // Copyright 2003-2010 Google Inc. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_PCRE_H_ #define UTIL_PCRE_H_ // This is a variant of PCRE's pcrecpp.h, originally written at Google. // The main changes a...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/pcre.h", "license": "bsd", "size": 27536}
### File: util/rune.cc /* * The authors of this software are Rob Pike and Ken Thompson. * Copyright (c) 2002 by Lucent Technologies. * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all co...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/rune.cc", "license": "bsd", "size": 4944}
### File: util/strutil.cc // Copyright 1999-2005 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stdarg.h> #include <stdio.h> #include "util/strutil.h" #ifdef _WIN32 #define snprintf _snprintf #define vsnprintf _...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/strutil.cc", "license": "bsd", "size": 4842}
### File: util/strutil.h // Copyright 2016 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_STRUTIL_H_ #define UTIL_STRUTIL_H_ #include <string> #include "re2/stringpiece.h" #include "util/util.h" namespace re...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/strutil.h", "license": "bsd", "size": 488}
### File: util/test.cc // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include <stdio.h> #include <string> #include "util/test.h" namespace testing { std::string TempDir() { return "/tmp/"; } } // names...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/test.cc", "license": "bsd", "size": 693}
### File: util/test.h // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_TEST_H_ #define UTIL_TEST_H_ #include "util/util.h" #include "util/logging.h" namespace testing { std::string TempDir(); ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/test.h", "license": "bsd", "size": 1142}
### File: util/utf.h /* * The authors of this software are Rob Pike and Ken Thompson. * Copyright (c) 2002 by Lucent Technologies. * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copi...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/re2", "path": "util/utf.h", "license": "bsd", "size": 1516}
### File: util/util.h // Copyright 2009 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifndef UTIL_UTIL_H_ #define UTIL_UTIL_H_ #define arraysize(array) (sizeof(array)/sizeof((array)[0])) #ifndef ATTRIBUTE_NORETURN #if d...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/re2", "path": "util/util.h", "license": "bsd", "size": 991}
### File: rmw/CMakeLists.txt cmake_minimum_required(VERSION 3.5) project(rmw) # Default to C99 if(NOT CMAKE_C_STANDARD) set(CMAKE_C_STANDARD 99) endif() # Default to C++17 if(NOT CMAKE_CXX_STANDARD) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) endif() if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/rmw", "path": "rmw/CMakeLists.txt", "license": "apache-2.0", "size": 2872}
### File: rmw/cmake/configure_rmw_library.cmake # Copyright 2014-2015 Open Source Robotics Foundation, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licen...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/rmw", "path": "rmw/cmake/configure_rmw_library.cmake", "license": "apache-2.0", "size": 3249}
### File: rmw/cmake/get_rmw_typesupport.cmake # Copyright 2015-2016 Open Source Robotics Foundation, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/license...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/rmw", "path": "rmw/cmake/get_rmw_typesupport.cmake", "license": "apache-2.0", "size": 1795}
### File: rmw/cmake/register_rmw_implementation.cmake # Copyright 2014 Open Source Robotics Foundation, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/lice...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/rmw", "path": "rmw/cmake/register_rmw_implementation.cmake", "license": "apache-2.0", "size": 2607}
### File: rmw/include/rmw/allocators.h // Copyright 2014 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LIC...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/allocators.h", "license": "apache-2.0", "size": 3938}
### File: rmw/include/rmw/check_type_identifiers_match.h // Copyright 2023 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apach...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/check_type_identifiers_match.h", "license": "apache-2.0", "size": 3319}
### File: rmw/include/rmw/convert_rcutils_ret_to_rmw_ret.h // Copyright 2017 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apa...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/convert_rcutils_ret_to_rmw_ret.h", "license": "apache-2.0", "size": 1282}
### File: rmw/include/rmw/discovery_options.h // Copyright 2022 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licen...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/discovery_options.h", "license": "apache-2.0", "size": 6292}
### File: rmw/include/rmw/domain_id.h // Copyright 2019 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICE...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/domain_id.h", "license": "apache-2.0", "size": 760}
### File: rmw/include/rmw/dynamic_message_type_support.h // Copyright 2022 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apach...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/dynamic_message_type_support.h", "license": "apache-2.0", "size": 2773}
### File: rmw/include/rmw/error_handling.h // Copyright 2014 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/error_handling.h", "license": "apache-2.0", "size": 8583}
### File: rmw/include/rmw/event.h // Copyright 2019 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/event.h", "license": "apache-2.0", "size": 3890}
### File: rmw/include/rmw/event_callback_type.h // Copyright 2021 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/lic...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/event_callback_type.h", "license": "apache-2.0", "size": 1712}
### File: rmw/include/rmw/events_statuses/events_statuses.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.ap...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/events_statuses.h", "license": "apache-2.0", "size": 1172}
### File: rmw/include/rmw/events_statuses/incompatible_qos.h // Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/incompatible_qos.h", "license": "apache-2.0", "size": 1939}
### File: rmw/include/rmw/events_statuses/incompatible_type.h // Copyright 2022 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www....
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/incompatible_type.h", "license": "apache-2.0", "size": 1258}
### File: rmw/include/rmw/events_statuses/liveliness_changed.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/liveliness_changed.h", "license": "apache-2.0", "size": 2295}
### File: rmw/include/rmw/events_statuses/liveliness_lost.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.ap...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/liveliness_lost.h", "license": "apache-2.0", "size": 1507}
### File: rmw/include/rmw/events_statuses/matched.h // Copyright 2023 Sony Group Corporation. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICE...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/matched.h", "license": "apache-2.0", "size": 1632}
### File: rmw/include/rmw/events_statuses/message_lost.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apach...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/message_lost.h", "license": "apache-2.0", "size": 1112}
### File: rmw/include/rmw/events_statuses/offered_deadline_missed.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/offered_deadline_missed.h", "license": "apache-2.0", "size": 1467}
### File: rmw/include/rmw/events_statuses/requested_deadline_missed.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // htt...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/events_statuses/requested_deadline_missed.h", "license": "apache-2.0", "size": 1527}
### File: rmw/include/rmw/features.h // Copyright 2022 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICEN...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/features.h", "license": "apache-2.0", "size": 2157}
### File: rmw/include/rmw/get_network_flow_endpoints.h // Copyright 2020 Ericsson AB // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 /...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/get_network_flow_endpoints.h", "license": "apache-2.0", "size": 2654}
### File: rmw/include/rmw/get_node_info_and_types.h // Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // ht...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/get_node_info_and_types.h", "license": "apache-2.0", "size": 15970}
### File: rmw/include/rmw/get_service_names_and_types.h // Copyright 2017 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/get_service_names_and_types.h", "license": "apache-2.0", "size": 3971}
### File: rmw/include/rmw/get_topic_endpoint_info.h // Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // ht...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/get_topic_endpoint_info.h", "license": "apache-2.0", "size": 9613}
### File: rmw/include/rmw/get_topic_names_and_types.h // Copyright 2017 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.o...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/get_topic_names_and_types.h", "license": "apache-2.0", "size": 4448}
### File: rmw/include/rmw/impl/config.h // Copyright 2014 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LI...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/impl/config.h", "license": "apache-2.0", "size": 861}
### File: rmw/include/rmw/impl/cpp/demangle.hpp // Copyright 2015 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/lic...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/impl/cpp/demangle.hpp", "license": "apache-2.0", "size": 1617}
### File: rmw/include/rmw/impl/cpp/key_value.hpp // Copyright 2017 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/li...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/impl/cpp/key_value.hpp", "license": "apache-2.0", "size": 2596}
### File: rmw/include/rmw/impl/cpp/macros.hpp // Copyright 2015 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licen...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C++", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/impl/cpp/macros.hpp", "license": "apache-2.0", "size": 2651}
### File: rmw/include/rmw/incompatible_qos_events_statuses.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.a...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/incompatible_qos_events_statuses.h", "license": "apache-2.0", "size": 817}
### File: rmw/include/rmw/init.h // Copyright 2014-2018 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICE...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/init.h", "license": "apache-2.0", "size": 6271}
### File: rmw/include/rmw/init_options.h // Copyright 2014-2018 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licen...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/init_options.h", "license": "apache-2.0", "size": 6831}
### File: rmw/include/rmw/macros.h // Copyright 2015 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/macros.h", "license": "apache-2.0", "size": 972}
### File: rmw/include/rmw/message_sequence.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licens...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/message_sequence.h", "license": "apache-2.0", "size": 3779}
### File: rmw/include/rmw/names_and_types.h // Copyright 2017 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/license...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/names_and_types.h", "license": "apache-2.0", "size": 5188}
### File: rmw/include/rmw/network_flow_endpoint.h // Copyright 2020 Ericsson AB // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/network_flow_endpoint.h", "license": "apache-2.0", "size": 3644}
### File: rmw/include/rmw/network_flow_endpoint_array.h // Copyright 2020 Ericsson AB // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/network_flow_endpoint_array.h", "license": "apache-2.0", "size": 3314}
### File: rmw/include/rmw/publisher_options.h // Copyright 2019 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licen...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/publisher_options.h", "license": "apache-2.0", "size": 1058}
### File: rmw/include/rmw/qos_policy_kind.h // Copyright 2020 Open Source Robotics Foundation, Inc. // Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/qos_policy_kind.h", "license": "apache-2.0", "size": 1398}
### File: rmw/include/rmw/qos_profiles.h // Copyright 2015 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/L...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/qos_profiles.h", "license": "apache-2.0", "size": 7265}
### File: rmw/include/rmw/qos_string_conversions.h // Copyright 2020 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/qos_string_conversions.h", "license": "apache-2.0", "size": 5643}
### File: rmw/include/rmw/ret_types.h // Copyright 2014-2018 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/rmw", "path": "rmw/include/rmw/ret_types.h", "license": "apache-2.0", "size": 1554}