Home
last modified time | relevance | path

Searched refs:Value (Results 1 – 25 of 3539) sorted by relevance

12345678910>>...142

/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp24 VariantValue Value = kUnsigned; in TEST() local
26 EXPECT_TRUE(Value.isUnsigned()); in TEST()
27 EXPECT_EQ(kUnsigned, Value.getUnsigned()); in TEST()
29 EXPECT_TRUE(Value.hasValue()); in TEST()
30 EXPECT_FALSE(Value.isString()); in TEST()
31 EXPECT_FALSE(Value.isMatcher()); in TEST()
36 VariantValue Value = kString; in TEST() local
38 EXPECT_TRUE(Value.isString()); in TEST()
39 EXPECT_EQ(kString, Value.getString()); in TEST()
40 EXPECT_EQ("String", Value.getTypeAsString()); in TEST()
[all …]
/external/llvm/tools/llvm-readobj/
DStreamWriter.h29 T Value; member
37 HexNumber(int8_t Value) : Value(static_cast<uint8_t >(Value)) { } in HexNumber()
38 HexNumber(int16_t Value) : Value(static_cast<uint16_t>(Value)) { } in HexNumber()
39 HexNumber(int32_t Value) : Value(static_cast<uint32_t>(Value)) { } in HexNumber()
40 HexNumber(int64_t Value) : Value(static_cast<uint64_t>(Value)) { } in HexNumber()
41 HexNumber(uint8_t Value) : Value(Value) { } in HexNumber()
42 HexNumber(uint16_t Value) : Value(Value) { } in HexNumber()
43 HexNumber(uint32_t Value) : Value(Value) { } in HexNumber()
44 HexNumber(uint64_t Value) : Value(Value) { } in HexNumber()
45 uint64_t Value; member
[all …]
DARMAttributeParser.cpp76 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseInteger() local
78 return Value; in ParseInteger()
106 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value, in PrintAttribute() argument
112 SW.printNumber("Value", Value); in PrintAttribute()
127 uint64_t Value = ParseInteger(Data, Offset); in CPU_arch() local
129 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in CPU_arch()
130 PrintAttribute(Tag, Value, ValueDesc); in CPU_arch()
154 uint64_t Value = ParseInteger(Data, Offset); in ARM_ISA_use() local
156 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in ARM_ISA_use()
157 PrintAttribute(Tag, Value, ValueDesc); in ARM_ISA_use()
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DBuildLibCalls.h21 class Value; variable
26 Value *CastToCStr(Value *V, IRBuilder<> &B);
31 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout *TD,
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
43 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const DataLayout *TD,
47 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
52 Value *EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
58 Value *EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
65 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
71 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
[all …]
/external/llvm/include/llvm/Analysis/
DInstructionSimplify.h46 class Value; variable
50 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
57 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
64 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF,
71 Value *SimplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF,
78 Value *SimplifyFMulInst(Value *LHS, Value *RHS,
86 Value *SimplifyMulInst(Value *LHS, Value *RHS, const DataLayout *TD = nullptr,
92 Value *SimplifySDivInst(Value *LHS, Value *RHS,
99 Value *SimplifyUDivInst(Value *LHS, Value *RHS,
106 Value *SimplifyFDivInst(Value *LHS, Value *RHS,
[all …]
DValueTracking.h22 class Value; variable
38 void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
47 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
55 bool isKnownToBeAPowerOfTwo(Value *V, bool OrZero = false, unsigned Depth = 0);
61 bool isKnownNonZero(Value *V, const DataLayout *TD = nullptr,
73 bool MaskedValueIsZero(Value *V, const APInt &Mask,
85 unsigned ComputeNumSignBits(Value *Op, const DataLayout *TD = nullptr,
93 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
100 bool CannotBeNegativeZero(const Value *V, unsigned Depth = 0);
107 Value *isBytewiseValue(Value *V);
[all …]
/external/chromium_org/tools/gn/
Doperators.cc22 const Value& source, in AppendFilteredSourcesToValue()
23 Value* dest) { in AppendFilteredSourcesToValue()
26 if (source.type() == Value::STRING) { in AppendFilteredSourcesToValue()
32 if (source.type() != Value::LIST) { in AppendFilteredSourcesToValue()
39 const std::vector<Value>& source_list = source.list_value(); in AppendFilteredSourcesToValue()
56 Value GetValueOrFillError(const BinaryOpNode* op_node, in GetValueOrFillError()
61 Value value = node->Execute(scope, err); in GetValueOrFillError()
63 return Value(); in GetValueOrFillError()
64 if (value.type() == Value::NONE) { in GetValueOrFillError()
70 return Value(); in GetValueOrFillError()
[all …]
Dfunctions.h22 class Value; variable
31 typedef Value (*SelfEvaluatingArgsFunction)(Scope* scope,
37 typedef Value (*GenericBlockFunction)(Scope* scope,
39 const std::vector<Value>& args,
46 typedef Value(*ExecutedBlockFunction)(const FunctionCallNode* function,
47 const std::vector<Value>& args,
52 typedef Value (*NoBlockFunction)(Scope* scope,
54 const std::vector<Value>& args,
60 Value RunAction(Scope* scope,
62 const std::vector<Value>& args,
[all …]
/external/llvm/include/llvm/IR/
DIRBuilder.h248 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
369 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align,
374 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
381 CallInst *CreateMemCpy(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
388 CallInst *CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
397 CallInst *CreateMemMove(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
402 CallInst *CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
408 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = nullptr);
413 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = nullptr);
416 Value *getCastedInt8PtrValue(Value *Ptr);
[all …]
DValue.h50 typedef StringMapEntry<Value*> ValueName;
69 class Value {
99 friend class Value; variable
140 friend class Value; variable
182 void operator=(const Value &) LLVM_DELETED_FUNCTION;
183 Value(const Value &) LLVM_DELETED_FUNCTION;
186 Value(Type *Ty, unsigned scid);
188 virtual ~Value();
232 void takeName(Value *V);
238 void replaceAllUsesWith(Value *V);
[all …]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
61 LValue *mkLoad(DataType, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 Instruction *mkMov(Value *, Value *, DataType = TYPE_U32);
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
61 LValue *mkLoad(DataType, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 Instruction *mkMov(Value *, Value *, DataType = TYPE_U32);
[all …]
/external/llvm/lib/Target/X86/AsmParser/
DX86AsmParserCommon.h15 inline bool isImmSExti16i8Value(uint64_t Value) { in isImmSExti16i8Value() argument
16 return (( Value <= 0x000000000000007FULL)|| in isImmSExti16i8Value()
17 (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)|| in isImmSExti16i8Value()
18 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL)); in isImmSExti16i8Value()
21 inline bool isImmSExti32i8Value(uint64_t Value) { in isImmSExti32i8Value() argument
22 return (( Value <= 0x000000000000007FULL)|| in isImmSExti32i8Value()
23 (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)|| in isImmSExti32i8Value()
24 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL)); in isImmSExti32i8Value()
27 inline bool isImmZExtu32u8Value(uint64_t Value) { in isImmZExtu32u8Value() argument
28 return (Value <= 0x00000000000000FFULL); in isImmZExtu32u8Value()
[all …]
/external/regex-re2/util/
Dsparse_array.h99 template<typename Value>
161 inline iterator set(int i, Value v);
167 inline Value get(int i, Value defaultv) const;
175 inline iterator set_existing(int i, Value v);
179 inline iterator set_new(int i, Value v);
183 inline Value get_existing(int i) const;
232 template<typename Value>
233 SparseArray<Value>::SparseArray() in SparseArray()
237 template<typename Value>
238 class SparseArray<Value>::IndexValue {
[all …]
/external/chromium_org/third_party/re2/util/
Dsparse_array.h99 template<typename Value>
161 inline iterator set(int i, Value v);
167 inline Value get(int i, Value defaultv) const;
175 inline iterator set_existing(int i, Value v);
179 inline iterator set_new(int i, Value v);
183 inline Value get_existing(int i) const;
232 template<typename Value>
233 SparseArray<Value>::SparseArray() in SparseArray()
238 template<typename Value>
239 class SparseArray<Value>::IndexValue {
[all …]
/external/chromium_org/chrome/browser/policy/
Dconfiguration_policy_handler_list_factory.cc68 base::Value::TYPE_STRING },
71 base::Value::TYPE_BOOLEAN },
74 base::Value::TYPE_LIST },
77 base::Value::TYPE_BOOLEAN },
80 base::Value::TYPE_BOOLEAN },
83 base::Value::TYPE_BOOLEAN },
86 base::Value::TYPE_BOOLEAN },
89 base::Value::TYPE_BOOLEAN },
92 base::Value::TYPE_BOOLEAN },
95 base::Value::TYPE_BOOLEAN },
[all …]
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathFunctions.cpp76 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
77 virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; } in resultType()
83 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
84 virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; } in resultType()
90 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
91 virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; } in resultType()
95 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
96 virtual Value::Type resultType() const OVERRIDE { return Value::NodeSetValue; } in resultType()
100 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
101 virtual Value::Type resultType() const OVERRIDE { return Value::StringValue; } in resultType()
[all …]
/external/chromium_org/third_party/webrtc/base/
Djson.h30 bool GetIntFromJson(const Json::Value& in, int* out);
31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);
32 bool GetStringFromJson(const Json::Value& in, std::string* out);
33 bool GetBoolFromJson(const Json::Value& in, bool* out);
34 bool GetDoubleFromJson(const Json::Value& in, double* out);
37 bool GetValueFromJsonArray(const Json::Value& in, size_t n,
38 Json::Value* out);
39 bool GetIntFromJsonArray(const Json::Value& in, size_t n,
41 bool GetUIntFromJsonArray(const Json::Value& in, size_t n,
43 bool GetStringFromJsonArray(const Json::Value& in, size_t n,
[all …]
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
Djson_value.cpp37 static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = {0};
38 const Value& Value::null = reinterpret_cast<const Value&>(kNull);
40 const Int Value::minInt = Int( ~(UInt(-1)/2) );
41 const Int Value::maxInt = Int( UInt(-1)/2 );
42 const UInt Value::maxUInt = UInt(-1);
44 const Int64 Value::minInt64 = Int64( ~(UInt64(-1)/2) );
45 const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 );
46 const UInt64 Value::maxUInt64 = UInt64(-1);
52 const LargestInt Value::minLargestInt = LargestInt( ~(LargestUInt(-1)/2) );
53 const LargestInt Value::maxLargestInt = LargestInt( LargestUInt(-1)/2 );
[all …]
/external/jsoncpp/chromium-overrides/src/lib_json/
Djson_value.cpp31 static const unsigned char kNull[sizeof(Value)] = { 0 };
32 const Value& Value::null = reinterpret_cast<const Value&>(kNull);
34 const Int Value::minInt = Int( ~(UInt(-1)/2) );
35 const Int Value::maxInt = Int( UInt(-1)/2 );
36 const UInt Value::maxUInt = UInt(-1);
38 const Int64 Value::minInt64 = Int64( ~(UInt64(-1)/2) );
39 const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 );
40 const UInt64 Value::maxUInt64 = UInt64(-1);
46 const LargestInt Value::minLargestInt = LargestInt( ~(LargestUInt(-1)/2) );
47 const LargestInt Value::maxLargestInt = LargestInt( LargestUInt(-1)/2 );
[all …]
/external/llvm/include/llvm/Object/
DRelocVisitor.h31 int64_t Value; member
36 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {} in RelocToApply()
37 RelocToApply() : Value(0), Width(0) {} in RelocToApply()
50 uint64_t Value = 0) {
56 return visitELF_X86_64_64(R, Value);
58 return visitELF_X86_64_PC32(R, Value, SecAddr);
60 return visitELF_X86_64_32(R, Value);
62 return visitELF_X86_64_32S(R, Value);
72 return visitELF_386_32(R, Value);
74 return visitELF_386_PC32(R, Value, SecAddr);
[all …]
/external/jsoncpp/src/lib_json/
Djson_value.cpp29 const Value Value::null;
30 const Int Value::minInt = Int( ~(UInt(-1)/2) );
31 const Int Value::maxInt = Int( UInt(-1)/2 );
32 const UInt Value::maxUInt = UInt(-1);
34 const Int64 Value::minInt64 = Int64( ~(UInt64(-1)/2) );
35 const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 );
36 const UInt64 Value::maxUInt64 = UInt64(-1);
42 const LargestInt Value::minLargestInt = LargestInt( ~(LargestUInt(-1)/2) );
43 const LargestInt Value::maxLargestInt = LargestInt( LargestUInt(-1)/2 );
44 const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
[all …]
/external/jsoncpp/chromium-overrides/include/json/
Dvalue.h118 class JSON_API Value
139 static const Value& null;
193 typedef std::map<CZString, Value> ObjectValues;
195 typedef CppTL::SmallMap<CZString, Value> ObjectValues;
216 Value( ValueType type = nullValue );
217 Value( Int value );
218 Value( UInt value );
220 Value( Int64 value );
221 Value( UInt64 value );
223 Value( double value );
[all …]
/external/chromium_org/third_party/jsoncpp/overrides/include/json/
Dvalue.h118 class JSON_API Value
139 static const Value& null;
193 typedef std::map<CZString, Value> ObjectValues;
195 typedef CppTL::SmallMap<CZString, Value> ObjectValues;
216 Value( ValueType type = nullValue );
217 Value( Int value );
218 Value( UInt value );
220 Value( Int64 value );
221 Value( UInt64 value );
223 Value( double value );
[all …]
/external/jsoncpp/include/json/
Dvalue.h118 class JSON_API Value
139 static const Value null;
193 typedef std::map<CZString, Value> ObjectValues;
195 typedef CppTL::SmallMap<CZString, Value> ObjectValues;
216 Value( ValueType type = nullValue );
217 Value( Int value );
218 Value( UInt value );
220 Value( Int64 value );
221 Value( UInt64 value );
223 Value( double value );
[all …]

12345678910>>...142