/external/chromium_org/components/autofill/content/browser/wallet/ |
D | instrument.cc | 25 Instrument::FormOfPayment FormOfPaymentFromCardType(const std::string& type) { in FormOfPaymentFromCardType() 27 return Instrument::AMEX; in FormOfPaymentFromCardType() 29 return Instrument::DISCOVER; in FormOfPaymentFromCardType() 31 return Instrument::MASTER_CARD; in FormOfPaymentFromCardType() 33 return Instrument::VISA; in FormOfPaymentFromCardType() 35 return Instrument::UNKNOWN; in FormOfPaymentFromCardType() 38 std::string FormOfPaymentToString(Instrument::FormOfPayment form_of_payment) { in FormOfPaymentToString() 40 case Instrument::UNKNOWN: in FormOfPaymentToString() 42 case Instrument::VISA: in FormOfPaymentToString() 44 case Instrument::MASTER_CARD: in FormOfPaymentToString() [all …]
|
D | instrument.h | 29 class Instrument { 41 Instrument(const CreditCard& card, 45 Instrument(const base::string16& primary_account_number, 52 Instrument(const Instrument& instrument); 54 ~Instrument(); 98 DISALLOW_ASSIGN(Instrument);
|
D | instrument_unittest.cc | 25 TEST(Instrument, LastFourDigits) { in TEST() argument 26 Instrument instrument(ASCIIToUTF16(kPrimaryAccountNumber), in TEST() 30 Instrument::VISA, in TEST() 36 TEST(Instrument, ToDictionary) { in TEST() argument 62 Instrument instrument(ASCIIToUTF16(kPrimaryAccountNumber), in TEST() 66 Instrument::VISA, in TEST()
|
D | wallet_test_util.cc | 138 scoped_ptr<Instrument> GetTestInstrument() { in GetTestInstrument() 139 return make_scoped_ptr(new Instrument(ASCIIToUTF16("4444444444444448"), in GetTestInstrument() 143 Instrument::VISA, in GetTestInstrument() 147 scoped_ptr<Instrument> GetTestAddressUpgradeInstrument() { in GetTestAddressUpgradeInstrument() 148 return make_scoped_ptr(new Instrument(base::string16(), in GetTestAddressUpgradeInstrument() 152 Instrument::UNKNOWN, in GetTestAddressUpgradeInstrument() 156 scoped_ptr<Instrument> GetTestExpirationDateChangeInstrument() { in GetTestExpirationDateChangeInstrument() 157 return make_scoped_ptr(new Instrument(base::string16(), in GetTestExpirationDateChangeInstrument() 161 Instrument::UNKNOWN, in GetTestExpirationDateChangeInstrument() 165 scoped_ptr<Instrument> GetTestAddressNameChangeInstrument() { in GetTestAddressNameChangeInstrument() [all …]
|
D | wallet_test_util.h | 19 class Instrument; variable 30 scoped_ptr<Instrument> GetTestInstrument(); 31 scoped_ptr<Instrument> GetTestAddressUpgradeInstrument(); 32 scoped_ptr<Instrument> GetTestExpirationDateChangeInstrument(); 33 scoped_ptr<Instrument> GetTestAddressNameChangeInstrument();
|
D | wallet_client_unittest.cc | 1227 wallet_client_->SaveToWallet(scoped_ptr<Instrument>(), in TEST_F() 1259 wallet_client_->SaveToWallet(scoped_ptr<Instrument>(), in TEST_F() 1277 wallet_client_->SaveToWallet(scoped_ptr<Instrument>(), in TEST_F() 1295 wallet_client_->SaveToWallet(scoped_ptr<Instrument>(), in TEST_F() 1313 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() 1347 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() 1369 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() 1389 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() 1412 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() 1446 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() [all …]
|
D | mock_wallet_client.h | 45 scoped_ptr<Instrument> instrument, 51 void(Instrument* instrument,
|
D | wallet_client.h | 35 class Instrument; variable 177 scoped_ptr<Instrument> instrument,
|
D | mock_wallet_client.cc | 18 scoped_ptr<Instrument> instrument, in SaveToWallet()
|
/external/vixl/src/a64/ |
D | instrument-a64.cc | 117 Instrument::Instrument(const char* datafile, uint64_t sample_period) in Instrument() function in vixl::Instrument 147 Instrument::~Instrument() { in ~Instrument() 163 void Instrument::Update() { in Update() 176 void Instrument::DumpCounters() { in DumpCounters() 188 void Instrument::DumpCounterNames() { in DumpCounterNames() 200 void Instrument::HandleInstrumentationEvent(unsigned event) { in HandleInstrumentationEvent() 209 void Instrument::DumpEventMarker(unsigned marker) { in DumpEventMarker() 219 Counter* Instrument::GetCounter(const char* name) { in GetCounter() 238 void Instrument::Enable() { in Enable() 246 void Instrument::Disable() { in Disable() [all …]
|
D | instrument-a64.h | 74 class Instrument: public DecoderVisitor { 76 explicit Instrument(const char* datafile = NULL, 78 ~Instrument();
|
D | simulator-a64.h | 595 Instrument* instrumentation_;
|
/external/chromium_org/v8/src/arm64/ |
D | instrument-arm64.cc | 97 Instrument::Instrument(const char* datafile, uint64_t sample_period) in Instrument() function in v8::internal::Instrument 127 Instrument::~Instrument() { in ~Instrument() 143 void Instrument::Update() { in Update() 156 void Instrument::DumpCounters() { in DumpCounters() 168 void Instrument::DumpCounterNames() { in DumpCounterNames() 180 void Instrument::HandleInstrumentationEvent(unsigned event) { in HandleInstrumentationEvent() 189 void Instrument::DumpEventMarker(unsigned marker) { in DumpEventMarker() 199 Counter* Instrument::GetCounter(const char* name) { in GetCounter() 218 void Instrument::Enable() { in Enable() 226 void Instrument::Disable() { in Disable() [all …]
|
D | instrument-arm64.h | 52 class Instrument: public DecoderVisitor { 54 explicit Instrument(const char* datafile = NULL, 56 ~Instrument();
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
D | Foo.java | 3 import com.xtremelabs.robolectric.internal.Instrument; 5 @Instrument
|
D | AndroidTranslatorTest.java | 16 import com.xtremelabs.robolectric.internal.Instrument; 224 @Instrument
|
D | ShadowWranglerTest.java | 8 import com.xtremelabs.robolectric.internal.Instrument; 196 @Instrument
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/ |
D | Instrument.java | 9 public @interface Instrument { annotation
|
/external/chromium_org/chrome/ |
D | chrome_syzygy.gypi | 44 # Instrument chrome DLL executable with SyzyAsan. 47 'action_name': 'Instrument Chrome with SyzyAsan',
|
/external/lldb/source/Expression/ |
D | IRDynamicChecks.cpp | 176 bool Instrument () in Instrument() function in Instrumenter 619 if (!vpc.Instrument()) in runOnModule() 630 if (!ooc.Instrument()) in runOnModule()
|
/external/chromium_org/pdf/ |
D | pdf.gyp | 180 # Instrument PDFium with SyzyAsan. 183 'action_name': 'Instrument PDFium with SyzyAsan',
|
/external/vixl/test/examples/ |
D | test-examples.cc | 146 Instrument* inst = NULL; \ 152 inst = new Instrument("vixl_stats.csv", 10); \
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/ |
D | AndroidTranslator.java | 5 import com.xtremelabs.robolectric.internal.Instrument; 116 if (ctClass.hasAnnotation(Instrument.class)) { in shouldInstrument()
|
/external/clang/include/clang/Frontend/ |
D | CodeGenOptions.def | 89 CODEGENOPT(ProfileInstrGenerate , 1, 0) ///< Instrument code to generate
|
/external/chromium_org/chrome/browser/ui/autofill/ |
D | autofill_dialog_controller_impl.h | 563 scoped_ptr<wallet::Instrument> CreateTransientInstrument();
|