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

1 2 3 4 5 6 7 8 91011>>

  /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...]
any_unittest.cc 10 #include <brillo/any.h>
13 using brillo::Any;
15 TEST(Any, Empty) {
16 Any val;
19 Any val2 = val;
23 Any val3 = std::move(val);
28 TEST(Any, SimpleTypes) {
29 Any val(20);
34 Any val2(3.1415926);
40 Any val3(std::string("blah"))
    [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/flatbuffers/tests/MyGame/Example/
Any.py 5 class Any(object):
Any.java 5 public final class Any {
6 private Any() { }
Any.cs 8 public enum Any : byte
  /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>";
  /frameworks/support/lifecycle/compiler/src/tests/kotlin/androidx/lifecycle/
InvalidCasesTest.kt 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 fun data(): Collection<Array<Any>> = listOf(
30 arrayOf<Any>("foo.InvalidFirstArg1", ErrorMessages.INVALID_FIRST_ARGUMENT),
31 arrayOf<Any>("foo.InvalidFirstArg2", ErrorMessages.INVALID_FIRST_ARGUMENT),
32 arrayOf<Any>("foo.InvalidSecondArg", ErrorMessages.INVALID_SECOND_ARGUMENT),
33 arrayOf<Any>("foo.TooManyArgs1", ErrorMessages.TOO_MANY_ARGS),
34 arrayOf<Any>("foo.TooManyArgs2", ErrorMessages.TOO_MANY_ARGS_NOT_ON_ANY),
35 arrayOf<Any>("foo.InvalidMethodModifier",
37 arrayOf<Any>("foo.InvalidClassModifier", ErrorMessages.INVALID_CLASS_MODIFIER),
38 arrayOf<Any>("foo.InvalidInheritance1"
    [all...]
  /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/skia/src/sfnt/
SkPanose.h 18 Any = 0,
29 Any = 0,
48 Any = 0,
63 Any = 0,
76 Any = 0,
92 Any = 0,
106 Any = 0,
121 Any = 0,
136 Any = 0,
155 Any = 0
    [all...]
  /external/skqp/src/sfnt/
SkPanose.h 18 Any = 0,
29 Any = 0,
48 Any = 0,
63 Any = 0,
76 Any = 0,
92 Any = 0,
106 Any = 0,
121 Any = 0,
136 Any = 0,
155 Any = 0
    [all...]
  /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...]
  /frameworks/support/core/ktx/src/main/java/androidx/core/text/
SpannableString.kt 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32 inline operator fun Spannable.plusAssign(span: Any) =
36 inline operator fun Spannable.minusAssign(span: Any) = removeSpan(span)
39 inline fun Spannable.clearSpans() = getSpans<Any>().forEach { removeSpan(it) }
53 inline operator fun Spannable.set(start: Int, end: Int, span: Any) {
69 inline operator fun Spannable.set(range: IntRange, span: Any) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MaxAspectRatio.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 public static class Any extends MaxAspectRatio {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ppc/
machine.s 7 .machine Any
  /external/tensorflow/tensorflow/contrib/gdr/
gdr_memory_manager.h 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 #include "google/protobuf/any.pb.h"
43 ::google::protobuf::Any* mutable_transport_options, const Tensor& tensor,
50 Tensor* tensor, const ::google::protobuf::Any& transport_options,
  /frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/utils/
Log.kt 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35 fun e(tag: String, message: String, vararg args: Any?) {
41 fun w(tag: String, message: String, vararg args: Any?) {
47 fun i(tag: String, message: String, vararg args: Any?) {
53 fun v(tag: String, message: String, vararg args: Any?) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Comdat.h 32 Any, ///< The linker may choose any COMDAT.
55 SelectionKind SK = Any;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
Comdat.h 32 Any, ///< The linker may choose any COMDAT.
55 SelectionKind SK = Any;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
Comdat.h 32 Any, ///< The linker may choose any COMDAT.
55 SelectionKind SK = Any;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
Comdat.h 32 Any, ///< The linker may choose any COMDAT.
55 SelectionKind SK = Any;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
Comdat.h 32 Any, ///< The linker may choose any COMDAT.
55 SelectionKind SK = Any;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
Comdat.h 32 Any, ///< The linker may choose any COMDAT.
55 SelectionKind SK = Any;

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 91011>>