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

1 2 3

  /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/org/mockito/internal/matchers/
Any.java 14 public class Any extends ArgumentMatcher implements Serializable {
17 public static final Any ANY = new Any();
19 private Any() {}
26 description.appendText("<any>");
  /external/llvm/include/llvm/IR/
Comdat.h 34 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).
327 Any,
  /external/v8/src/
field-type.cc 20 FieldType* FieldType::Any() {
30 Handle<FieldType> FieldType::Any(Isolate* isolate) {
31 return handle(Any(), isolate);
44 DCHECK(object == None() || object == Any() || object->IsMap());
73 if (IsAny()) return Type::Any();
81 os << "Any";
  /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) {
  /external/v8/src/compiler/
type-hints.h 32 static BinaryOperationHints Any() {
87 static CompareOperationHints Any() {
representation-change.h 24 static Truncation Any() { return Truncation(TruncationKind::kAny); }
121 return UseInfo(MachineRepresentation::kTagged, Truncation::Any());
126 return UseInfo(MachineRepresentation::kWord32, Truncation::Any(),
130 return UseInfo(MachineRepresentation::kFloat64, Truncation::Any(),
135 static UseInfo Any() {
136 return UseInfo(MachineRepresentation::kNone, Truncation::Any());
159 // Eagerly folds any representation changes for constants.
  /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/chromium-trace/catapult/third_party/pipeline/pipeline/
common.py 13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
83 class Any(pipeline.Pipeline):
84 """Returns True if any of the values are True."""
  /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/clang/test/SemaCXX/
conversion-function.cpp 28 // expected-error{{conversion function cannot have any parameters}}
30 operator bool(int a = 4, int b = 6) const; // expected-error{{conversion function cannot have any parameters}}
178 template<typename T> (&operator T())(); // expected-error-re {{cannot specify any part of a return type in the declaration of a conversion function{{$}}}}
208 struct Any {
209 Any(...);
218 Any any = Other(); // expected-error{{cannot pass object of non-POD type 'Other' through variadic constructor; call will abort at runtime}} local
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 380 /// 1) Any - indicates no constraint, any dependence is possible.
389 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind;
411 /// isAny - Return true if the constraint is of kind Any;
412 bool isAny() const { return Kind == Any; }
454 /// setAny - Change a constraint to Any.
589 /// Returns true if any possible dependence is disproved.
601 /// Returns true if any possible dependence is disproved.
620 /// Returns true if any possible dependence is disproved.
640 /// Returns true if any possible dependence is disproved
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/
univ.py     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineValueType.h 27 /// processor targeted by LLVM occurs here. This means that any legal value
151 // target to any address space. This must only be used internal to
155 // vAny - A vector with any length and element size. This is used
160 // fAny - Any floating-point or vector floating-point value. This is used
165 // iAny - An integer or vector integer value of any bit width. This is
174 // Any - Any type. This is used for intrinsics that have overloadings.
176 Any = 256
278 return (SimpleTy==MVT::Any ||
434 case Any
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 266 // Otherwise, add any offset that our operands provide.
682 bool Any = false;
691 Any = true;
701 if (!Any)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdtypes.h 53 WSDXML_ELEMENT *Any;
57 WSDXML_ELEMENT *Any;
66 WSDXML_ELEMENT *Any;
147 WSDXML_ELEMENT *Any;
183 WSDXML_ELEMENT *Any;
201 WSDXML_ELEMENT *Any;
205 WSDXML_ELEMENT *any; member in struct:_REQUESTBODY_Unsubscribe
219 WSDXML_ELEMENT *any; member in struct:_RESPONSEBODY_GetStatus
224 WSDXML_ELEMENT *Any;
230 WSDXML_ELEMENT *Any;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 252 /// Whether any complex addressing has a base register.
255 /// The scale of any complex addressing.
540 // Handle the trivial case, which works for any SCEV type.
809 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
813 /// If any of the instructions is the specified set are trivially dead, delete
814 /// them and see if this makes any of their operands subsequently dead.
883 // Once any of the metrics loses, they must all remain losers.
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
cdi-api-1.0.jar 
  /prebuilts/tools/common/m2/repository/javax/enterprise/cdi-api/1.0/
cdi-api-1.0.jar 

Completed in 1373 milliseconds

1 2 3