/external/chromium/chrome/browser/chromeos/login/ |
D | signed_settings_helper.cc | 35 CHECK(op_.get()); in Execute() 44 op_->Execute(); in Execute() 64 return op_.get(); in op() 97 scoped_refptr<SignedSettings> op_; member in chromeos::__anon5c1e249e0111::OpContext 146 op_ = SignedSettings::CreateCheckWhitelistOp(email_, this); in CreateOp() 149 op_ = SignedSettings::CreateWhitelistOp(email_, true, this); in CreateOp() 152 op_ = SignedSettings::CreateWhitelistOp(email_, false, this); in CreateOp() 191 op_ = SignedSettings::CreateStorePropertyOp(name_, value_, this); in CreateOp() 224 op_ = SignedSettings::CreateRetrievePropertyOp(name_, this); in CreateOp() 255 op_ = SignedSettings::CreateStorePolicyOp(&policy_, this); in CreateOp() [all …]
|
/external/regex-re2/re2/ |
D | prefilter.h | 34 Op op() { return op_; } in op() 41 CHECK(op_ == AND || op_ == OR); in subs() 82 Op op_; variable
|
D | regexp.h | 313 RegexpOp op() { return static_cast<RegexpOp>(op_); } in op() 326 int min() { DCHECK_EQ(op_, kRegexpRepeat); return min_; } in min() 327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; } in max() 328 Rune rune() { DCHECK_EQ(op_, kRegexpLiteral); return rune_; } in rune() 329 CharClass* cc() { DCHECK_EQ(op_, kRegexpCharClass); return cc_; } in cc() 330 int cap() { DCHECK_EQ(op_, kRegexpCapture); return cap_; } in cap() 331 const string* name() { DCHECK_EQ(op_, kRegexpCapture); return name_; } in name() 332 Rune* runes() { DCHECK_EQ(op_, kRegexpLiteralString); return runes_; } in runes() 333 int nrunes() { DCHECK_EQ(op_, kRegexpLiteralString); return nrunes_; } in nrunes() 334 int match_id() { DCHECK_EQ(op_, kRegexpHaveMatch); return match_id_; } in match_id() [all …]
|
D | prefilter.cc | 21 op_ = op; in Prefilter() 23 if (op_ == AND || op_ == OR) in Prefilter() 43 if (op_ != AND && op_ != OR) { in Simplify() 49 if (op_ == AND) in Simplify() 50 op_ = ALL; // AND of nothing is true in Simplify() 52 op_ = NONE; // OR of nothing is false in Simplify() 671 switch (op_) { in DebugString() 673 LOG(DFATAL) << "Bad op in Prefilter::DebugString: " << op_; in DebugString() 674 return StringPrintf("op%d", op_); in DebugString()
|
D | parse.cc | 197 if (re->op_ == kRegexpCharClass && re->ccb_ != NULL) { in FinishRegexp() 217 if (re->op_ == kRegexpCharClass) { in PushRegexp() 551 r3->op_ = kRegexpCharClass; in DoVerticalBar() 565 r3->op_ = kRegexpAnyChar; in DoVerticalBar() 614 re->op_ = kRegexpCapture; in DoRightParen() 727 re->op_ = kRegexpEmptyMatch; in RemoveLeadingString() 733 re->op_ = kRegexpEmptyMatch; in RemoveLeadingString() 740 re->op_ = kRegexpLiteral; in RemoveLeadingString() 761 re->op_ = kRegexpEmptyMatch; in RemoveLeadingString() 1004 if (sub->op_ == op) in DoCollapse() [all …]
|
D | simplify.cc | 44 switch (op_) { in ComputeSimple() 81 switch (subs[0]->op_) { in ComputeSimple() 95 LOG(DFATAL) << "Case not handled in ComputeSimple: " << op_; in ComputeSimple()
|
D | regexp.cc | 17 : op_(op), in Regexp() 36 switch (op_) { in ~Regexp() 160 DCHECK(op_ == kRegexpLiteralString); in AddRuneToString() 625 if (op_ != kRegexpConcat) in RequiredPrefix() 631 while (i < nsub_ && sub[i]->op_ == kRegexpBeginText) in RequiredPrefix() 637 switch (re->op_) { in RequiredPrefix()
|
/external/v8/src/x64/ |
D | code-stubs-x64.h | 94 : op_(op), in op_() function 100 Token::Value op_; 115 | OpBits::encode(op_) in MinorKey() 163 : op_(op), in BinaryOpStub() 174 : op_(OpBits::decode(key)), in op_() function 185 Token::Value op_; variable 202 return OpBits::encode(op_) in MinorKey()
|
D | code-stubs-x64.cc | 688 __ Push(Smi::FromInt(op_)); in GenerateTypeTransition() 703 switch (op_) { in GenerateSmiStub() 757 switch (op_) { in GenerateHeapNumberStub() 854 switch (op_) { in GenerateGenericStub() 892 switch (op_) { in GenerateGenericCodeFallback() 906 const char* op_name = Token::Name(op_); in PrintName() 927 __ Push(Smi::FromInt(op_)); in GenerateTypeTransition() 981 const char* op_name = Token::Name(op_); in PrintName() 1009 (op_ == Token::ADD || op_ == Token::SUB || in GenerateSmiCode() 1010 op_ == Token::MUL || op_ == Token::DIV || op_ == Token::SHR); in GenerateSmiCode() [all …]
|
D | lithium-x64.h | 868 : op_(op), can_deopt_(can_deopt) { in LShiftI() 873 Token::Value op() const { return op_; } in op() 880 Token::Value op_; 1080 : op_(op) { in LArithmeticD() 1085 Token::Value op() const { return op_; } in op() 1092 Token::Value op_; 1099 : op_(op) { in LArithmeticT() 1108 Token::Value op() const { return op_; } in op() 1111 Token::Value op_;
|
/external/v8/src/ |
D | ast.cc | 123 op_(op), in Assignment() 136 switch (op_) { in binary_op() 276 switch (op_) { in ResultOverwriteAllowed() 287 switch (op_) { in ResultOverwriteAllowed() 334 return MatchLiteralCompareTypeof(left_, op_, right_, expr, check) || in IsLiteralCompareTypeof() 335 MatchLiteralCompareTypeof(right_, op_, left_, expr, check); in IsLiteralCompareTypeof() 361 return MatchLiteralCompareUndefined(left_, op_, right_, expr) || in IsLiteralCompareUndefined() 362 MatchLiteralCompareUndefined(right_, op_, left_, expr); in IsLiteralCompareUndefined() 380 return MatchLiteralCompareNull(left_, op_, right_, expr) || in IsLiteralCompareNull() 381 MatchLiteralCompareNull(right_, op_, left_, expr); in IsLiteralCompareNull()
|
D | ast.h | 1703 Token::Value op() const { return op_; } in op() 1718 op_(op), in UnaryOperation() 1731 Token::Value op_; 1748 Token::Value op() const { return op_; } in op() 1764 : Expression(isolate), op_(op), left_(left), right_(right), pos_(pos) { in BinaryOperation() 1772 Token::Value op_; 1789 Token::Value op() const { return op_; } in op() 1816 op_(op), in CountOperation() 1824 Token::Value op_; 1839 Token::Value op() const { return op_; } in DECLARE_NODE_TYPE() [all …]
|
D | ic.h | 783 : IC(EXTRA_CALL_FRAME, isolate), op_(op) { } in CompareIC() 803 bool strict() const { return op_ == Token::EQ_STRICT; } in strict() 804 Condition GetCondition() const { return ComputeCondition(op_); } in GetCondition() 807 Token::Value op_; variable
|
D | code-stubs.h | 487 : op_(op), state_(state) { in ICCompareStub() 516 bool strict() const { return op_ == Token::EQ_STRICT; } in strict() 517 Condition GetCondition() const { return CompareIC::ComputeCondition(op_); } in GetCondition() 523 Token::Value op_; variable
|
/external/qemu/android/utils/ |
D | assert.h | 82 #define _ANDROID_ASSERT_INT_OP(cond_,expected_,op_) \ argument 89 #cond_ , cond_result_, #op_, cond_expected_); \
|
/external/v8/src/ia32/ |
D | code-stubs-ia32.h | 88 : op_(op), in op_() function 94 Token::Value op_; 109 | OpBits::encode(op_) in MinorKey() 160 : op_(op), in BinaryOpStub() 172 : op_(OpBits::decode(key)), in op_() function 184 Token::Value op_; variable 203 return OpBits::encode(op_) in MinorKey()
|
D | code-stubs-ia32.cc | 802 const char* op_name = Token::Name(op_); in PrintName() 838 __ push(Immediate(Smi::FromInt(op_))); in GenerateTypeTransition() 853 switch (op_) { in GenerateSmiStub() 930 switch (op_) { in GenerateHeapNumberStub() 1067 switch (op_) { in GenerateGenericStub() 1107 switch (op_) { in GenerateGenericCodeFallback() 1128 __ push(Immediate(Smi::FromInt(op_))); in GenerateTypeTransition() 1151 __ push(Immediate(Smi::FromInt(op_))); in GenerateTypeTransitionWithSavedArgs() 1203 const char* op_name = Token::Name(op_); in PrintName() 1227 if (op_ == Token::DIV || op_ == Token::MOD) { in GenerateSmiCode() [all …]
|
D | lithium-ia32.h | 881 : op_(op), can_deopt_(can_deopt) { in LShiftI() 886 Token::Value op() const { return op_; } in op() 893 Token::Value op_; 1102 : op_(op) { in LArithmeticD() 1107 Token::Value op() const { return op_; } in op() 1114 Token::Value op_; 1124 : op_(op) { in LArithmeticT() 1134 Token::Value op() const { return op_; } in op() 1140 Token::Value op_;
|
/external/v8/src/mips/ |
D | code-stubs-mips.h | 86 : op_(op), in op_() function 92 Token::Value op_; 107 | OpBits::encode(op_) in MinorKey() 149 : op_(op), in BinaryOpStub() 161 : op_(OpBits::decode(key)), in op_() function 173 Token::Value op_; variable 192 return OpBits::encode(op_) in MinorKey()
|
D | lithium-mips.h | 870 : op_(op), can_deopt_(can_deopt) { in LShiftI() 875 Token::Value op() const { return op_; } in op() 882 Token::Value op_; 1081 : op_(op) { in LArithmeticD() 1086 Token::Value op() const { return op_; } in op() 1093 Token::Value op_; 1100 : op_(op) { in LArithmeticT() 1109 Token::Value op() const { return op_; } in op() 1112 Token::Value op_;
|
D | code-stubs-mips.cc | 2007 const char* op_name = Token::Name(op_); in PrintName() 2041 __ li(a2, Operand(Smi::FromInt(op_))); in GenerateTypeTransition() 2053 switch (op_) { in GenerateSmiStub() 2111 switch (op_) { in GenerateHeapNumberStub() 2251 switch (op_) { in GenerateGenericStub() 2288 switch (op_) { in GenerateGenericCodeFallback() 2307 __ li(a1, Operand(Smi::FromInt(op_))); in GenerateTypeTransition() 2361 const char* op_name = Token::Name(op_); in PrintName() 2388 switch (op_) { in GenerateSmiSmiOperation() 2550 switch (op_) { in GenerateFPOperation() [all …]
|
/external/v8/src/arm/ |
D | code-stubs-arm.h | 85 : op_(op), in op_() function 91 Token::Value op_; 106 | OpBits::encode(op_) in MinorKey() 148 : op_(op), in BinaryOpStub() 160 : op_(OpBits::decode(key)), in op_() function 172 Token::Value op_; variable 191 return OpBits::encode(op_) in MinorKey()
|
D | lithium-arm.h | 871 : op_(op), can_deopt_(can_deopt) { in LShiftI() 876 Token::Value op() const { return op_; } in op() 883 Token::Value op_; 1101 : op_(op) { in LArithmeticD() 1106 Token::Value op() const { return op_; } in op() 1113 Token::Value op_; 1120 : op_(op) { in LArithmeticT() 1129 Token::Value op() const { return op_; } in op() 1132 Token::Value op_;
|
D | code-stubs-arm.cc | 1925 const char* op_name = Token::Name(op_); in PrintName() 1959 __ mov(r2, Operand(Smi::FromInt(op_))); in GenerateTypeTransition() 1971 switch (op_) { in GenerateSmiStub() 2029 switch (op_) { in GenerateHeapNumberStub() 2167 switch (op_) { in GenerateGenericStub() 2203 switch (op_) { in GenerateGenericCodeFallback() 2222 __ mov(r1, Operand(Smi::FromInt(op_))); in GenerateTypeTransition() 2277 const char* op_name = Token::Name(op_); in PrintName() 2302 switch (op_) { in GenerateSmiSmiOperation() 2436 switch (op_) { in GenerateFPOperation() [all …]
|
/external/chromium/chrome/browser/net/ |
D | sqlite_persistent_cookie_store.cc | 115 : op_(op), cc_(cc) { } in PendingOperation() 117 OperationType op() const { return op_; } in op() 121 OperationType op_; member in SQLitePersistentCookieStore::Backend::PendingOperation
|