HomeSort by relevance Sort by last modified time
    Searched defs:Any (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/flatbuffers/tests/MyGame/Example/
Any.php 6 class Any
Any.py 5 class Any(object):
Any.cs 6 public enum Any : byte
Any.java 5 public final class Any {
6 private Any() { }
  /external/libbrillo/brillo/
any.cc 5 #include <brillo/any.h>
11 Any::Any() {
14 Any::Any(const Any& rhs) : data_buffer_(rhs.data_buffer_) {
18 Any::Any(Any&& rhs) : data_buffer_(std::move(rhs.data_buffer_)) {
21 Any::~Any()
    [all...]
any.h 6 // The brillo::Any class can hold any C++ type, but both the setter and
8 // Note that C-style arrays when stored in Any are reduced to simple
9 // data pointers. Any will not copy a contents of the array.
11 // Any v(data); // stores const int*, effectively "Any v(&data[0]);"
13 // brillo::Any is a value type. Which means, the data is copied into it
14 // and Any owns it. The owned object (stored by value) will be destroyed
15 // when Any is cleared or reassigned. The contained value type must be
39 class BRILLO_EXPORT Any final
    [all...]
  /external/easymock/src/org/easymock/internal/matchers/
Any.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 public class Any implements IArgumentMatcher, Serializable {
26 public static final Any ANY = new Any();
28 private Any() {
37 buffer.append("<any>");
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Any.java 12 public class Any implements ArgumentMatcher<Object>, VarargMatcher ,Serializable {
14 public static final Any ANY = new Any();
16 private Any() {
24 return "<any>";
  /external/libchrome/base/
template_util.h 41 struct Any {
42 Any(...);
55 std::false_type IsAssignableTest(internal::Any, Rvalue&&);
  /external/llvm/include/llvm/IR/
Comdat.h 32 Any, ///< The linker may choose any COMDAT.
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 113 // followed by straight-line code to handle the rest (if any).
349 Any,
  /external/v8/src/
field-type.cc 16 // Do not Smi::kZero here or for Any(), as that may translate
22 FieldType* FieldType::Any() {
32 Handle<FieldType> FieldType::Any(Isolate* isolate) {
33 return handle(Any(), isolate);
46 DCHECK(object == None() || object == Any() || object->IsMap());
83 os << "Any";
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Any.cs 2 // source: google/protobuf/any.proto
12 /// <summary>Holder for reflection information generated from google/protobuf/any.proto</summary>
17 /// <summary>File descriptor for google/protobuf/any.proto</summary>
34 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Any), global::Google.Protobuf.WellKnownTypes.Any.Parser, new[]{ "TypeUrl", "Value" }, null, null, null)
42 /// `Any` contains an arbitrary serialized protocol buffer message along with a
45 /// Protobuf library provides support to pack/unpack Any values in the form
46 /// of utility functions or additional generated methods of the Any type.
51 /// Any any;
    [all...]
  /external/skia/experimental/svg/model/
SkPEG.h 173 struct Any {
198 using Some = Seq<E, Any<E>>;
  /external/protobuf/src/google/protobuf/
any.pb.cc 2 // source: google/protobuf/any.proto
5 #include <google/protobuf/any.pb.h>
36 "google/protobuf/any.proto");
40 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Any, type_url_),
41 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Any, value_),
46 Any::default_instance_,
51 sizeof(Any),
52 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Any, _internal_metadata_),
53 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Any, _is_default_instance_));
67 Any_descriptor_, &Any::default_instance())
    [all...]
any.pb.h 2 // source: google/protobuf/any.proto
30 #include <google/protobuf/any.h>
41 class Any;
45 class LIBPROTOBUF_EXPORT Any : public ::google::protobuf::Message {
47 Any();
48 virtual ~Any();
50 Any(const Any& from);
52 inline Any& operator=(const Any& from)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.hpp 17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
78 static const MemoryRequirement Any;
  /external/gemmlowp/internal/
fixedpoint_neon.h 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
126 inline bool Any(int32x4_t a) {
fixedpoint.h 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
137 bool Any(tIntegerType a) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
any.pb.h 2 // source: google/protobuf/any.proto
30 #include <google/protobuf/any.h>
41 class Any;
45 class LIBPROTOBUF_EXPORT Any : public ::google::protobuf::Message {
47 Any();
48 virtual ~Any();
50 Any(const Any& from);
52 inline Any& operator=(const Any& from)
    [all...]
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 137 static void Any() {
150 TypeImpl<HeapTypeConfig>::Any();
  /external/guice/core/src/com/google/inject/matcher/
Matchers.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38 * Returns a matcher which matches any input.
40 public static Matcher<Object> any() { method in class:Matchers
41 return ANY;
44 private static final Matcher<Object> ANY = new Any();
46 private static class Any extends AbstractMatcher<Object> implements Serializable {
52 return "any()";
56 return any();
329 * {@link #inPackage(Package) inPackage()}, this matches classes from any classloader
    [all...]
  /external/protobuf/python/google/protobuf/internal/
well_known_types.py 20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 - Any
66 class Any(object):
67 """Class for Any Message type."""
70 """Packs the specified message into current Any message."""
78 """Unpacks the current Any message into specified message."""
91 """Checks if this Any represents the given protobuf type.""
    [all...]
  /external/v8/src/compiler/
representation-change.h 23 static Truncation Any() { return Truncation(TruncationKind::kAny); }
139 return UseInfo(MachineRepresentation::kFloat32, Truncation::Any());
148 return UseInfo(MachineRepresentation::kTagged, Truncation::Any());
151 return UseInfo(MachineRepresentation::kTaggedSigned, Truncation::Any());
154 return UseInfo(MachineRepresentation::kTaggedPointer, Truncation::Any());
159 return UseInfo(MachineRepresentation::kTaggedPointer, Truncation::Any(),
163 return UseInfo(MachineRepresentation::kTaggedSigned, Truncation::Any(),
169 return UseInfo(MachineRepresentation::kWord32, Truncation::Any(),
175 return UseInfo(MachineRepresentation::kWord32, Truncation::Any(),
187 return UseInfo(MachineRepresentation::kFloat64, Truncation::Any(),
    [all...]
  /external/clang/test/SemaCXX/
conversion-function.cpp 31 // expected-error{{conversion function cannot have any parameters}}
33 operator bool(int a = 4, int b = 6) const; // expected-error{{conversion function cannot have any parameters}}
188 // expected-error-re@-2 {{cannot specify any part of a return type in the declaration of a conversion function{{$}}}}
190 // expected-error-re@-4 {{cannot specify any part of a return type in the declaration of a conversion function; use an alias template to declare a conversion to 'T (&)()'{{$}}}}
226 struct Any {
227 Any(...);
236 Any any = Other(); local

Completed in 315 milliseconds

1 2 3 4