Searched defs:Value (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h32 } Value; typedef in typeref:struct:__anon1073
34 // TODO: Probably should make these const Value*?
35 int GetIntValue(Value value);
36 float GetFloatValue(Value value);
37 const char* GetStringValue(Value value);
38 const char* GetBufferValue(Value value);
39 char* GetMutableBufferValue(Value value);
40 int* GetIntArrayValue(Value value);
41 float* GetFloatArrayValue(Value value);
43 // TODO: Probably should make these const Value*
[all...]
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/annotation/
H A DTestAnnotation3.java24 public enum Value { enum in interface:TestAnnotation3
30 Value value();
/frameworks/native/include/binder/
H A DValue.h56 class Value { class in namespace:android::binder
58 Value();
59 virtual ~Value();
61 Value& swap(Value &);
73 bool operator==(const Value& rhs) const;
74 bool operator!=(const Value& rhs) const { return !this->operator==(rhs); }
76 Value(const Value& value);
77 Value(cons
156 Value(const String8& value): Value(String16(value)) { } function in class:android::binder::Value
157 Value(const ::std::string& value): Value(String8(value.c_str())) { } function in class:android::binder::Value
[all...]
/frameworks/native/libs/binder/include/binder/
H A DValue.h56 class Value { class in namespace:android::binder
58 Value();
59 virtual ~Value();
61 Value& swap(Value &);
73 bool operator==(const Value& rhs) const;
74 bool operator!=(const Value& rhs) const { return !this->operator==(rhs); }
76 Value(const Value& value);
77 Value(cons
156 Value(const String8& value): Value(String16(value)) { } function in class:android::binder::Value
157 Value(const ::std::string& value): Value(String8(value.c_str())) { } function in class:android::binder::Value
[all...]
/frameworks/native/libs/binder/
H A DValue.cpp17 #define LOG_TAG "Value"
19 #include <binder/Value.h>
40 using android::binder::Value;
82 class Value::ContentBase {
97 template<typename T> class Value::Content : public Value::ContentBase {
132 template<typename T> bool Value::ContentBase::get(T* out) const
146 Value::Value() : mContent(NULL) function in class:android::binder::Value
150 Value function in class:android::binder::Value
[all...]
/frameworks/compile/libbcc/lib/
H A DRSInvariant.cpp78 for (llvm::Value &Arg : F.args()) {
103 * Follow def->use chains rooted at Value through calculations
104 * "based on" Value (see the "based on" definition at
110 bool markInvariantUserLoads(llvm::Value *Value) { argument
112 for (llvm::Use &Use : Value->uses()) {
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DContiguousFIFOAggregator.java59 private final SparseArray<Value> mTasks;
78 mTasks = new SparseArray<Value>();
107 mTasks.put(hash, new Value(callback, null));
168 final Value value = mTasks.get(hash);
202 final Value value = mTasks.get(hash);
225 final Value value = mTasks.get(hash);
260 final Value value = mTasks.get(hash);
298 private class Value { class in class:ContiguousFIFOAggregator
303 Value(final Callback<T> callback, final Runnable task) { method in class:ContiguousFIFOAggregator.Value
/frameworks/base/cmds/statsd/src/
H A DFieldValue.cpp124 bool isAttributionUidField(const Field& field, const Value& value) {
132 Value::Value(const Value& from) { function in class:android::os::statsd::Value
152 std::string Value::toString() const {
167 bool Value::operator==(const Value& that) const {
184 bool Value::operator!=(const Value& that) const {
200 bool Value
[all...]
H A DFieldValue.h268 struct Value { struct in namespace:android::os::statsd
269 Value() : type(UNKNOWN) {} function in struct:android::os::statsd::Value
271 Value(int32_t v) { function in struct:android::os::statsd::Value
276 Value(int64_t v) { function in struct:android::os::statsd::Value
281 Value(float v) { function in struct:android::os::statsd::Value
286 Value(const std::string& v) { function in struct:android::os::statsd::Value
316 Value(const Value& from);
318 bool operator==(const Value& that) const;
319 bool operator!=(const Value
[all...]
/frameworks/base/services/core/java/com/android/server/accounts/
H A DTokenCache.java38 private static class Value { class in class:TokenCache
42 public Value(String token, long expiryEpochMillis) { method in class:TokenCache.Value
83 private static class TokenLruCache extends LruCache<Key, Value> {
116 protected int sizeOf(Key k, Value v) {
121 protected void entryRemoved(boolean evicted, Key k, Value oldVal, Value newVal) {
135 public void putToken(Key k, Value v) {
200 Value v = new Value(token, expiryMillis);
221 Value
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A DUT_single_source_alloc.java45 public int Value() { return value; } method in class:UT_single_source_alloc.rsDataType
71 s.invoke_CreateAndTestAlloc(dataType.Value(), vecSize);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_single_source_alloc.java47 public int Value() { return value; } method in class:UT_single_source_alloc.rsDataType
73 s.invoke_CreateAndTestAlloc(dataType.Value(), vecSize);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp109 Int Value) */
116 /* Value those bits value */
120 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value) argument
127 stream->word |= Value; /* assuming Value is not larger than Length */
136 stream->word |= ((UInt)Value >> Length);
144 /* we got new Length and Value */
145 /* note that Value is not "clean" because of msb are not masked out */
146 stream->word = Value;
157 /* Function : BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, UInt32 Value) */
168 BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, ULong Value) argument
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DSampler.java30 public enum Value { enum in class:Sampler
40 Value(int id) { method in class:Sampler.Value
45 Value mMin;
46 Value mMag;
47 Value mWrapS;
48 Value mWrapT;
49 Value mWrapR;
60 public Value getMinification() {
67 public Value getMagnification() {
74 public Value getWrap
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp30 static bool isIntOrIntVectorValue(const std::pair<const Value*, unsigned> &V) { argument
133 unsigned ValueEnumerator::getValueID(const Value *V) const {
138 assert(I != ValueMap.end() && "Value not in slotcalculator!");
157 const Value *V = I->first;
159 OS << "Value: " << V->getName();
161 OS << "Value: [null]\n";
196 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
197 const std::pair<const Value*, unsigned> &RHS) {
306 void ValueEnumerator::EnumerateValue(const Value *V) {
400 void ValueEnumerator::EnumerateOperandType(const Value *
[all...]
H A DBitcodeWriter.cpp526 static uint64_t GetOptimizationFlags(const Value *V) {
547 Value *V = MD->getValue();
814 const Value *V = Vals[i].first;
1049 static bool PushValueAndType(const Value *V, unsigned InstID,
1198 const Value *Callee(II->getCalledValue());
1651 static void WriteInt32ToBuffer(uint32_t Value, SmallVectorImpl<char> &Buffer, argument
1653 Buffer[Position + 0] = (unsigned char) (Value >> 0);
1654 Buffer[Position + 1] = (unsigned char) (Value >> 8);
1655 Buffer[Position + 2] = (unsigned char) (Value >> 16);
1656 Buffer[Position + 3] = (unsigned char) (Value >> 2
[all...]
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp30 static bool isIntOrIntVectorValue(const std::pair<const Value*, unsigned> &V) { argument
133 unsigned ValueEnumerator::getValueID(const Value *V) const {
138 assert(I != ValueMap.end() && "Value not in slotcalculator!");
157 const Value *V = I->first;
159 OS << "Value: " << V->getName();
161 OS << "Value: [null]\n";
196 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
197 const std::pair<const Value*, unsigned> &RHS) {
306 void ValueEnumerator::EnumerateValue(const Value *V) {
400 void ValueEnumerator::EnumerateOperandType(const Value *
[all...]
H A DBitcodeWriter.cpp524 static uint64_t GetOptimizationFlags(const Value *V) {
545 Value *V = MD->getValue();
812 const Value *V = Vals[i].first;
1047 static bool PushValueAndType(const Value *V, unsigned InstID,
1196 const Value *Callee(II->getCalledValue());
1715 static void WriteInt32ToBuffer(uint32_t Value, SmallVectorImpl<char> &Buffer, argument
1717 Buffer[Position + 0] = (unsigned char) (Value >> 0);
1718 Buffer[Position + 1] = (unsigned char) (Value >> 8);
1719 Buffer[Position + 2] = (unsigned char) (Value >> 16);
1720 Buffer[Position + 3] = (unsigned char) (Value >> 2
[all...]
/frameworks/compile/slang/BitWriter_3_2/
H A DValueEnumerator.cpp30 static bool isIntOrIntVectorValue(const std::pair<const Value*, unsigned> &V) { argument
133 unsigned ValueEnumerator::getValueID(const Value *V) const {
138 assert(I != ValueMap.end() && "Value not in slotcalculator!");
157 const Value *V = I->first;
159 OS << "Value: " << V->getName();
161 OS << "Value: [null]\n";
196 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
197 const std::pair<const Value*, unsigned> &RHS) {
306 void ValueEnumerator::EnumerateValue(const Value *V) {
400 void ValueEnumerator::EnumerateOperandType(const Value *
[all...]
H A DBitcodeWriter.cpp540 static uint64_t GetOptimizationFlags(const Value *V) {
575 Value *V = MD->getValue();
849 const Value *V = Vals[i].first;
1080 static bool PushValueAndType(const Value *V, unsigned InstID,
1229 const Value *Callee(II->getCalledValue());
1789 static void WriteInt32ToBuffer(uint32_t Value, SmallVectorImpl<char> &Buffer, argument
1791 Buffer[Position + 0] = (unsigned char) (Value >> 0);
1792 Buffer[Position + 1] = (unsigned char) (Value >> 8);
1793 Buffer[Position + 2] = (unsigned char) (Value >> 16);
1794 Buffer[Position + 3] = (unsigned char) (Value >> 2
[all...]
/frameworks/rs/rsov/compiler/spirit/
H A Dbuilder_test.cpp148 auto Value = b.MakeLoad(VF4Ty, Ptr); local
149 Blk->addInstruction(Value);
156 auto Result = b.MakeFSub(VF4Ty, ConstOneVF4, Value);
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DSampler.java43 public enum Value { enum in class:Sampler
53 Value(int id) { method in class:Sampler.Value
58 Value mMin;
59 Value mMag;
60 Value mWrapS;
61 Value mWrapT;
62 Value mWrapR;
72 public Value getMinification() {
79 public Value getMagnification() {
86 public Value getWrap
[all...]
/frameworks/base/tools/aapt2/
H A DResourceValues.h42 // type specific operations is to check the Value's type() and
45 class Value { class in namespace:aapt
47 virtual ~Value() = default;
95 virtual bool Equals(const Value* value) const = 0;
105 virtual Value* Clone(StringPool* new_pool) const = 0;
114 friend std::ostream& operator<<(std::ostream& out, const Value& value);
125 struct BaseValue : public Value {
131 struct Item : public Value {
167 bool Equals(const Value* value) const override;
186 bool Equals(const Value* valu
[all...]
/frameworks/ml/nn/tools/test_generator/
H A Dtest_generator.py213 class Value(NamedObject): class in inherits:NamedObject
220 class Operand(Value):
225 Value.__init__(self, name, vt)
376 def __init__(self, src: Value):
434 def Add(self, i1: Value, i2 = None) -> Operation:
455 def RawAdd(self, i1: Value, i2: Value, o = None) -> Operation:
551 def To(self, o:Value):
/frameworks/compile/slang/
H A Dslang_rs_reflection.cpp284 // If FromIntegerType == DestIntegerType, then Value is returned.
286 // Value, assumed to be of type FromIntegerType, to the integer type
294 static std::string ZeroExtendValue(const std::string &Value, argument
310 return Value;
332 return "((" + DestIntegerType + ") ((" + Value + ") & " + Mask + "))";

Completed in 484 milliseconds

12