Searched defs:instrument (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/components/autofill/content/browser/wallet/
H A Dmock_wallet_client.cc18 scoped_ptr<Instrument> instrument,
22 SaveToWalletMock(instrument.get(),
17 SaveToWallet( scoped_ptr<Instrument> instrument, scoped_ptr<Address> address, const WalletItems::MaskedInstrument* reference_instrument, const Address* reference_address) argument
H A Dinstrument.cc5 #include "components/autofill/content/browser/wallet/instrument.h"
86 Instrument::Instrument(const Instrument& instrument) argument
87 : primary_account_number_(instrument.primary_account_number()),
88 card_verification_number_(instrument.card_verification_number()),
89 expiration_month_(instrument.expiration_month()),
90 expiration_year_(instrument.expiration_year()),
91 form_of_payment_(instrument.form_of_payment()),
92 address_(instrument.address() ?
93 new Address(*instrument.address()) : NULL) {
H A Dwallet_items.h84 // instrument.
91 // Gets an image to display for this instrument.
138 // A user-provided description of the instrument. For example, "Google Visa
142 // The payment network of the instrument. For example, Visa.
145 // The last four digits of the primary account number of the instrument.
154 // The billing address for the instrument.
157 // The current status of the instrument. For example, expired or declined.
160 // Externalized Online Wallet id for this instrument.
220 void AddInstrument(scoped_ptr<MaskedInstrument> instrument) { argument
221 DCHECK(instrument);
[all...]
H A Dwallet_client_unittest.cc17 #include "components/autofill/content/browser/wallet/instrument.h"
104 " \"instrument\":"
448 "\"instrument\":"
484 "\"instrument\":"
621 "\"instrument\":"
1362 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1363 wallet_client_->SaveToWallet(instrument.Pass(),
1396 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1397 wallet_client_->SaveToWallet(instrument.Pass(),
1418 scoped_ptr<Instrument> instrument local
1438 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1461 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1495 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1516 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1648 scoped_ptr<Instrument> instrument = GetTestExpirationDateChangeInstrument(); local
[all...]
H A Dwallet_client.cc18 #include "components/autofill/content/browser/wallet/instrument.h"
222 const char kInstrumentKey[] = "instrument";
223 const char kInstrumentExpMonthKey[] = "instrument.credit_card.exp_month";
224 const char kInstrumentExpYearKey[] = "instrument.credit_card.exp_year";
225 const char kInstrumentType[] = "instrument.type";
363 scoped_ptr<Instrument> instrument,
367 DCHECK(instrument || address);
379 if (instrument) {
381 base::UTF16ToUTF8(instrument->primary_account_number()), true);
383 base::UTF16ToUTF8(instrument
362 SaveToWallet( scoped_ptr<Instrument> instrument, scoped_ptr<Address> address, const WalletItems::MaskedInstrument* reference_instrument, const Address* reference_address) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DClassHandler.java10 void instrument(CtClass ctClass); method in interface:ClassHandler
H A DShadowWrangler.java55 public void instrument(CtClass ctClass) { method in class:ShadowWrangler
/external/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp66 bool instrument(Value *Ptr, Value *Val);
123 /// instrument - adds run-time bounds checks to memory accessing instructions.
128 bool BoundsChecking::instrument(Value *Ptr, Value *InstVal) { function in class:BoundsChecking
195 MadeChange |= instrument(LI->getPointerOperand(), LI);
197 MadeChange |= instrument(SI->getPointerOperand(), SI->getValueOperand());
199 MadeChange |= instrument(AI->getPointerOperand(),AI->getCompareOperand());
201 MadeChange |= instrument(AI->getPointerOperand(), AI->getValOperand());
/external/chromium_org/chrome/browser/ui/autofill/
H A Ddata_model_wrapper.cc266 const wallet::WalletItems::MaskedInstrument* instrument)
267 : instrument_(instrument) {}
298 // TODO(dbeam): handle other instrument statuses? http://crbug.com/233048
265 WalletInstrumentWrapper( const wallet::WalletItems::MaskedInstrument* instrument) argument
H A Dautofill_dialog_controller_unittest.cc41 #include "components/autofill/content/browser/wallet/instrument.h"
1721 // Tests if default instrument is invalid, then, the first valid instrument is
1722 // selected instead of the default instrument.
1735 // Tests if default instrument is AMEX but Wallet doesn't support
1736 // AMEX on this merchant, then the first valid instrument is
1737 // selected instead of the default instrument.
1752 // Tests if default instrument is AMEX and it is allowed on this merchant,
1768 // Tests if only have AMEX and invalid instrument, then "add" is selected.
1884 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument local
[all...]
H A Dautofill_dialog_controller_impl.cc52 #include "components/autofill/content/browser/wallet/instrument.h"
291 const wallet::WalletItems::MaskedInstrument& instrument) {
292 switch (instrument.status()) {
460 // Returns the ID of the address or instrument that should be selected in the
1116 const wallet::WalletItems::MaskedInstrument* instrument = local
1118 if (instrument)
1119 previously_selected_instrument_id_ = instrument->object_id();
2739 // Clear |wallet_items_| so we don't try to restore the selected instrument
3052 // Determine which instrument item should be selected.
3627 const wallet::WalletItems::MaskedInstrument* instrument local
290 IsInstrumentAllowed( const wallet::WalletItems::MaskedInstrument& instrument) argument
[all...]
/external/javassist/src/main/javassist/
H A DCtBehavior.java642 public void instrument(CodeConverter converter) method in class:CtBehavior
655 public void instrument(ExprEditor editor) method in class:CtBehavior
H A DCtClass.java1063 * declared in the class. This method calls <code>instrument()</code>
1069 public void instrument(CodeConverter converter) method in class:CtClass
1077 * declared in the class. This method calls <code>instrument()</code>
1083 public void instrument(ExprEditor editor) method in class:CtClass
1224 * or <code>instrument()</code> cannot be called.
1243 * @see #instrument(CodeConverter)
1244 * @see #instrument(ExprEditor)
H A DCtClassType.java1361 public void instrument(CodeConverter converter) method in class:CtClassType
1375 public void instrument(ExprEditor editor) method in class:CtClassType
/external/valgrind/main/drd/
H A Ddrd_load_store.c591 IRSB* DRD_(instrument)(VgCallbackClosure* const closure, function
603 Bool instrument = True; local
627 instrument = VG_(DebugInfo_sect_kind)(NULL, 0, st->Ist.IMark.addr)
644 if (instrument)
654 if (instrument)
678 if (instrument) {
695 if (instrument) {
733 if (instrument) {
770 if (instrument) {
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java71 * <li> if 'instrument' is true, the class definition is instrumented for
80 * NOTE: if 'instrument' is 'true', the caller should always assume that 'cls'
88 final boolean instrument, final boolean metadata,
94 if (! (instrument || metadata)) return; // nothing to do
105 m_instrument = instrument;
464 // add <clinit> (and instrument if needed) [a <clinit> is always needed
556 final int instrMethodCount = m_classInstrMethodCount; // actual number of methods to instrument may be less than the size of the block map
1813 final int instrMethodCount = visitor.m_classInstrMethodCount; // actual number of methods to instrument may be less than the size of the block map
1838 // TODO: if this method has been added by us, do not instrument its blocks
86 process(final ClassDef cls, final boolean ignoreAlreadyInstrumented, final boolean instrument, final boolean metadata, final InstrResult out) argument
/external/valgrind/main/callgrind/
H A Dmain.c855 /* First pass over a BB to instrument, counting instructions and jumps
952 IRSB* CLG_(instrument)( VgCallbackClosure* closure, function
974 CLG_DEBUG(5, "instrument(BB %#lx) [Instrumentation OFF]\n",
979 CLG_DEBUG(3, "+ instrument(BB %#lx)\n", (Addr)closure->readdr);
1349 CLG_DEBUG(3, "- instrument(BB %#lx): byteLen %u, CJumps %u, CostLen %u\n",
2050 CLG_(instrument),
/external/valgrind/main/memcheck/
H A Dmc_translate.c5964 IRSB* MC_(instrument) ( VgCallbackClosure* closure, function
6017 for now just use the slow and blunt-instrument solution. */
6023 mce.tmpMap = VG_(newXA)( VG_(malloc), "mc.MC_(instrument).1", VG_(free),
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 359 milliseconds