Home
last modified time | relevance | path

Searched refs:Instrument (Results 1 – 25 of 34) sorted by relevance

12

/external/chromium_org/components/autofill/content/browser/wallet/
Dinstrument.cc25 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 …]
Dinstrument.h29 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);
Dinstrument_unittest.cc25 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()
Dwallet_test_util.cc138 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 …]
Dwallet_test_util.h19 class Instrument; variable
30 scoped_ptr<Instrument> GetTestInstrument();
31 scoped_ptr<Instrument> GetTestAddressUpgradeInstrument();
32 scoped_ptr<Instrument> GetTestExpirationDateChangeInstrument();
33 scoped_ptr<Instrument> GetTestAddressNameChangeInstrument();
Dwallet_client_unittest.cc1227 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 …]
Dmock_wallet_client.h45 scoped_ptr<Instrument> instrument,
51 void(Instrument* instrument,
Dwallet_client.h35 class Instrument; variable
177 scoped_ptr<Instrument> instrument,
Dmock_wallet_client.cc18 scoped_ptr<Instrument> instrument, in SaveToWallet()
/external/vixl/src/a64/
Dinstrument-a64.cc117 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 …]
Dinstrument-a64.h74 class Instrument: public DecoderVisitor {
76 explicit Instrument(const char* datafile = NULL,
78 ~Instrument();
Dsimulator-a64.h595 Instrument* instrumentation_;
/external/chromium_org/v8/src/arm64/
Dinstrument-arm64.cc97 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 …]
Dinstrument-arm64.h52 class Instrument: public DecoderVisitor {
54 explicit Instrument(const char* datafile = NULL,
56 ~Instrument();
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
DFoo.java3 import com.xtremelabs.robolectric.internal.Instrument;
5 @Instrument
DAndroidTranslatorTest.java16 import com.xtremelabs.robolectric.internal.Instrument;
224 @Instrument
DShadowWranglerTest.java8 import com.xtremelabs.robolectric.internal.Instrument;
196 @Instrument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
DInstrument.java9 public @interface Instrument { annotation
/external/chromium_org/chrome/
Dchrome_syzygy.gypi44 # Instrument chrome DLL executable with SyzyAsan.
47 'action_name': 'Instrument Chrome with SyzyAsan',
/external/lldb/source/Expression/
DIRDynamicChecks.cpp176 bool Instrument () in Instrument() function in Instrumenter
619 if (!vpc.Instrument()) in runOnModule()
630 if (!ooc.Instrument()) in runOnModule()
/external/chromium_org/pdf/
Dpdf.gyp180 # Instrument PDFium with SyzyAsan.
183 'action_name': 'Instrument PDFium with SyzyAsan',
/external/vixl/test/examples/
Dtest-examples.cc146 Instrument* inst = NULL; \
152 inst = new Instrument("vixl_stats.csv", 10); \
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
DAndroidTranslator.java5 import com.xtremelabs.robolectric.internal.Instrument;
116 if (ctClass.hasAnnotation(Instrument.class)) { in shouldInstrument()
/external/clang/include/clang/Frontend/
DCodeGenOptions.def89 CODEGENOPT(ProfileInstrGenerate , 1, 0) ///< Instrument code to generate
/external/chromium_org/chrome/browser/ui/autofill/
Dautofill_dialog_controller_impl.h563 scoped_ptr<wallet::Instrument> CreateTransientInstrument();

12