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

/external/chromium_org/components/autofill/content/browser/wallet/
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.h77 // instrument.
84 // Gets an image to display for this instrument.
133 // A user-provided description of the instrument. For example, "Google Visa
137 // The payment network of the instrument. For example, Visa.
143 // The last four digits of the primary account number of the instrument.
152 // The billing address for the instrument.
155 // The current status of the instrument. For example, expired or declined.
158 // Externalized Online Wallet id for this instrument.
217 void AddInstrument(scoped_ptr<MaskedInstrument> instrument) { argument
218 DCHECK(instrument
[all...]
H A Dwallet_client_unittest.cc18 #include "components/autofill/content/browser/wallet/instrument.h"
103 " \"instrument\":"
391 "\"instrument\":"
424 "\"instrument\":"
570 "\"instrument\":"
1288 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1289 wallet_client_->SaveToWallet(instrument.Pass(),
1321 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1322 wallet_client_->SaveToWallet(instrument.Pass(),
1341 scoped_ptr<Instrument> instrument local
1359 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1381 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1417 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1439 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
[all...]
H A Dwallet_client.cc18 #include "components/autofill/content/browser/wallet/instrument.h"
254 const char kInstrumentKey[] = "instrument";
256 const char kInstrumentExpMonthKey[] = "instrument.credit_card.exp_month";
257 const char kInstrumentExpYearKey[] = "instrument.credit_card.exp_year";
258 const char kInstrumentType[] = "instrument.type";
410 void WalletClient::SaveToWallet(scoped_ptr<Instrument> instrument, argument
413 DCHECK(instrument || address);
417 base::Passed(&instrument),
436 if (instrument) {
438 UTF16ToUTF8(instrument
[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/chromium_org/chrome/browser/ui/autofill/
H A Ddata_model_wrapper.cc218 const wallet::WalletItems::MaskedInstrument* instrument)
219 : instrument_(instrument) {}
238 // TODO(dbeam): handle other instrument statuses? http://crbug.com/233048
217 WalletInstrumentWrapper( const wallet::WalletItems::MaskedInstrument* instrument) argument
H A Dautofill_dialog_controller_unittest.cc28 #include "components/autofill/content/browser/wallet/instrument.h"
1189 // Tests if default instrument is invalid, then, the first valid instrument is
1190 // selected instead of the default instrument.
1203 // Tests if default instrument is AMEX, then, the first valid instrument is
1204 // selected instead of the default instrument.
1218 // Tests if only have AMEX and invalid instrument, then "add" is selected.
1304 // Tests that editing an instrument (CC + address) in wallet mode updates an
1305 // existing instrument o
1376 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument = local
[all...]
H A Dautofill_dialog_controller_impl.cc47 #include "components/autofill/content/browser/wallet/instrument.h"
246 const wallet::WalletItems::MaskedInstrument& instrument) {
247 switch (instrument.status()) {
2537 // Determine which instrument item should be selected.
2936 const wallet::WalletItems::MaskedInstrument* instrument = local
2941 instrument->status() ==
2944 instrument->GetInfo(
2946 month_int == instrument->expiration_month()) {
2947 // Otherwise, if the user is editing an instrument that's deemed expired
3058 // If there's neither an address nor instrument t
245 IsInstrumentAllowed( const wallet::WalletItems::MaskedInstrument& instrument) argument
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp67 bool instrument(Value *Ptr, Value *Val);
125 /// instrument - adds run-time bounds checks to memory accessing instructions.
130 bool BoundsChecking::instrument(Value *Ptr, Value *InstVal) { function in class:BoundsChecking
196 MadeChange |= instrument(LI->getPointerOperand(), LI);
198 MadeChange |= instrument(SI->getPointerOperand(), SI->getValueOperand());
200 MadeChange |= instrument(AI->getPointerOperand(),AI->getCompareOperand());
202 MadeChange |= instrument(AI->getPointerOperand(), AI->getValOperand());
/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.c580 IRSB* DRD_(instrument)(VgCallbackClosure* const closure, function
591 Bool instrument = True; local
615 instrument = VG_(DebugInfo_sect_kind)(NULL, 0, st->Ist.IMark.addr)
632 if (instrument)
638 if (instrument) {
654 if (instrument) {
692 if (instrument) {
728 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.c811 /* First pass over a BB to instrument, counting instructions and jumps
908 IRSB* CLG_(instrument)( VgCallbackClosure* closure, function
929 CLG_DEBUG(5, "instrument(BB %#lx) [Instrumentation OFF]\n",
934 CLG_DEBUG(3, "+ instrument(BB %#lx)\n", (Addr)closure->readdr);
1274 CLG_DEBUG(3, "- instrument(BB %#lx): byteLen %u, CJumps %u, CostLen %u\n",
1940 CLG_(instrument),
/external/valgrind/main/memcheck/
H A Dmc_translate.c5289 IRSB* MC_(instrument) ( VgCallbackClosure* closure, function
5341 for now just use the slow and blunt-instrument solution. */
5347 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 ...

Completed in 6222 milliseconds