Searched refs:Value (Results 1 - 25 of 1611) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Dlanguage_options_util.cc10 Value* CreateValue(const char* in_value) {
11 return Value::CreateStringValue(in_value);
14 Value* CreateValue(int in_value) {
15 return Value::CreateIntegerValue(in_value);
/external/clang/lib/StaticAnalyzer/Core/
H A DAPSIntType.cpp16 APSIntType::testInRange(const llvm::APSInt &Value) const {
18 if (IsUnsigned && Value.isSigned() && Value.isNegative())
26 if (Value.isSigned())
27 MinBits = Value.getMinSignedBits() - IsUnsigned;
29 MinBits = Value.getActiveBits() + !IsUnsigned;
34 if (Value.isSigned() && Value.isNegative())
/external/clang/test/CodeGen/
H A Dtypedef.c3 typedef struct { int i; } Value; typedef in typeref:struct:__anon4268
4 typedef Value *PValue;
/external/llvm/include/llvm/Analysis/
H A DValueTracking.h22 class Value;
39 void ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne,
45 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
53 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, bool OrZero = false,
60 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
71 bool MaskedValueIsZero(Value *V, const APInt &Mask,
83 unsigned ComputeNumSignBits(Value *Op, const TargetData *TD = 0,
91 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
98 bool CannotBeNegativeZero(const Value *
[all...]
H A DInstructionSimplify.h30 class Value;
34 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
41 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
48 Value *SimplifyMulInst(Value *LHS, Value *RH
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h21 class Value;
26 Value *CastToCStr(Value *V, IRBuilder<> &B);
31 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const TargetData *TD,
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
43 Value *EmitStrChr(Value *Pt
[all...]
H A DCmpInstAnalysis.h22 class Value;
37 /// <=> Value Definition
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunction.java19 import com.google.clearsilver.jsilver.values.Value;
29 Value execute(Value... args);
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp3 struct Value { struct
4 constexpr Value(int n) : n(n) {} function in struct:Value
15 void test(Value v) {
19 case Value(2):
26 case Value(2):
35 case Value(2):
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dp9.cpp9 template<typename T, T Value>
12 template<typename T, T Value>
13 void f(X<T, Value>);
20 template<typename T, T Value, typename U>
21 void f2(X<T, Value>, X<U, Value>);
/external/llvm/include/llvm/Support/
H A DLEB128.h23 static inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { argument
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
38 static inline void encodeULEB128(uint64_t Value, raw_ostream &OS, argument
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7;
43 if (Value != 0 || Padding != 0)
46 } while (Value !
58 encodeULEB128(uint64_t Value, uint8_t *p, unsigned Padding = 0) argument
82 uint64_t Value = 0; local
[all...]
H A DMathExtras.h26 inline uint32_t Hi_32(uint64_t Value) { argument
27 return static_cast<uint32_t>(Value >> 32);
31 inline uint32_t Lo_32(uint64_t Value) { argument
32 return static_cast<uint32_t>(Value);
102 inline bool isMask_32(uint32_t Value) { argument
103 return Value && ((Value + 1) & Value) == 0;
109 inline bool isMask_64(uint64_t Value) { argument
110 return Value
116 isShiftedMask_32(uint32_t Value) argument
122 isShiftedMask_64(uint64_t Value) argument
128 isPowerOf2_32(uint32_t Value) argument
134 isPowerOf2_64(uint64_t Value) argument
140 ByteSwap_16(uint16_t Value) argument
146 ByteSwap_32(uint32_t Value) argument
152 ByteSwap_64(uint64_t Value) argument
160 CountLeadingZeros_32(uint32_t Value) argument
188 CountLeadingOnes_32(uint32_t Value) argument
196 CountLeadingZeros_64(uint64_t Value) argument
240 CountLeadingOnes_64(uint64_t Value) argument
248 CountTrailingZeros_32(uint32_t Value) argument
265 CountTrailingOnes_32(uint32_t Value) argument
273 CountTrailingZeros_64(uint64_t Value) argument
292 CountTrailingOnes_64(uint64_t Value) argument
299 CountPopulation_32(uint32_t Value) argument
311 CountPopulation_64(uint64_t Value) argument
325 Log2_32(uint32_t Value) argument
331 Log2_64(uint64_t Value) argument
338 Log2_32_Ceil(uint32_t Value) argument
344 Log2_64_Ceil(uint64_t Value) argument
442 RoundUpToAlignment(uint64_t Value, uint64_t Align) argument
449 OffsetToAlignment(uint64_t Value, uint64_t Align) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DInMemoryStruct.h43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} argument
44 InMemoryStruct(pointer Value) : Target(Value) {} argument
45 InMemoryStruct(const InMemoryStruct<T> &Value) { *this = Value; } argument
47 void operator=(const InMemoryStruct<T> &Value) { argument
48 if (Value.Target != &Value.Contents) {
49 Target = Value
[all...]
H A DStringSwitch.h55 StringSwitch& Case(const char (&S)[N], const T& Value) { argument
58 Result = &Value;
65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { argument
68 Result = &Value;
75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { argument
78 Result = &Value;
86 const T& Value) {
87 return Case(S0, Value).Case(S1, Value);
92 const char (&S2)[N2], const T& Value) {
85 Cases(const char (&S0)[N0], const char (&S1)[N1], const T& Value) argument
91 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const T& Value) argument
97 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T& Value) argument
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
[all...]
/external/llvm/include/llvm/MC/
H A DMCObjectWriter.h112 void Write8(uint8_t Value) { argument
113 OS << char(Value);
116 void WriteLE16(uint16_t Value) { argument
117 Write8(uint8_t(Value >> 0));
118 Write8(uint8_t(Value >> 8));
121 void WriteLE32(uint32_t Value) { argument
122 WriteLE16(uint16_t(Value >> 0));
123 WriteLE16(uint16_t(Value >> 16));
126 void WriteLE64(uint64_t Value) { argument
127 WriteLE32(uint32_t(Value >>
131 WriteBE16(uint16_t Value) argument
136 WriteBE32(uint32_t Value) argument
141 WriteBE64(uint64_t Value) argument
146 Write16(uint16_t Value) argument
153 Write32(uint32_t Value) argument
160 Write64(uint64_t Value) argument
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DCategory1Value.java28 public abstract class Category1Value extends Value
30 // Implementations for Value.
H A DCategory2Value.java28 public abstract class Category2Value extends Value
30 // Implementations for Value.
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
H A DSubtractFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
30 Value value = args[0];
33 Value left = args[0];
34 Value right = args[1];
H A DExistsFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0];
H A DNotFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0];
H A DNumericFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0];
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
H A DLengthFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
32 public Value execute(Value... args) {
33 Value value = args[0];
/external/webkit/Source/WebCore/xml/
H A DXPathPredicate.h43 virtual Value evaluate() const;
44 virtual Value::Type resultType() const { return Value::NumberValue; }
46 Value m_value;
53 virtual Value evaluate() const;
54 virtual Value::Type resultType() const { return Value::StringValue; }
56 Value m_value;
61 virtual Value evaluate() const;
62 virtual Value
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DDoubleKeyMap.java9 public class DoubleKeyMap<Key1, Key2, Value> {
10 Map<Key1, Map<Key2, Value>> data = new LinkedHashMap<Key1, Map<Key2, Value>>();
12 public Value put(Key1 k1, Key2 k2, Value v) {
13 Map<Key2, Value> data2 = data.get(k1);
14 Value prev = null;
16 data2 = new LinkedHashMap<Key2, Value>();
26 public Value get(Key1 k1, Key2 k2) {
27 Map<Key2, Value> data
[all...]
/external/llvm/include/llvm/
H A DValue.h1 //===-- llvm/Value.h - Definition of the Value class ------------*- C++ -*-===//
10 // This file declares the Value class.
33 typedef StringMapEntry<Value*> ValueName;
44 // Value Class
48 /// computed by a program that may be used as operands to other values. Value is
50 /// All Values have a Type. Type is not a subclass of Value. Some values can
51 /// have a name and they belong to some Module. Setting the name on the Value
55 /// using this Value. A Value ca
60 class Value { class in namespace:llvm
[all...]

Completed in 385 milliseconds

1234567891011>>