HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 126 - 150 of 2613) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ArrayRegion.java 31 private Value[] values;
39 values = new Value[length];
43 * @param index Index of value to return
44 * @return Returns the value.
46 public Value getValue(int index) {
51 * @param index Index of value
52 * @param value Value to set
54 public void setValue(int index, Value value) {
    [all...]
  /external/clang/include/clang/AST/
GlobalDecl.h 29 llvm::PointerIntPair<const Decl*, 2> Value;
35 Value.setPointer(D);
48 : Value(D, Type) {}
50 : Value(D, Type) {}
54 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
55 CanonGD.Value.setInt(Value.getInt());
60 const Decl *getDecl() const { return Value.getPointer(); }
64 return static_cast<CXXCtorType>(Value.getInt())
121 static const bool value = true; member in struct:llvm::isPodLike
    [all...]
  /external/libchrome/base/json/
json_writer.h 17 class Value;
22 // This option instructs the writer that if a Binary value is encountered,
23 // the value (and key if within a dictionary) will be omitted from the
24 // output, and success will be returned. Otherwise, if a binary value is
30 // or appending a '.0') as long as the value is within the range of a
43 static bool Write(const Value& node, std::string* json);
47 static bool WriteWithOptions(const Value& node,
56 bool BuildJSONString(const Value& node, size_t depth);
  /external/libweave/include/weave/test/
unittest_utils.h 17 // Helper method to create base::Value from a string as a smart pointer.
20 std::unique_ptr<base::Value> CreateValue(const std::string& json);
22 std::string ValueToString(const base::Value& value);
28 inline bool IsEqualValue(const base::Value& val1, const base::Value& val2) {
  /external/libweave/third_party/chromium/base/json/
json_writer.h 17 class Value;
22 // This option instructs the writer that if a Binary value is encountered,
23 // the value (and key if within a dictionary) will be omitted from the
24 // output, and success will be returned. Otherwise, if a binary value is
30 // or appending a '.0') as long as the value is within the range of a
43 static bool Write(const Value& node, std::string* json);
47 static bool WriteWithOptions(const Value& node,
56 bool BuildJSONString(const Value& node, size_t depth);
  /external/parameter-framework/upstream/test/functional-tests/include/
Test.hpp 48 /** Value to test with a title.
63 template <class Value>
67 Value payload;
81 * // ^~~~~~~~~~~ Value to test
84 * test.payload //< value to test
91 * Beware that if Value is not copyable, only movable this will
96 * template <class Value>
97 * using MovableTests = Test<value>[];
100 * template <class Value, size_t size>
101 * using MovableTests = Test<value>[size]
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 21 package proguard.evaluation.value;
31 private final Value value1;
32 private final Value value2;
36 * Creates a new comparison integer value of the two given scalar values.
38 public ComparisonValue(Value value1,
39 Value value2)
  /external/v8/include/
v8-debug.h 80 * client_data data value passed into Debug::SendCommand along with the
121 virtual Local<Value> GetCallbackData() const = 0;
159 Local<Value> data = Local<Value>());
162 EventCallback that, Local<Value> data = Local<Value>()));
203 Local<Value> Call(v8::Local<v8::Function> fun,
204 Local<Value> data = Local<Value>()));
206 static MaybeLocal<Value> Call(Local<Context> context
    [all...]
  /external/clang/test/CodeGenCXX/
pragma-unroll.cpp 54 void for_define_test(int *List, int Length, int Value) {
59 List[i] = i * Value;
65 void for_template_test(A *List, int Length, A Value) {
70 List[i] = i * Value;
76 void for_template_define_test(A *List, int Length, A Value) {
82 List[i] = i * Value;
90 double Value = 10;
92 for_template_test<double>(List, Length, Value);
93 for_template_define_test<double>(List, Length, Value);
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 37 class SCEVExpander : public SCEVVisitor<SCEVExpander, Value*> {
45 std::map<std::pair<const SCEV *, Instruction *>, TrackingVH<Value> >
48 std::set<AssertingVH<Value> > InsertedValues;
49 std::set<AssertingVH<Value> > InsertedPostIncValues;
90 friend struct SCEVVisitor<SCEVExpander, Value*>;
152 Value *expandCodeFor(const SCEV *SH, Type *Ty, Instruction *I);
156 /// The result will be of type i1 and will have a value of 0 when the
158 Value *expandCodeForPredicate(const SCEVPredicate *Pred, Instruction *Loc);
162 Value *expandEqualPredicate(const SCEVEqualPredicate *Pred,
167 Value *expandUnionPredicate(const SCEVUnionPredicate *Pred
    [all...]
ScalarEvolutionNormalization.h 27 // "pre-incremented" value, and uses after the loop using the
28 // "post-incremented" value.
48 class Value;
71 Value *OperandValToReplace,
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 126 void write8(uint8_t Value) { *OS << char(Value); }
128 void writeLE16(uint16_t Value) {
129 support::endian::Writer<support::little>(*OS).write(Value);
132 void writeLE32(uint32_t Value) {
133 support::endian::Writer<support::little>(*OS).write(Value);
136 void writeLE64(uint64_t Value) {
137 support::endian::Writer<support::little>(*OS).write(Value);
140 void writeBE16(uint16_t Value) {
141 support::endian::Writer<support::big>(*OS).write(Value);
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 76 uint64_t Value = decodeULEB128(Data + Offset, &Length);
78 return Value;
103 SW.printString("Value", ParseString(Data, Offset));
106 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value,
112 SW.printNumber("Value", Value);
127 uint64_t Value = ParseInteger(Data, Offset);
129 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr;
130 PrintAttribute(Tag, Value, ValueDesc)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 49 * Returns Value
56 OMX_U32 Value;
62 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
63 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
66 return Value >> (32-N);
83 * Returns Value
91 OMX_U32 Value;
102 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
103 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 49 * Returns Value
56 OMX_U32 Value;
62 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
63 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
66 return Value >> (32-N);
83 * Returns Value
91 OMX_U32 Value;
102 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
103 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 49 * Returns Value
56 OMX_U32 Value;
62 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
63 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
66 return Value >> (32-N);
83 * Returns Value
91 OMX_U32 Value;
102 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
103 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset))
    [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 24 /// has array of i8 type filled in with the nul terminated string value
46 Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) {
59 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops,
68 static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest,
70 ArrayRef<Value *> Ops,
82 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align
    [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 34 static Value *generateSignedRemainderCode(Value *Dividend, Value *Divisor,
58 Value *DividendSign = Builder.CreateAShr(Dividend, Shift);
59 Value *DivisorSign = Builder.CreateAShr(Divisor, Shift);
60 Value *DvdXor = Builder.CreateXor(Dividend, DividendSign);
61 Value *DvsXor = Builder.CreateXor(Divisor, DivisorSign);
62 Value *UDividend = Builder.CreateSub(DvdXor, DividendSign);
63 Value *UDivisor = Builder.CreateSub(DvsXor, DivisorSign);
64 Value *URem = Builder.CreateURem(UDividend, UDivisor)
    [all...]
  /external/libchrome/base/
values.h 5 // This file specifies a recursive data storage class called Value intended for
8 // A Value represents something that can be stored in JSON or passed to/from
14 // something like this, either use a double or make a string value containing
43 class Value;
45 typedef std::vector<Value*> ValueVector;
46 typedef std::map<std::string, Value*> ValueMap;
48 // The Value class is the base class for Values. A Value can be instantiated
49 // via the Create*Value() factory methods, or by directly creating instances of
53 class BASE_EXPORT Value {
369 const Value& value() const { return *it_->second; } function in class:base::DictionaryValue::Iterator
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 26 * Dynamic typing system used by JSilver interpreter. A value (e.g. "2") can act as a string,
30 public abstract class Value {
32 private static final Map<EscapeMode, Value> EMPTY_PART_ESCAPED;
33 private static final Map<EscapeMode, Value> EMPTY_UNESCAPED;
34 private static final Map<EscapeMode, Value> ZERO_PART_ESCAPED;
35 private static final Map<EscapeMode, Value> ZERO_UNESCAPED;
36 private static final Map<EscapeMode, Value> ONE_PART_ESCAPED;
37 private static final Map<EscapeMode, Value> ONE_UNESCAPED;
40 // Currently a Value's EscapeMode is either ESCAPE_NONE (no escaping) or
44 EMPTY_PART_ESCAPED = new HashMap<EscapeMode, Value>(2)
    [all...]
  /external/libbrillo/brillo/
value_conversion.h 18 // This file provides a set of helper functions to convert between base::Value
34 inline bool FromValue(const base::Value& in_value, bool* out_value) {
38 inline bool FromValue(const base::Value& in_value, int* out_value) {
42 inline bool FromValue(const base::Value& in_value, double* out_value) {
46 inline bool FromValue(const base::Value& in_value, std::string* out_value) {
50 inline bool FromValue(const base::Value& in_value,
55 inline bool FromValue(const base::Value& in_value,
60 BRILLO_EXPORT bool FromValue(const base::Value& in_value,
62 BRILLO_EXPORT bool FromValue(const base::Value& in_value,
66 bool FromValue(const base::Value& in_value
    [all...]
  /external/libweave/third_party/chromium/base/
values.h 5 // This file specifies a recursive data storage class called Value intended for
8 // A Value represents something that can be stored in JSON or passed to/from
14 // something like this, either use a double or make a string value containing
42 class Value;
44 typedef std::vector<Value*> ValueVector;
45 typedef std::map<std::string, Value*> ValueMap;
47 // The Value class is the base class for Values. A Value can be instantiated
48 // via the Create*Value() factory methods, or by directly creating instances of
52 class BASE_EXPORT Value {
357 const Value& value() const { return *it_->second; } function in class:base::DictionaryValue::Iterator
    [all...]
  /external/clang/include/clang/Basic/
MacroBuilder.h 29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") {
31 Out << "#define " << Name << ' ' << Value << '\n';
  /external/clang/test/SemaCXX/
local-classes.cpp 36 template<int Value>
39 static int getValue() { return Value; }
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
22 import static com.google.clearsilver.jsilver.values.Value.literalValue;
37 public Value execute(Value... args) {
38 Value stringValue = args[0];
39 Value startValue = args[1];
40 Value endValue = args[2];

Completed in 527 milliseconds

1 2 3 4 56 7 8 91011>>