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

<<11121314151617181920>>

  /external/skia/tools/json/
SkJSONCanvas.h 176 static Json::Value MakeMatrix(const SkMatrix& matrix);
178 static Json::Value MakeIRect(const SkIRect& irect);
262 Json::Value makePoint(const SkPoint& point);
264 Json::Value makePoint(SkScalar x, SkScalar y);
266 Json::Value makeRect(const SkRect& rect);
268 Json::Value makeRRect(const SkRRect& rrect);
270 Json::Value makePath(const SkPath& path);
272 Json::Value makeRegion(const SkRegion& region);
274 Json::Value makePaint(const SkPaint& paint);
276 Json::Value makeRegionOp(SkRegion::Op op)
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSKernelExpand.cpp 155 ALOGE("Non-integer signature value '%s'", SigString.str().c_str());
202 // Get the actual value we should use to step through an allocation.
204 // Normally the value we use to step through an allocation is given to us by
206 // integer constant for the step value. We use this integer constant whenever
212 llvm::Value *getStepValue(llvm::DataLayout *DL, llvm::Type *AllocType,
213 llvm::Value *OrigStep) {
398 /// @param LowerBound The first value of the loop iterator
399 /// @param UpperBound The maximal value of the loop iterator
403 llvm::Value *LowerBound,
404 llvm::Value *UpperBound
    [all...]
  /external/libbrillo/brillo/glib/
object.h 104 class Value;
106 inline ::GType type_to_gtypeid<const Value*>() {
128 // \brief Value (and Retrieve) support using std::string as well as const char*
139 // \brief RawCast converts from a GValue to a value of a canonical type.
143 // \precondition \param x contains a value of type \param T.
209 // \brief Value is a data type for managing GValues.
211 // A Value is a polymorphic container holding at most a single value.
213 // The Value wrapper ensures proper initialization, copies, and assignment of
220 class Value : public ::GValue
    [all...]
  /external/libxml2/python/tests/
reader.py 51 reader.Value() != "content of c":
132 if reader.Value() != "urn:1":
141 if reader.Value() != "urn:2":
150 if reader.Value() != "b":
159 if reader.Value() != "a:b":
171 if reader.Value() != "urn:1":
177 if reader.Value() != "urn:2":
183 if reader.Value() != "b":
189 if reader.Value() != "a:b":
195 if reader.Value() != "a:b"
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_inlines.h 135 return value ? value->reg.file : FILE_NULL;
140 return value ? value->reg.size : 0;
143 Value *ValueRef::rep() const
145 assert(value);
146 return value->join;
149 Value *ValueDef::rep() const
151 assert(value);
152 return value->join
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 113 void setParent(MCSection *Value) { Parent = Value; }
116 void setAtom(const MCSymbol *Value) { Atom = Value; }
119 void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
278 void setInst(const MCInst &Value) { Inst = Value; }
293 /// of using the provided value. The exact interpretation of this flag is
297 /// Value - Value to use for filling padding bytes
    [all...]
  /external/v8/src/crankshaft/
lithium-allocator.cc 17 return a.Value() < b.Value() ? a : b;
22 return a.Value() > b.Value() ? a : b;
61 DCHECK(Contains(pos) && pos.Value() != start().Value());
75 DCHECK(Start().Value() <= cur->pos().Value() &&
76 cur->pos().Value() <= End().Value());
1618 HValue* value = graph_->LookupValue(virtual_register); local
1626 HValue* value = graph_->LookupValue(virtual_register); local
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 101 void setSeverity(diag::Severity Value) { Severity = (unsigned)Value; }
107 void setNoWarningAsError(bool Value) { HasNoWarningAsError = Value; }
110 void setNoErrorAsFatal(bool Value) { HasNoErrorAsFatal = Value; }
  /external/libchrome/base/
values_unittest.cc 69 Value *value = NULL; local
75 ASSERT_FALSE(mixed_list->Get(4, &value));
136 Value* narrow_value = binary.get();
144 scoped_ptr<Value> narrow_value(new StringValue("narrow"));
146 ASSERT_TRUE(narrow_value->IsType(Value::TYPE_STRING));
147 scoped_ptr<Value> utf16_value(new StringValue(ASCIIToUTF16("utf16")));
149 ASSERT_TRUE(utf16_value->IsType(Value::TYPE_STRING));
176 // This is a Value object that allows us to tell if it's been
177 // properly deleted by modifying the value of external flag on destruction
800 std::string value; local
    [all...]
  /external/llvm/include/llvm/Analysis/
IVUsers.h 27 class Value;
40 IVStrideUse(IVUsers *P, Instruction* U, Value *O)
54 /// getOperandValToReplace - Return the Value of the operand in the user
56 Value *getOperandValToReplace() const {
60 /// setOperandValToReplace - Assign a new Value as the operand value
62 void setOperandValToReplace(Value *Op) {
80 /// OperandValToReplace - The Value of the operand in the user instruction
134 SmallPtrSet<const Value *, 32> EphValues;
153 IVStrideUse &AddUser(Instruction *User, Value *Operand)
    [all...]
MemoryLocation.h 36 /// value(s) are stored in memory at the particular location.
42 /// UnknownSize - This is a special value which can be used with the
48 const Value *Ptr;
95 explicit MemoryLocation(const Value *Ptr = nullptr,
100 MemoryLocation getWithNewPtr(const Value *NewPtr) const {
126 return MemoryLocation(DenseMapInfo<const Value *>::getEmptyKey(), 0);
129 return MemoryLocation(DenseMapInfo<const Value *>::getTombstoneKey(), 0);
132 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
LoopAccessAnalysis.h 30 class Value;
51 template <typename A> LoopAccessReport &operator<<(const A &Value) {
53 Out << Value;
126 typedef PointerIntPair<Value *, 1, bool> MemAccessInfo;
204 Value *Ptr = SI->getPointerOperand();
213 Value *Ptr = LI->getPointerOperand();
264 SmallVector<Instruction *, 4> getInstructionsForAccess(Value *Ptr,
332 /// Holds the pointer value that we need to check.
333 TrackingVH<Value> PointerValue;
334 /// Holds the pointer value at the beginning of the loop
    [all...]
  /external/llvm/lib/Analysis/
ObjCARCAliasAnalysis.cpp 30 #include "llvm/IR/Value.h"
47 const Value *SA = GetRCIdentityRoot(LocA.Ptr);
48 const Value *SB = GetRCIdentityRoot(LocB.Ptr);
57 const Value *UA = GetUnderlyingObjCPtr(SA, DL);
58 const Value *UB = GetUnderlyingObjCPtr(SB, DL);
62 // GetUnderlyingObjCPtr may return an offsetted pointer value.
79 const Value *S = GetRCIdentityRoot(Loc.Ptr);
86 const Value *U = GetUnderlyingObjCPtr(S, DL);
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 145 unsigned I, Value *LHS,
146 Value *RHS, Type *IndexedType);
153 Instruction *tryReassociateBinaryOp(Value *LHS, Value *RHS,
156 Instruction *tryReassociatedBinaryOp(const SCEV *LHS, Value *RHS,
160 bool matchTernaryOp(BinaryOperator *I, Value *V, Value *&Op1, Value *&Op2);
174 bool requiresSignExtension(Value *Index, GetElementPtrInst *GEP);
358 bool NaryReassociate::requiresSignExtension(Value *Index
    [all...]
  /external/llvm/test/tools/llvm-readobj/ARM/
attribute-10.s 7 @CHECK-OBJ-NEXT: Value: 10
14 @CHECK-OBJ-NEXT: Value: 10
21 @CHECK-OBJ-NEXT: Value: 10
attribute-11.s 7 @CHECK-OBJ-NEXT: Value: 11
14 @CHECK-OBJ-NEXT: Value: 11
21 @CHECK-OBJ-NEXT: Value: 11
attribute-12.s 7 @CHECK-OBJ-NEXT: Value: 12
14 @CHECK-OBJ-NEXT: Value: 12
21 @CHECK-OBJ-NEXT: Value: 12
attribute-9.s 7 @CHECK-OBJ-NEXT: Value: 9
14 @CHECK-OBJ-NEXT: Value: 9
21 @CHECK-OBJ-NEXT: Value: 9
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 53 Value RN 4
103 LDRBNE Value, [pSrc], #2 ;// Load byte wise to avoid unaligned access
105 LDRSBEQ Value, [pSrc], #1 ;// Value = (OMX_U8) *pSrc++
106 ORRNE Value,Value,Value2, LSL #8 ;// Value = (OMX_U16) *pSrc++
110 STRH Value, [pDst, strOffset] ;// Store <Value> at offset <strOffset>
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
tutorial.cpp 38 assert(document.IsObject()); // Document is a JSON value represents the root of DOM. Root can be either an object or array.
44 // Since version 0.2, you can use single lookup to check the existing of member and its value:
45 Value::MemberIterator hello = document.FindMember("hello");
47 assert(hello->value.IsString());
48 assert(strcmp("world", hello->value.GetString()) == 0);
68 const Value& a = document["a"]; // Using a reference for consecutive access is handy and faster.
78 for (Value::ConstValueIterator itr = a.Begin(); itr != a.End(); ++itr)
85 for (Value::ConstMemberIterator itr = document.MemberBegin(); itr != document.MemberEnd(); ++itr)
86 printf("Type of member %s is %s\n", itr->name.GetString(), kTypeNames[itr->value.GetType()]);
102 Value& a = document["a"]; // This time we uses non-const reference.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 25 static inline Value *dyn_castNotVal(Value *V) {
29 Value *Operand = BinaryOperator::getNotArgument(V);
71 static Value *getNewICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
74 if (Value *NewConstant = getICmpValue(Sign, Code, LHS, RHS, NewPred))
82 static Value *getFCmpValue(bool isordered, unsigned code,
83 Value *LHS, Value *RHS
    [all...]
  /external/v8/src/compiler/
machine-operator-reducer.cc 26 Node* MachineOperatorReducer::Float32Constant(volatile float value) {
27 return graph()->NewNode(common()->Float32Constant(value));
31 Node* MachineOperatorReducer::Float64Constant(volatile double value) {
32 return jsgraph()->Float64Constant(value);
36 Node* MachineOperatorReducer::Int32Constant(int32_t value) {
37 return jsgraph()->Int32Constant(value);
41 Node* MachineOperatorReducer::Int64Constant(int64_t value) {
42 return graph()->NewNode(common()->Int64Constant(value));
142 return ReplaceInt32(m.left().Value() ^ m.right().Value());
682 Node* const value = node->InputAt(2); local
    [all...]
  /bootable/recovery/edify/
expr.cpp 41 Value* v = expr->fn(expr->name, state, expr->argc, expr->argv);
44 ErrorAbort(state, kArgsParsingFailure, "expecting string, got value type %d", v->type);
53 Value* EvaluateValue(State* state, Expr* expr) {
57 Value* StringValue(char* str) {
59 Value* v = reinterpret_cast<Value*>(malloc(sizeof(Value)));
66 void FreeValue(Value* v) {
72 Value* ConcatFn(const char* name, State* state, int argc, Expr* argv[]) {
108 Value* IfElseFn(const char* name, State* state, int argc, Expr* argv[])
    [all...]
  /external/clang/lib/CodeGen/
CGCXXABI.cpp 76 llvm::Value *CGCXXABI::EmitLoadOfMemberFunctionPointer(
78 llvm::Value *&ThisPtrForCall,
79 llvm::Value *MemPtr, const MemberPointerType *MPT) {
92 llvm::Value *
94 Address Base, llvm::Value *MemPtr,
102 llvm::Value *CGCXXABI::EmitMemberPointerConversion(CodeGenFunction &CGF,
104 llvm::Value *Src) {
114 llvm::Value *
116 llvm::Value *L,
117 llvm::Value *R
    [all...]
  /external/llvm/include/llvm/IR/
Statepoint.h 43 bool isStatepoint(const Value *V);
44 bool isStatepoint(const Value &V);
46 bool isGCRelocate(const Value *V);
49 bool isGCResult(const Value *V);
107 const Value *IDVal = getCallSite().getArgument(IDPos);
113 const Value *NumPatchBytesVal = getCallSite().getArgument(NumPatchBytesPos);
120 /// Return the value actually being called or invoked.
144 /// Return the type of the value returned by the call underlying the
154 const Value *NumCallArgsVal = getCallSite().getArgument(NumCallArgsPos);
188 const Value *NumGCTransitionArgs = *arg_end()
    [all...]

Completed in 724 milliseconds

<<11121314151617181920>>