HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 26 - 50 of 3955) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/bench/
ResultsWriter.cpp 12 Json::Value* SkFindNamedNode(Json::Value* root, const char name[]) {
13 Json::Value* search_results = NULL;
14 for(Json::Value::iterator iter = root->begin();
25 Json::Value* new_val = &(root->append(Json::Value()));
  /frameworks/base/rs/java/android/renderscript/
Sampler.java 30 public enum Value {
40 Value(int id) {
45 Value mMin;
46 Value mMag;
47 Value mWrapS;
48 Value mWrapT;
49 Value mWrapR;
59 public Value getMinification() {
66 public Value getMagnification() {
73 public Value getWrapS()
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
util.h 11 class Value;
14 std::string SerializeValue(const base::Value* value);
  /external/chromium_org/extensions/browser/
extension_function_util.h 12 class Value;
19 // Reads the |value| as either a single integer value or a list of integers.
20 bool ReadOneOrMoreIntegers(base::Value* value, std::vector<int>* result);
  /external/llvm/tools/llvm-readobj/
StreamWriter.h 29 T Value;
37 HexNumber(int8_t Value) : Value(static_cast<uint8_t >(Value)) { }
38 HexNumber(int16_t Value) : Value(static_cast<uint16_t>(Value)) { }
39 HexNumber(int32_t Value) : Value(static_cast<uint32_t>(Value)) { }
    [all...]
  /external/llvm/include/llvm/Analysis/
ValueTracking.h 22 class Value;
38 void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
47 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
50 /// isKnownToBeAPowerOfTwo - Return true if the given value is known to have
54 /// returns true if the given value is either a power of two or zero.
55 bool isKnownToBeAPowerOfTwo(Value *V, bool OrZero = false, unsigned Depth = 0);
57 /// isKnownNonZero - Return true if the given value is known to be non-zero
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
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Sampler.java 43 public enum Value {
53 Value(int id) {
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 getWrapS()
    [all...]
  /external/llvm/lib/MC/
MCInstPrinter.cpp 60 static bool needsLeadingZero(uint64_t Value)
62 while(Value)
64 uint64_t digit = (Value >> 60) & 0xf;
67 Value <<= 4;
72 format_object1<int64_t> MCInstPrinter::formatDec(const int64_t Value) const {
73 return format("%" PRId64, Value);
76 format_object1<int64_t> MCInstPrinter::formatHex(const int64_t Value) const {
79 if (Value < 0)
80 return format("-0x%" PRIx64, -Value);
82 return format("0x%" PRIx64, Value);
    [all...]
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 116 void Write8(uint8_t Value) {
117 OS << char(Value);
120 void WriteLE16(uint16_t Value) {
121 Write8(uint8_t(Value >> 0));
122 Write8(uint8_t(Value >> 8));
125 void WriteLE32(uint32_t Value) {
126 WriteLE16(uint16_t(Value >> 0));
127 WriteLE16(uint16_t(Value >> 16));
130 void WriteLE64(uint64_t Value) {
131 WriteLE32(uint32_t(Value >> 0))
    [all...]
  /external/chromium_org/cc/resources/
raster_mode.cc 13 scoped_ptr<base::Value> RasterModeAsValue(RasterMode raster_mode) {
16 return scoped_ptr<base::Value>(
19 return scoped_ptr<base::Value>(
22 NOTREACHED() << "Unrecognized RasterMode value " << raster_mode;
23 return scoped_ptr<base::Value>(
24 new base::StringValue("<unknown RasterMode value>"));
  /external/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 22 class Value;
37 /// <=> Value Definition
53 /// Non-NULL return value will be a true or false constant.
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
  /external/lzma/CPP/7zip/UI/Common/
Property.h 11 UString Value;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Value.java 33 * An immutable symbolic value for semantic interpretation of bytecode.
37 public interface Value {
40 * Returns the size of this value in words.
  /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);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SamplerTest.java 20 import android.renderscript.Sampler.Value;
24 Sampler.Value[] mMinValues;
25 Sampler.Value[] mMagValues;
26 Sampler.Value[] mWrapValues;
32 mMinValues = new Sampler.Value[4];
33 mMinValues[0] = Sampler.Value.NEAREST;
34 mMinValues[1] = Sampler.Value.LINEAR;
35 mMinValues[2] = Sampler.Value.LINEAR_MIP_LINEAR;
36 mMinValues[3] = Sampler.Value.LINEAR_MIP_NEAREST;
38 mMagValues = new Sampler.Value[2]
    [all...]
  /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...]
  /external/llvm/include/llvm/ADT/
Statistic.h 39 volatile llvm::sys::cas_flag Value;
42 llvm::sys::cas_flag getValue() const { return Value; }
49 Value = 0; Initialized = false;
52 // Allow use of this class as the value itself.
53 operator unsigned() const { return Value; }
57 Value = Val;
63 // atomic operation to update the value safely in the presence of
64 // concurrent accesses, but not to read the return value, so the
65 // return value is not thread safe.
66 sys::AtomicIncrement(&Value);
    [all...]
StringSwitch.h 26 /// literals. The template type parameter \p T is the type of the value that
55 StringSwitch& Case(const char (&S)[N], const T& Value) {
58 Result = &Value;
65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
68 Result = &Value;
75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) {
78 Result = &Value;
86 const T& Value) {
87 return Case(S0, Value).Case(S1, Value);
    [all...]
  /external/chromium_org/tools/gn/
operators.cc 12 #include "tools/gn/value.h"
22 const Value& source,
23 Value* dest) {
26 if (source.type() == Value::STRING) {
32 if (source.type() != Value::LIST) {
39 const std::vector<Value>& source_list = source.list_value();
56 Value GetValueOrFillError(const BinaryOpNode* op_node,
61 Value value = node->Execute(scope, err); local
63 return Value();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPredicate.h 43 virtual Value evaluate() const OVERRIDE;
44 virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; }
46 Value m_value;
55 virtual Value evaluate() const OVERRIDE;
56 virtual Value::Type resultType() const OVERRIDE { return Value::StringValue; }
58 Value m_value;
63 virtual Value evaluate() const OVERRIDE;
64 virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue;
    [all...]

Completed in 907 milliseconds

12 3 4 5 6 7 8 91011>>