HomeSort by relevance Sort by last modified time
    Searched full:constant_ (Results 1 - 25 of 34) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/cmd/fix/
gotypes_test.go 81 var _ = constant_.Kind
85 _ = constant_.MakeBool(true)
  /prebuilts/go/linux-x86/src/cmd/fix/
gotypes_test.go 81 var _ = constant_.Kind
85 _ = constant_.MakeBool(true)
  /prebuilts/go/darwin-x86/src/go/types/
operand.go 24 constant_ // operand is a constant; the operand's typ is a Basic type
36 constant_: "constant",
108 case constant_:
138 if x.mode == constant_ {
190 x.mode = constant_
263 if x.mode == constant_ {
286 isUntyped(x.typ) && x.mode == constant_ && representableConst(x.val, nil, UntypedInt, nil) // no *Config required for UntypedInt
builtins.go 145 if x.mode == constant_ {
146 mode = constant_
160 mode = constant_
181 if check.Types != nil && mode != constant_ {
231 if x.mode == constant_ && y.mode == constant_ {
245 if x.mode == constant_ {
260 if check.Types != nil && x.mode != constant_ {
264 if x.mode != constant_ {
342 if x.mode == constant_ {
    [all...]
expr.go 119 if x.mode == constant_ {
327 assert(x.mode == constant_)
495 if x.mode == constant_ {
602 if x.mode == constant_ && y.mode == constant_ {
650 if x.mode == constant_ {
651 if y.mode == constant_ {
698 if y.mode == constant_ && constant.Sign(y.val) < 0 {
779 if (op == token.QUO || op == token.REM) && (x.mode == constant_ || isInteger(x.typ)) && y.mode == constant_ && constant.Sign(y.val) == 0
    [all...]
assignments.go 26 case constant_, variable, mapindex, value, commaok:
77 if x.mode != constant_ {
conversions.go 14 constArg := x.mode == constant_
call.go 49 if x.mode != invalid && x.mode != constant_ {
305 x.mode = constant_
check.go 267 if mode == constant_ {
typexpr.go 68 x.mode = constant_
370 if x.mode != constant_ {
  /prebuilts/go/linux-x86/src/go/types/
operand.go 24 constant_ // operand is a constant; the operand's typ is a Basic type
36 constant_: "constant",
108 case constant_:
138 if x.mode == constant_ {
190 x.mode = constant_
263 if x.mode == constant_ {
286 isUntyped(x.typ) && x.mode == constant_ && representableConst(x.val, nil, UntypedInt, nil) // no *Config required for UntypedInt
builtins.go 145 if x.mode == constant_ {
146 mode = constant_
160 mode = constant_
181 if check.Types != nil && mode != constant_ {
231 if x.mode == constant_ && y.mode == constant_ {
245 if x.mode == constant_ {
260 if check.Types != nil && x.mode != constant_ {
264 if x.mode != constant_ {
342 if x.mode == constant_ {
    [all...]
expr.go 119 if x.mode == constant_ {
327 assert(x.mode == constant_)
495 if x.mode == constant_ {
602 if x.mode == constant_ && y.mode == constant_ {
650 if x.mode == constant_ {
651 if y.mode == constant_ {
698 if y.mode == constant_ && constant.Sign(y.val) < 0 {
779 if (op == token.QUO || op == token.REM) && (x.mode == constant_ || isInteger(x.typ)) && y.mode == constant_ && constant.Sign(y.val) == 0
    [all...]
assignments.go 26 case constant_, variable, mapindex, value, commaok:
77 if x.mode != constant_ {
conversions.go 14 constArg := x.mode == constant_
call.go 49 if x.mode != invalid && x.mode != constant_ {
305 x.mode = constant_
check.go 267 if mode == constant_ {
typexpr.go 68 x.mode = constant_
370 if x.mode != constant_ {
  /external/v8/src/compiler/
access-info.h 83 Handle<Object> constant() const { return constant_; }
98 Handle<Object> constant_; member in class:v8::internal::compiler::final
js-operator.h 354 : constant_(constant), length_(length), flags_(flags), index_(index) {}
356 Handle<HeapObject> constant() const { return constant_; }
362 Handle<HeapObject> const constant_; member in class:v8::internal::compiler::final
  /art/compiler/optimizing/
bounds_check_elimination.cc 42 constant_ = instr_const + constant;
47 constant_ = constant;
136 int32_t GetConstant() const { return constant_; }
153 return instruction_ == bound.instruction_ && constant_ == bound.constant_;
186 return constant_ >= bound.constant_;
195 return constant_ <= bound.constant_;
204 return constant_ > bound.constant_
293 int32_t constant_; member in class:art::ValueBound
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstMemberRef.java 20 * Constants of type {@code CONSTANT_*ref_info}.
  /dalvik/dx/src/com/android/dx/rop/cst/
CstMemberRef.java 20 * Constants of type {@code CONSTANT_*ref_info}.
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstMemberRef.java 20 * Constants of type {@code CONSTANT_*ref_info}.
  /art/runtime/verifier/
reg_type.h 568 : RegType(nullptr, "", cache_id), constant_(constant) {
578 return constant_;
583 return constant_;
588 return constant_;
619 const uint32_t constant_; member in class:art::verifier::ConstantType
    [all...]

Completed in 542 milliseconds

1 2