Home
last modified time | relevance | path

Searched +full:unused +full:- +full:private +full:- +full:field (Results 1 – 25 of 634) sorted by relevance

12345678910>>...26

/third_party/skia/third_party/externals/abseil-cpp/absl/copts/
DGENERATED_AbseilCopts.cmake16 "-Wno-c99-extensions"
17 "-Wno-deprecated-declarations"
18 "-Wno-missing-noreturn"
19 "-Wno-missing-prototypes"
20 "-Wno-missing-variable-declarations"
21 "-Wno-null-conversion"
22 "-Wno-shadow"
23 "-Wno-shift-sign-overflow"
24 "-Wno-sign-compare"
25 "-Wno-unused-function"
[all …]
DGENERATED_copts.bzl17 "-Wno-c99-extensions",
18 "-Wno-deprecated-declarations",
19 "-Wno-missing-noreturn",
20 "-Wno-missing-prototypes",
21 "-Wno-missing-variable-declarations",
22 "-Wno-null-conversion",
23 "-Wno-shadow",
24 "-Wno-shift-sign-overflow",
25 "-Wno-sign-compare",
26 "-Wno-unused-function",
[all …]
Dcopts.py20 "-Wno-c99-extensions",
21 "-Wno-deprecated-declarations",
22 "-Wno-missing-noreturn",
23 "-Wno-missing-prototypes",
24 "-Wno-missing-variable-declarations",
25 "-Wno-null-conversion",
26 "-Wno-shadow",
27 "-Wno-shift-sign-overflow",
28 "-Wno-sign-compare",
29 "-Wno-unused-function",
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DGeneratedMessage.java1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
47 private static final long serialVersionUID = 1L;
50 * For testing. Allows a test to disable the optimization that avoids using field builders for
52 * reused to test the field builders.
59 * <p>TODO: mark this private and final (breaking change)
87 * For testing. Allows a test to disable/re-enable the optimization that avoids using field
89 * tests can be reused to test the field builders. See {@link RepeatedFieldBuilder} and {@link
137 private Map<FieldDescriptor, Object> getAllFieldsMutable(boolean getBytesForString) { in getAllFieldsMutable()
[all …]
DMessageReflection.java1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
35 for (final FieldDescriptor field : message.getDescriptorForType().getFields()) { in writeMessageTo()
36 if (field.isRequired() && !fields.containsKey(field)) { in writeMessageTo()
37 fields.put(field, message.getField(field)); in writeMessageTo()
42 final Descriptors.FieldDescriptor field = entry.getKey(); in writeMessageTo() local
45 && field.isExtension() in writeMessageTo()
46 && field.getType() == Descriptors.FieldDescriptor.Type.MESSAGE in writeMessageTo()
47 && !field.isRepeated()) { in writeMessageTo()
[all …]
DCodedOutputStream.java1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
30 * constructs and field types (e.g. {@link #writeTag} and {@link #writeInt32}) and methods that
31 * write low-level values (e.g. {@link #writeRawVarint32} and {@link #writeRawBytes}). If you are
38 private static final Logger logger = Logger.getLogger(CodedOutputStream.class.getName());
39 private static final boolean HAS_UNSAFE_ARRAY_OPERATIONS = UnsafeUtil.hasUnsafeArrayOperations();
119 throw new IllegalArgumentException("ByteBuffer is read-only"); in newInstance()
169 private boolean serializationDeterministic;
180 ByteBuffer byteBuffer, @SuppressWarnings("unused") int unused) { in newInstance() argument
[all …]
DGeneratedMessageLite.java1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
43 private static final int MUTABLE_FLAG_MASK = 0x80000000;
44 private static final int MEMOIZED_SERIALIZED_SIZE_MASK = 0x7FFFFFFF;
54 private int memoizedSerializedSize = MUTABLE_FLAG_MASK | UNINITIALIZED_SERIALIZED_SIZE;
114 * <p>NOTE: This method relies on the field getter methods not being stripped or renamed by
166 private void ensureUnknownFieldsInitialized() { in ensureUnknownFieldsInitialized()
173 * Called by subclasses to parse an unknown field. For use by generated code only.
175 * @return {@code true} unless the tag is an end-group tag.
[all …]
/third_party/grpc/bazel/
Dcopts.bzl7 # http://www.apache.org/licenses/LICENSE-2.0
22 "-Wall",
23 "-Wextra",
25 "-Wimplicit-fallthrough",
27 "-Werror",
29 "-Wno-unknown-warning-option",
31 "-Wc++20-extensions",
32 "-Wctad-maybe-unsupported",
33 "-Wdeprecated-increment-bool",
34 "-Wfloat-overflow-conversion",
[all …]
/third_party/ffmpeg/libavcodec/
Davcodec.h18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
97 * - Set up and open the AVCodecContext as usual.
98 * - Send valid input:
99 * - For decoding, call avcodec_send_packet() to give the decoder raw
101 * - For encoding, call avcodec_send_frame() to give the encoder an AVFrame
108 * - Receive output in a loop. Periodically call one of the avcodec_receive_*()
110 * - For decoding, call avcodec_receive_frame(). On success, it will return
112 * - For encoding, call avcodec_receive_packet(). On success, it will return
126 * In theory, sending input can result in EAGAIN - this should happen only if
134 * performance or out of necessity (consider B-frames).
[all …]
/third_party/ffmpeg/libavformat/
Doggparsecelt.c19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
35 struct ogg *ogg = s->priv_data; in celt_header()
36 struct ogg_stream *os = ogg->streams + idx; in celt_header()
37 AVStream *st = s->streams[idx]; in celt_header()
38 struct oggcelt_private *priv = os->private; in celt_header()
39 uint8_t *p = os->buf + os->pstart; in celt_header()
42 if (os->psize == 60 && in celt_header()
52 ret = ff_alloc_extradata(st->codecpar, 2 * sizeof(uint32_t)); in celt_header()
58 /* unused header size field skipped */ in celt_header()
62 /* unused bytes per packet field skipped */ in celt_header()
[all …]
Davformat.h18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
35 * formats. Its main two purposes are demuxing - i.e. splitting a media file
36 * into component streams, and the reverse process of muxing - writing supplied
69 * mechanism. Generic (format-independent) libavformat options are provided by
72 * from avformat_get_class()). Private (format-specific) options are provided by
74 * AVOutputFormat.priv_class of the corresponding format struct is non-NULL.
76 * if its AVClass is non-NULL, and the protocols layer. See the discussion on
124 * your reading callbacks to it. Then set the @em pb field of your
128 * avformat_open_input() has returned, it is not possible to set demuxer private
140 * This code passes the private options 'video_size' and 'pixel_format' to the
[all …]
/third_party/grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DServerConfig.php17 * Generated from protobuf field <code>.grpc.testing.ServerType server_type = 1;</code>
21 * Generated from protobuf field <code>.grpc.testing.SecurityParams security_params = 2;</code>
25 * Port on which to listen. Zero means pick unused port.
27 * Generated from protobuf field <code>int32 port = 4;</code>
33 * Generated from protobuf field <code>int32 async_server_threads = 7;</code>
39 * Generated from protobuf field <code>int32 core_limit = 8;</code>
44 * Note this must NOT be used in proto (non-generic) servers. For proto servers,
45 * 'response sizes' must be configured from the 'response_size' field of the
48 * Generated from protobuf field <code>.grpc.testing.PayloadConfig payload_config = 9;</code>
54 * Generated from protobuf field <code>repeated int32 core_list = 10;</code>
[all …]
/third_party/protobuf/src/google/protobuf/util/
Dfield_comparator.h1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
8 // Defines classes for field comparison.
59 // Compares the values of a field in two protocol buffer messages.
63 // In case the given FieldDescriptor points to a repeated field, the indices
71 const FieldDescriptor* field, int index_1,
112 // Sets the fraction and margin for the float comparison of a given field.
115 // REQUIRES: field->cpp_type == FieldDescriptor::CPPTYPE_DOUBLE or
116 // field->cpp_type == FieldDescriptor::CPPTYPE_FLOAT
[all …]
/third_party/mesa3d/src/intel/genxml/
Dgen_pack_header.py1 #encoding=utf-8
67 class Field(object): class
82 'field {} has end ({}) < start ({})'.format(self.name, self.end,
86 'bool field ({}) is too wide'.format(self.name)
94 ufixed_match = Field.ufixed_pattern.match(self.type)
99 sfixed_match = Field.sfixed_pattern.match(self.type)
127 elif self.type == 'uint' and self.end - self.start > 32:
145 print(" %-36s %s%s;" % (type, self.name, dim))
154 print("#define %-40s %d" % (prefix + name, value.value))
172 for field in self.fields:
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/lite/src/common/
DBUILD.gn76 "-Wno-ignored-qualifiers",
77 "-Wunused-private-field",
78 "-Wno-unused-private-field",
79 "-Wno-inconsistent-missing-override",
80 "-Wno-macro-redefined",
81 "-Wno-constant-conversion",
/third_party/rust/rust/tests/rustdoc-ui/coverage/
Dprivate.rs1 // compile-flags:-Z unstable-options --show-coverage --document-private-items
2 // check-pass
4 #![allow(unused)]
6 //! when `--document-private-items` is passed, nothing is safe. everything must have docs or your
16 pub field: usize, field
20 /// Nothing shady going on here. Just a bunch of well-documented code. (cough)
/third_party/protobuf/src/google/protobuf/
Dserial_arena.h1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
37 // Arena blocks are variable length malloc-ed objects. The following structure
40 // For the sentry block with zero-size where ptr_/limit_ both point to `this`.
51 char* Limit() { return Pointer(size & static_cast<size_t>(-8)); } in Limit()
71 // purpose allocator in a multi-threaded program. It serves as a building block
72 // for ThreadSafeArena, which provides a thread-safe arena allocator.
96 const size_t index = absl::bit_width(size - 1) - 4; in TryAllocateFromCachedBlock()
104 cached_head = cached_head->next; in TryAllocateFromCachedBlock()
[all …]
/third_party/protobuf/rust/
Doptional.rs1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
10 #![allow(unused)]
12 use crate::__internal::Private;
19 /// A protobuf value from a field that may not be set.
22 /// field is set and access the field data.
24 /// Two `Optional`s are equal if they match both presence and the field values.
27 /// The field is set; it is present in the serialized message.
29 /// - For an `_opt()` accessor, this contains a `View<impl Proxied>`.
[all …]
/third_party/skia/m133/gn/
Doh_skia.gni6 # http://www.apache.org/licenses/LICENSE-2.0
46 "-Wno-deprecated-declarations",
47 "-Wno-pessimizing-move",
48 "-Wno-return-type",
49 "-Wno-sign-compare",
50 "-Wno-sometimes-uninitialized",
51 "-Wno-unknown-pragmas",
52 "-Wno-unused-function",
53 "-Wno-unused-private-field",
54 "-Wno-unused-variable",
[all …]
/third_party/skia/gn/
Doh_skia.gni6 # http://www.apache.org/licenses/LICENSE-2.0
47 "-Wno-deprecated-declarations",
48 "-Wno-pessimizing-move",
49 "-Wno-return-type",
50 "-Wno-sign-compare",
51 "-Wno-sometimes-uninitialized",
52 "-Wno-unknown-pragmas",
53 "-Wno-unused-function",
54 "-Wno-unused-private-field",
55 "-Wno-unused-variable",
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/meta/
DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
5 import("${skia_third_party_dir}/abseil-cpp/absl.gni")
9 deps = [ "${skia_third_party_dir}/abseil-cpp/absl/base:config" ]
16 cflags_cc = [ "-Wno-unused-private-field" ]
/third_party/flatbuffers/include/flatbuffers/
Didl.h8 * http://www.apache.org/licenses/LICENSE-2.0
46 // clang-format off
62 …TD(STRING, "string", Offset<void>, int, int, StringOffset, int, unused, Int, Offset<String>, 1…
63 …TD(VECTOR, "", Offset<void>, int, int, VectorOffset, int, unused, Int, Offset<UOffset>, …
64 …TD(VECTOR64, "", Offset64<void>, int, int, VectorOffset, int, unused, Int, Offset<UOffset>, …
65 …TD(STRUCT, "", Offset<void>, int, int, int, int, unused, Int, Offset<UOffset>, …
66 …TD(UNION, "", Offset<void>, int, int, int, int, unused, Int, Offset<UOffset>, …
68 …TD(ARRAY, "", int, int, int, int, int, unused, Int, Offset<UOffset>, …
70 // - enum
71 // - FlatBuffers schema type.
[all …]
/third_party/ffmpeg/libavutil/
Dhwcontext.h16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
45 * This struct aggregates all the (hardware/vendor-specific) "high-level" state,
47 * E.g., in an API that supports hardware-accelerated encoding and decoding,
52 * This struct is reference-counted with the AVBuffer mechanism. The
53 * av_hwdevice_ctx_alloc() constructor yields a reference, whose data field
58 * optionally invoking a user-specified callback for uninitializing the hardware
68 * Private data used internally by libavutil. Must not be accessed in any
74 * This field identifies the underlying API used for hardware access.
76 * This field is set when this struct is allocated and never changed
82 * The format-specific data, allocated and freed by libavutil along with
[all …]
/third_party/rust/rust/tests/ui/autoref-autoderef/
Dautoderef-privacy.rs1 // run-pass
2 // Check we do not select a private method or field when computing autoderefs
4 #![allow(unused)]
12 fn f(&self) -> bool { true } in f()
22 fn f(&self) -> bool { false } in f()
27 fn deref(&self) -> &::Bar2 { &self.i } in deref()
32 fn deref(&self) -> &::Baz2 { &self.0 } in deref()
36 // Since the private fields and methods are visible here, there should be no autoderefs. in f()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DRemoveUnreferencedVariables.cpp3 // Use of this source code is governed by a BSD-style license that can be
35 private:
42 // calls and function return values since there's a compiler option not to prune unused
63 for (const auto &field : block->fields()) in incrementStructTypeRefCount() local
65 ASSERT(!field->type()->isInterfaceBlock()); in incrementStructTypeRefCount()
66 incrementStructTypeRefCount(*field->type()); in incrementStructTypeRefCount()
74 auto structIter = mStructIdRefCounts.find(structure->uniqueId().get()); in incrementStructTypeRefCount()
77 mStructIdRefCounts[structure->uniqueId().get()] = 1u; in incrementStructTypeRefCount()
79 for (const auto &field : structure->fields()) in incrementStructTypeRefCount() local
81 incrementStructTypeRefCount(*field->type()); in incrementStructTypeRefCount()
[all …]

12345678910>>...26