HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 1 - 25 of 1612) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/webui/options/chromeos/
language_options_util.cc 10 Value* CreateValue(const char* in_value) {
11 return Value::CreateStringValue(in_value);
14 Value* CreateValue(int in_value) {
15 return Value::CreateIntegerValue(in_value);
  /system/media/mca/filterfw/native/core/
value.h 29 void* value; member in struct:__anon30792
32 } Value;
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)
    [all...]
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 13 // returning a constant ("and i32 %x, 0" -> "0") or an already existing value
25 class Value;
32 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
37 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
42 Value *SimplifyMulInst(Value *LHS, Value *RHS, const TargetData *TD = 0
    [all...]
CaptureTracking.h 18 class Value;
20 /// PointerMayBeCaptured - Return true if this pointer value may be captured
23 /// specifies whether returning the value (or part of it) from the function
25 /// whether storing the value (or part of it) into memory anywhere
27 bool PointerMayBeCaptured(const Value *V,
ValueTracking.h 24 class Value;
39 void ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero,
45 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
48 /// isPowerOfTwo - Return true if the given value is known to have exactly one
52 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
54 /// isKnownNonZero - Return true if the given value is known to be non-zero
58 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
69 bool MaskedValueIsZero(Value *V, const APInt &Mask,
81 unsigned ComputeNumSignBits(Value *Op, const TargetData *TD = 0,
89 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple
    [all...]
MemoryBuiltins.h 23 class Value;
29 /// isMalloc - Returns true if the value is either a malloc call or a bitcast of
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,
75 /// isFreeCall - Returns non-null if the value is a call to the builtin free(
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 21 class Value;
25 Value *CastToCStr(Value *V, IRBuilder<> &B);
29 /// return value has 'intptr_t' type.
30 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const TargetData *TD);
34 /// and the return value has 'i8*' type.
35 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const TargetData *TD);
38 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B
    [all...]
  /external/clang/test/CodeGen/
typedef.c 3 typedef struct { int i; } Value;
4 typedef Value *PValue;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_UnpackBlock2x2.c 41 int Flag, Value;
54 Value = *pSrc++;
55 Value = Value | ((*pSrc++)<<8);
56 if (Value & 0x8000)
58 Value -= 0x10000;
64 Value = *pSrc++;
65 if (Value & 0x80)
67 Value -= 0x100;
71 pDst[i] = (OMX_S16)Value;
    [all...]
armVCM4P10_UnpackBlock4x4.c 41 int Flag, Value;
54 Value = *pSrc++;
55 Value = Value | ((*pSrc++)<<8);
56 if (Value & 0x8000)
58 Value -= 0x10000;
64 Value = *pSrc++;
65 if (Value & 0x80)
67 Value -= 0x100;
71 pDst[i] = (OMX_S16)Value;
    [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 25 /// Hi_32 - This function returns the high 32 bits of a 64 bit value.
26 inline uint32_t Hi_32(uint64_t Value) {
27 return static_cast<uint32_t>(Value >> 32);
30 /// Lo_32 - This function returns the low 32 bits of a 64 bit value.
31 inline uint32_t Lo_32(uint64_t Value) {
32 return static_cast<uint32_t>(Value);
88 inline bool isMask_32(uint32_t Value) {
89 return Value && ((Value + 1) & Value) == 0
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathPredicate.h 43 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::Type resultType() const { return Value::NumberValue;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
Function.java 19 import com.google.clearsilver.jsilver.values.Value;
29 Value execute(Value... args);
  /external/llvm/include/llvm/Assembly/
Writer.h 24 class Value;
27 // WriteAsOperand - Write the name of the specified value out to the specified
33 void WriteAsOperand(raw_ostream &, const Value *, bool PrintTy = true,
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 114 void Write8(uint8_t Value) {
115 OS << char(Value);
118 void WriteLE16(uint16_t Value) {
119 Write8(uint8_t(Value >> 0));
120 Write8(uint8_t(Value >> 8));
123 void WriteLE32(uint32_t Value) {
124 WriteLE16(uint16_t(Value >> 0));
125 WriteLE16(uint16_t(Value >> 16));
128 void WriteLE64(uint64_t Value) {
129 WriteLE32(uint32_t(Value >> 0))
    [all...]
  /external/llvm/include/llvm/ADT/
InMemoryStruct.h 43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {}
44 InMemoryStruct(pointer Value) : Target(Value) {}
45 InMemoryStruct(const InMemoryStruct<T> &Value) { *this = Value; }
47 void operator=(const InMemoryStruct<T> &Value) {
48 if (Value.Target != &Value.Contents) {
49 Target = Value.Target
    [all...]
  /external/chromium/chrome/browser/chromeos/
cros_settings_provider.h 10 class Value;
20 void Set(const std::string& path, Value* in_value);
22 // Gets settings value of given |path| to |out_value|.
24 virtual bool Get(const std::string& path, Value** out_value) const = 0;
31 virtual void DoSet(const std::string& path, Value* in_value) = 0;
  /external/proguard/src/proguard/evaluation/value/
Category1Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 1 value.
28 public abstract class Category1Value extends Value
30 // Implementations for Value.
Category2Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 2 value.
28 public abstract class Category2Value extends Value
30 // Implementations for Value.
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
SubtractFunction.java 20 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]; local
31 return literalConstant(0 - value.asNumber(), value);
33 Value left = args[0];
34 Value right = args[1]
    [all...]
ExistsFunction.java 20 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]; local
30 return literalConstant(value.exists(), value);
NotFunction.java 20 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]; local
30 return literalConstant(!value.asBoolean(), value);
NumericFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
24 * #X (numeric). Forces a value to a number.
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(value.asNumber(), value);
  /external/chromium/chrome/browser/extensions/
extension_proxy_api.h 18 class Value;
30 virtual Value* ExtensionToBrowserPref(const Value* extension_pref,
32 virtual Value* BrowserToExtensionPref(const Value* browser_pref) OVERRIDE;
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
LengthFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
29 * @param args A single string value
30 * @return Length as number value
32 public Value execute(Value... args) {
33 Value value = args[0]; local
34 return literalConstant(value.asString().length(), value);
    [all...]

Completed in 1254 milliseconds

1 2 3 4 5 6 7 8 91011>>