Searched refs:Value (Results 1 - 25 of 1587) 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/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);
36 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const TargetData *TD);
39 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr
[all...]
H A DCmpInstAnalysis.h22 class Value;
37 /// <=> Value Definition
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/external/clang/test/CodeGen/
H A Dtypedef.c3 typedef struct { int i; } Value; typedef in typeref:struct:__anon3787
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...]
H A DMemoryBuiltins.h23 class Value;
31 bool isMalloc(const Value *I);
36 const CallInst *extractMallocCall(const Value *I);
37 CallInst *extractMallocCall(Value *I);
41 const CallInst *extractMallocCallFromBitCast(const Value *I);
42 CallInst *extractMallocCallFromBitCast(Value *I);
47 const CallInst *isArrayMalloc(const Value *I, const TargetData *TD);
68 Value *getMallocArraySize(CallInst *CI, const TargetData *TD,
76 const CallInst *isFreeCall(const Value *I);
78 static inline CallInst *isFreeCall(Value *
[all...]
/external/llvm/include/llvm/Support/
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/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/MC/
H A DMCObjectWriter.h111 void Write8(uint8_t Value) { argument
112 OS << char(Value);
115 void WriteLE16(uint16_t Value) { argument
116 Write8(uint8_t(Value >> 0));
117 Write8(uint8_t(Value >> 8));
120 void WriteLE32(uint32_t Value) { argument
121 WriteLE16(uint16_t(Value >> 0));
122 WriteLE16(uint16_t(Value >> 16));
125 void WriteLE64(uint64_t Value) { argument
126 WriteLE32(uint32_t(Value >>
130 WriteBE16(uint16_t Value) argument
135 WriteBE32(uint32_t Value) argument
140 WriteBE64(uint64_t Value) argument
145 Write16(uint16_t Value) argument
152 Write32(uint32_t Value) argument
159 Write64(uint64_t Value) 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/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...]
/external/llvm/lib/VMCore/
H A DIntrinsicInst.cpp34 static Value *CastOperand(Value *C) {
41 Value *DbgInfoIntrinsic::StripCast(Value *C) {
42 if (Value *CO = CastOperand(C)) {
46 if (Value *CO = CastOperand(GV->getInitializer()))
56 Value *DbgDeclareInst::getAddress() const {
67 const Value *DbgValueInst::getValue() const {
71 Value *DbgValueInst::getValue() {

Completed in 392 milliseconds

1234567891011>>