Home
last modified time | relevance | path

Searched refs:provided (Results 1 - 25 of 58) sorted by relevance

123

/third_party/protobuf/src/google/protobuf/compiler/js/
H A Djs_generator.h6 // modification, are permitted provided that the following conditions are
13 // in the documentation and/or other materials provided with the
109 // Indicates how to output the generated code based on the provided options.
168 std::set<std::string>* provided) const;
171 std::set<std::string>* provided) const;
174 std::set<std::string>* provided) const;
177 std::set<std::string>* provided) const;
182 std::set<std::string>* provided) const;
185 std::set<std::string>* provided) const;
195 std::set<std::string>* provided) cons
[all...]
H A Djs_generator.cc6 // modification, are permitted provided that the following conditions are
13 // in the documentation and/or other materials provided with the
1663 std::set<std::string>* provided) const { in FindProvidesForFile()
1665 FindProvidesForMessage(options, printer, file->message_type(i), provided); in FindProvidesForFile()
1668 FindProvidesForEnum(options, printer, file->enum_type(i), provided); in FindProvidesForFile()
1675 std::set<std::string>* provided) const { in FindProvides()
1677 FindProvidesForFile(options, printer, files[i], provided); in FindProvides()
1685 std::set<std::string>* provided) { in FindProvidesForOneOfEnum()
1688 provided->insert(name); in FindProvidesForOneOfEnum()
1693 std::set<std::string>* provided) { in FindProvidesForOneOfEnums()
1683 FindProvidesForOneOfEnum(const GeneratorOptions& options, const OneofDescriptor* oneof, std::set<std::string>* provided) FindProvidesForOneOfEnum() argument
1691 FindProvidesForOneOfEnums(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc, std::set<std::string>* provided) FindProvidesForOneOfEnums() argument
1874 GenerateRequiresImpl(const GeneratorOptions& options, io::Printer* printer, std::set<std::string>* required, std::set<std::string>* forwards, std::set<std::string>* provided, bool require_jspb, bool require_extension, bool require_map) const GenerateRequiresImpl() argument
3665 std::set<std::string> provided; GenerateFile() local
3757 std::set<std::string> provided; GenerateAll() local
3820 std::set<std::string> provided; GenerateAll() local
3873 std::set<std::string> provided; GenerateAll() local
3905 std::set<std::string> provided; GenerateAll() local
[all...]
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dtre-mem.c8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
53 tre_mem_new_impl(int provided, void *provided_block) in tre_mem_new_impl() argument
56 if (provided) in tre_mem_new_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
104 if (provided) in tre_mem_alloc_impl()
H A Dtre.h8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
73 /* Use system provided iswctype() and wctype(). */
188 void **provided; member
195 hidden tre_mem_t tre_mem_new_impl(int provided, void *provided_block);
196 hidden void *tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block,
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dtre-mem.c8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
53 tre_mem_new_impl(int provided, void *provided_block) in tre_mem_new_impl() argument
56 if (provided) in tre_mem_new_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
104 if (provided) in tre_mem_alloc_impl()
H A Dtre.h8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
73 /* Use system provided iswctype() and wctype(). */
189 void **provided; member
196 hidden tre_mem_t tre_mem_new_impl(int provided, void *provided_block);
197 hidden void *tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block,
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dtre-mem.c8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
53 tre_mem_new_impl(int provided, void *provided_block) in tre_mem_new_impl() argument
56 if (provided) in tre_mem_new_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
104 if (provided) in tre_mem_alloc_impl()
H A Dtre.h8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
73 /* Use system provided iswctype() and wctype(). */
188 void **provided; member
195 hidden tre_mem_t tre_mem_new_impl(int provided, void *provided_block);
196 hidden void *tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block,
/third_party/musl/src/regex/
H A Dtre-mem.c8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
53 tre_mem_new_impl(int provided, void *provided_block) in tre_mem_new_impl() argument
56 if (provided) in tre_mem_new_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
104 if (provided) in tre_mem_alloc_impl()
H A Dtre.h8 modification, are permitted provided that the following conditions
16 documentation and/or other materials provided with the distribution.
72 /* Use system provided iswctype() and wctype(). */
187 void **provided; member
194 hidden tre_mem_t tre_mem_new_impl(int provided, void *provided_block);
195 hidden void *tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block,
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer.h287 * Utility function to check whether the provided alignment is consistent with
291 pb_check_alignment(uint32_t requested, uint32_t provided) in pb_check_alignment() argument
295 if (requested > provided) in pb_check_alignment()
297 if (provided % requested != 0) in pb_check_alignment()
304 * Utility function to check whether the provided alignment is consistent with
308 pb_check_usage(unsigned requested, unsigned provided) in pb_check_usage() argument
310 return (requested & provided) == requested ? TRUE : FALSE; in pb_check_usage()
/third_party/node/deps/npm/node_modules/negotiator/lib/
H A Dencoding.js138 function preferredEncodings(accept, provided) {
141 if (!provided) {
149 var priorities = provided.map(function getPriority(type, index) {
155 return provided[priorities.indexOf(priority)];
H A Dlanguage.js132 function preferredLanguages(accept, provided) {
136 if (!provided) {
144 var priorities = provided.map(function getPriority(type, index) {
150 return provided[priorities.indexOf(priority)];
H A Dcharset.js122 function preferredCharsets(accept, provided) {
126 if (!provided) {
134 var priorities = provided.map(function getPriority(type, index) {
140 return provided[priorities.indexOf(priority)];
H A DmediaType.js162 function preferredMediaTypes(accept, provided) {
166 if (!provided) {
174 var priorities = provided.map(function getPriority(type, index) {
180 return provided[priorities.indexOf(priority)];
/third_party/rust/crates/clap/src/error/
H A Dkind.rs331 Some("one or more required arguments were not provided") in as_str()
333 Self::MissingSubcommand => Some("a subcommand is required but one was not provided"), in as_str()
/third_party/python/Modules/_decimal/libmpdec/
H A Dvcdiv64.asm5 ; modification, are permitted provided that the following conditions
13 ; documentation and/or other materials provided with the distribution.
/third_party/libunwind/libunwind/doc/
H A Dlibunwind-setjmp.tex27 be a drop-in replacement for the normal, system-provided routines of
35 system-provided routines. In fact, the time spent on a
56 used by the system-provided routines. Thus, a jump-buffer created
H A Dunw_backtrace.tex30 \Func{backtrace}() is not provided by \Prog{libunwind}. \Prog{libunwind} weakly
/third_party/protobuf/editors/
H A Dproto.vim6 " modification, are permitted provided that the following conditions are
13 " in the documentation and/or other materials provided with the
/third_party/node/lib/internal/main/
H A Dprint_help.js209 '(default if no file name is provided, ' +
/third_party/node/deps/v8/tools/v8windbg/base/
H A Dutilities.h38 #error String encoding conversion must be provided for the target platform.
/third_party/skia/third_party/externals/tint/tools/src/cmd/run-parallel/
H A Dmain.go15 // run-parallel is a tool to run an executable with the provided templated
38 run-parallel is a tool to run an executable with the provided templated
/third_party/skia/third_party/externals/tint/tools/src/gerrit/
H A Dgerrit.go83 and password which can be provided with --gerrit-user and --gerrit-pass.
/third_party/curl/docs/libcurl/
H A Dmksymbolsmanpage.pl52 This man page details version information for public symbols provided in the

Completed in 15 milliseconds

123