Home
last modified time | relevance | path

Searched refs:instrument (Results 1 – 25 of 124) sorted by relevance

12345

/external/chromium_org/chrome/browser/ui/autofill/
Ddata_model_wrapper_unittest.cc65 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument( in TEST() local
67 instrument->status_ = wallet::WalletItems::MaskedInstrument::EXPIRED; in TEST()
68 WalletInstrumentWrapper wrapper(instrument.get()); in TEST()
74 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument( in TEST() local
77 WalletInstrumentWrapper instrument_wrapper(instrument.get()); in TEST()
81 WalletAddressWrapper address_wrapper(&instrument->address()); in TEST()
84 const_cast<wallet::Address*>(&instrument->address())->SetPhoneNumber( in TEST()
158 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument( in TEST() local
162 instrument->expiration_month_ = month; in TEST()
163 WalletInstrumentWrapper wrapper(instrument.get()); in TEST()
[all …]
/external/chromium_org/components/autofill/content/browser/wallet/
Dinstrument.cc86 Instrument::Instrument(const Instrument& instrument) in Instrument() argument
87 : primary_account_number_(instrument.primary_account_number()), in Instrument()
88 card_verification_number_(instrument.card_verification_number()), in Instrument()
89 expiration_month_(instrument.expiration_month()), in Instrument()
90 expiration_year_(instrument.expiration_year()), in Instrument()
91 form_of_payment_(instrument.form_of_payment()), in Instrument()
92 address_(instrument.address() ? in Instrument()
93 new Address(*instrument.address()) : NULL) { in Instrument()
Dinstrument_unittest.cc26 Instrument instrument(ASCIIToUTF16(kPrimaryAccountNumber), in TEST() local
33 EXPECT_EQ(ASCIIToUTF16(kLastFourDigits), instrument.last_four_digits()); in TEST()
62 Instrument instrument(ASCIIToUTF16(kPrimaryAccountNumber), in TEST() local
69 EXPECT_TRUE(expected.Equals(instrument.ToDictionary().get())); in TEST()
Dwallet_client.cc363 scoped_ptr<Instrument> instrument, in SaveToWallet() argument
367 DCHECK(instrument || address); in SaveToWallet()
379 if (instrument) { in SaveToWallet()
381 base::UTF16ToUTF8(instrument->primary_account_number()), true); in SaveToWallet()
383 base::UTF16ToUTF8(instrument->card_verification_number()), true); in SaveToWallet()
386 request_dict.Set(kInstrumentKey, instrument->ToDictionary().release()); in SaveToWallet()
388 instrument->address()->phone_number()); in SaveToWallet()
392 int new_month = instrument->expiration_month(); in SaveToWallet()
393 int new_year = instrument->expiration_year(); in SaveToWallet()
398 DCHECK(instrument->address() || expiration_date_changed); in SaveToWallet()
[all …]
Dmock_wallet_client.cc18 scoped_ptr<Instrument> instrument, in SaveToWallet() argument
22 SaveToWalletMock(instrument.get(), in SaveToWallet()
Dwallet_client_unittest.cc1362 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() local
1363 wallet_client_->SaveToWallet(instrument.Pass(), in TEST_F()
1396 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() local
1397 wallet_client_->SaveToWallet(instrument.Pass(), in TEST_F()
1418 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() local
1419 wallet_client_->SaveToWallet(instrument.Pass(), in TEST_F()
1438 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() local
1439 wallet_client_->SaveToWallet(instrument.Pass(), in TEST_F()
1461 scoped_ptr<Instrument> instrument = GetTestInstrument(); in TEST_F() local
1463 wallet_client_->SaveToWallet(instrument.Pass(), address.Pass(), NULL, NULL); in TEST_F()
[all …]
Dmock_wallet_client.h46 scoped_ptr<Instrument> instrument,
52 void(Instrument* instrument,
Dwallet_items.h220 void AddInstrument(scoped_ptr<MaskedInstrument> instrument) { in AddInstrument() argument
221 DCHECK(instrument); in AddInstrument()
222 instruments_.push_back(instrument.release()); in AddInstrument()
Dinstrument.h52 Instrument(const Instrument& instrument);
/external/llvm/lib/Transforms/Instrumentation/
DBoundsChecking.cpp66 bool instrument(Value *Ptr, Value *Val);
128 bool BoundsChecking::instrument(Value *Ptr, Value *InstVal) { in instrument() function in BoundsChecking
195 MadeChange |= instrument(LI->getPointerOperand(), LI); in runOnFunction()
197 MadeChange |= instrument(SI->getPointerOperand(), SI->getValueOperand()); in runOnFunction()
199 MadeChange |= instrument(AI->getPointerOperand(),AI->getCompareOperand()); in runOnFunction()
201 MadeChange |= instrument(AI->getPointerOperand(), AI->getValOperand()); in runOnFunction()
/external/qemu-pc-bios/bochs/
DMakefile.in428 memory/memory.dsp iodev/iodev.dsp instrument/stubs/stubs.dsp \
682 instrument/stubs/instrument.h iodev/iodev.h bochs.h iodev/vga.h \
688 instrument/stubs/instrument.h cpu/cpu.h disasm/disasm.h cpu/crregs.h \
696 gui/textconfig.h gui/keymap.h instrument/stubs/instrument.h cpu/cpu.h \
705 instrument/stubs/instrument.h cpu/cpu.h disasm/disasm.h cpu/crregs.h \
713 instrument/stubs/instrument.h cpu/cpu.h disasm/disasm.h cpu/crregs.h \
721 instrument/stubs/instrument.h
725 gui/keymap.h instrument/stubs/instrument.h cpu/cpu.h disasm/disasm.h \
733 gui/textconfig.h gui/keymap.h instrument/stubs/instrument.h \
738 instrument/stubs/instrument.h iodev/iodev.h bochs.h iodev/vga.h \
/external/valgrind/main/drd/
Ddrd_load_store.c591 IRSB* DRD_(instrument)(VgCallbackClosure* const closure, in DRD_() argument
603 Bool instrument = True; in DRD_() local
627 instrument = VG_(DebugInfo_sect_kind)(NULL, 0, st->Ist.IMark.addr) in DRD_()
644 if (instrument) in DRD_()
654 if (instrument) in DRD_()
678 if (instrument) { in DRD_()
695 if (instrument) { in DRD_()
733 if (instrument) { in DRD_()
770 if (instrument) { in DRD_()
Ddrd_load_store.h42 IRSB* DRD_(instrument)(VgCallbackClosure* const closure,
/external/javassist/sample/evolve/
DEvolution.java57 clazz.instrument(converter); in onLoad()
183 cs[i].instrument(converter); in makeConcreteClass()
187 ms[i].instrument(converter); in makeConcreteClass()
/external/chromium_org/components/autofill/content/browser/
DBUILD.gn22 "wallet/instrument.cc",
23 "wallet/instrument.h",
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
DClassHandler.java10 void instrument(CtClass ctClass); in instrument() method
/external/llvm/test/Instrumentation/AddressSanitizer/
Dinstrument_global.ll13 ; Test that we don't instrument global arrays with static initializer
14 ; indexed with constants in-bounds. But instrument all other cases.
Ddo-not-touch-odr-global.ll1 ; This test checks that we instrument regular globals, but do not touch
/external/valgrind/main/exp-bbv/tests/amd64-linux/
Dcomplex_rep.S1 # When trying (and failing) to instrument at the basic block level
/external/valgrind/main/exp-bbv/tests/x86/
Dcomplex_rep.S1 # When trying (and failing) to instrument at the basic block level
/external/qemu-pc-bios/
DMakefile41 bochs/config.status bochs/instrument bochs/ltdlconf.h
/external/chromium_org/chrome/
Dchrome_shell.gypi109 # This target should only be used by targets which instrument
164 # targets which instrument chrome_sync_shell_apk.
/external/llvm/test/Instrumentation/AddressSanitizer/X86/
Dasm_attr.ll1 …linux-gnu -mcpu=corei7 -mattr=+sse2 -asm-instrumentation=address -asan-instrument-assembly | FileC…
Dasm_swap_intel.s1 …el -triple=x86_64-unknown-linux-gnu -asm-instrumentation=address -asan-instrument-assembly | FileC…
Dasm_mov.s1 …linux-gnu -mcpu=corei7 -mattr=+sse2 -asm-instrumentation=address -asan-instrument-assembly | FileC…

12345