HomeSort by relevance Sort by last modified time
    Searched refs:instrument (Results 1 - 25 of 66) sorted by null

1 2 3

  /packages/apps/Contacts/script/
test.sh 18 adb shell am instrument ${@} -w com.android.contacts.tests/android.test.InstrumentationTestRunner
  /packages/apps/ContactsCommon/tests/bin/
test.sh 3 adb shell am instrument -w com.android.contacts.common.unittest/android.test.InstrumentationTestRunner
  /external/chromium_org/components/autofill/content/browser/wallet/
instrument_unittest.cc 7 #include "components/autofill/content/browser/wallet/instrument.h"
23 TEST(Instrument, LastFourDigits) {
24 Instrument instrument(ASCIIToUTF16(kPrimaryAccountNumber),
28 Instrument::VISA,
31 EXPECT_EQ(ASCIIToUTF16(kLastFourDigits), instrument.last_four_digits());
34 TEST(Instrument, ToDictionary) {
55 Instrument instrument(ASCIIToUTF16(kPrimaryAccountNumber),
59 Instrument::VISA
    [all...]
instrument.cc 5 #include "components/autofill/content/browser/wallet/instrument.h"
23 // Converts a known Autofill card type to a Instrument::FormOfPayment.
25 Instrument::FormOfPayment FormOfPaymentFromCardType(const std::string& type) {
27 return Instrument::AMEX;
29 return Instrument::DISCOVER;
31 return Instrument::MASTER_CARD;
33 return Instrument::VISA;
35 return Instrument::UNKNOWN;
38 std::string FormOfPaymentToString(Instrument::FormOfPayment form_of_payment) {
40 case Instrument::UNKNOWN
    [all...]
mock_wallet_client.h 11 #include "components/autofill/content/browser/wallet/instrument.h"
43 virtual void SaveToWallet(scoped_ptr<wallet::Instrument> instrument,
46 SaveToWalletMock(instrument.get(), address.get(), source_url);
50 void(Instrument* instrument,
wallet_test_util.cc 15 #include "components/autofill/content/browser/wallet/instrument.h"
113 scoped_ptr<Instrument> GetTestInstrument() {
114 return scoped_ptr<Instrument>(new Instrument(ASCIIToUTF16("4444444444444448"),
118 Instrument::VISA,
122 scoped_ptr<Instrument> GetTestAddressUpgradeInstrument() {
123 scoped_ptr<Instrument> instrument(new Instrument(base::string16(),
127 Instrument::UNKNOWN
    [all...]
wallet_client.cc 18 #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,
413 DCHECK(instrument || address);
417 base::Passed(&instrument),
436 if (instrument) {
    [all...]
instrument.h 26 // This class contains all the data necessary to save a new instrument to a
29 class Instrument {
40 // Convert the info in |card| to an Instrument using |profile| for address.
41 Instrument(const CreditCard& card,
45 Instrument(const base::string16& primary_account_number,
52 Instrument(const Instrument& instrument);
54 ~Instrument();
87 // The payment network of the instrument, e.g. Visa
    [all...]
wallet_items.h 77 // 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) {
218 DCHECK(instrument.get())
    [all...]
wallet_client_unittest.cc 18 #include "components/autofill/content/browser/wallet/instrument.h"
103 " \"instrument\":"
391 "\"instrument\":"
424 "\"instrument\":"
570 "\"instrument\":"
1288 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1321 scoped_ptr<Instrument> instrument = GetTestInstrument(); local
1341 scoped_ptr<Instrument> instrument = GetTestInstrument(); 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...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ClassHandler.java 10 void instrument(CtClass ctClass); method in interface:ClassHandler
  /external/chromium_org/chrome/browser/ui/autofill/
data_model_wrapper_unittest.cc 62 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
66 instrument->expiration_month_ = month;
67 WalletInstrumentWrapper wrapper(instrument.get());
74 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
76 instrument->status_ = wallet::WalletItems::MaskedInstrument::EXPIRED;
77 WalletInstrumentWrapper wrapper(instrument.get());
83 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
86 WalletInstrumentWrapper instrument_wrapper(instrument.get());
90 WalletAddressWrapper address_wrapper(&instrument->address());
93 const_cast<wallet::Address*>(&instrument->address())->set_phone_number
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
complex_rep.S 1 # When trying (and failing) to instrument at the basic block level
  /external/valgrind/main/exp-bbv/tests/x86/
complex_rep.S 1 # When trying (and failing) to instrument at the basic block level
  /frameworks/base/core/tests/overlaytests/
runtests.sh 86 function instrument() function
91 $adb shell am instrument -w -e class $class com.android.overlaytest/android.test.InstrumentationTestRunner | tee -a $log
114 # instrument test (without overlay)
119 instrument "com.android.overlaytest.WithoutOverlayTest"
121 # instrument test (with overlay)
126 instrument "com.android.overlaytest.WithOverlayTest"
  /frameworks/base/core/tests/inputmethodtests/
run_core_inputmethod_test.sh 24 adb shell am instrument -w -e class android.os.InputMethodTest com.android.frameworks.coretests.inputmethod/android.test.InstrumentationTestRunner
  /frameworks/base/core/tests/systemproperties/
run_core_systemproperties_test.sh 24 adb shell am instrument -w -e class android.os.SystemPropertiesTest com.android.frameworks.coretests.systemproperties/android.test.InstrumentationTestRunner
  /development/testrunner/
am_instrument_parser.py 18 """Module that assists in parsing the output of "am instrument" commands run on
26 """Given the raw output of an "am instrument" command that targets and
30 result (string): Raw output of "am instrument"
68 """Given the raw output of "am instrument" returns a dictionary of the
73 result (string): Raw output of "am instrument"
  /external/chromium_org/third_party/android_testrunner/
am_instrument_parser.py 18 """Module that assists in parsing the output of "am instrument" commands run on
26 """Given the raw output of an "am instrument" command that targets and
30 result (string): Raw output of "am instrument"
68 """Given the raw output of "am instrument" returns a dictionary of the
73 result (string): Raw output of "am instrument"
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlAppSwitchTest.java 69 Instrumentation instrument = getInstrumentation(); local
70 Context context = instrument.getContext();
79 instrument.waitForIdleSync();
  /external/valgrind/main/drd/
drd_load_store.h 42 IRSB* DRD_(instrument)(VgCallbackClosure* const closure,
drd_load_store.c 344 * Instrument the client code to trace a memory load (--trace-addr).
367 * Instrument the client code to trace a memory store (--trace-addr).
580 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) {
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 67 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
132 DEBUG(dbgs() << "Instrument " << *Ptr << " for " << Twine(NeededSize)
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/qemu-pc-bios/
Makefile 41 bochs/config.status bochs/instrument bochs/ltdlconf.h
  /external/javassist/sample/evolve/
Evolution.java 57 clazz.instrument(converter);
183 cs[i].instrument(converter); method
187 ms[i].instrument(converter); method

Completed in 6345 milliseconds

1 2 3