HomeSort by relevance Sort by last modified time
    Searched refs:BaseValue (Results 1 - 10 of 10) sorted by null

  /frameworks/base/tools/aapt2/
ResourceValues.h 125 struct BaseValue : public Value {
291 struct Attribute : public BaseValue<Attribute> {
319 struct Style : public BaseValue<Style> {
343 struct Array : public BaseValue<Array> {
351 struct Plural : public BaseValue<Plural> {
361 struct Styleable : public BaseValue<Styleable> {
ResourceValues.cpp 51 void BaseValue<Derived>::Accept(ValueVisitor* visitor) {
56 void BaseValue<Derived>::Accept(ConstValueVisitor* visitor) const {
  /external/clang/lib/CodeGen/
CGObjCRuntime.h 87 llvm::Value *BaseValue,
264 llvm::Value *BaseValue,
CGObjCRuntime.cpp 88 llvm::Value *BaseValue,
92 // Compute (type*) ( (char *) BaseValue + Offset)
95 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, CGF.Int8PtrTy);
CGExpr.cpp     [all...]
CGObjCMac.cpp     [all...]
CGObjCGNU.cpp 575 llvm::Value *BaseValue, const ObjCIvarDecl *Ivar,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp 552 BDVState() : Status(Unknown), BaseValue(nullptr) {}
554 explicit BDVState(Status Status, Value *BaseValue = nullptr)
555 : Status(Status), BaseValue(BaseValue) {
556 assert(Status != Base || BaseValue);
559 explicit BDVState(Value *BaseValue) : Status(Base), BaseValue(BaseValue) {}
562 Value *getBaseValue() const { return BaseValue; }
569 return BaseValue == Other.BaseValue && Status == Other.Status
    [all...]
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
GPRArith.cpp 124 #define TestLeaBaseDisp(Base, BaseValue, Disp, Dst) \
127 "(" #Base ", " #BaseValue ", " #Dst ")"; \
131 Immediate(BaseValue)); \
175 #define TestLeaBaseIndexDisp(Base, BaseValue, Index, IndexValue, Disp, Dst0, \
179 "(" #Base ", " #BaseValue ", " #Index ", " #IndexValue ", " #Dst0 \
184 Immediate(BaseValue)); \
    [all...]
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
GPRArith.cpp 112 #define TestLeaBaseDisp(Base, BaseValue, Disp, Dst) \
115 "(" #Base ", " #BaseValue ", " #Dst ")"; \
118 __ mov(IceType_i32, Encoded_GPR_##Base(), Immediate(BaseValue)); \
162 #define TestLeaBaseIndexDisp(Base, BaseValue, Index, IndexValue, Disp, Dst0, \
166 "(" #Base ", " #BaseValue ", " #Index ", " #IndexValue ", " #Dst0 \
170 __ mov(IceType_i32, Encoded_GPR_##Base(), Immediate(BaseValue)); \
    [all...]

Completed in 235 milliseconds