/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
check_soundcard.vbs | 1 rem Check for a working sound-card - exit with 0 if OK, 1 otherwise. 11 rem No sound card found - exit with status code of 1
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
check_soundcard.vbs | 1 rem Check for a working sound-card - exit with 0 if OK, 1 otherwise. 11 rem No sound card found - exit with status code of 1
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
check_soundcard.vbs | 1 rem Check for a working sound-card - exit with 0 if OK, 1 otherwise. 11 rem No sound card found - exit with status code of 1
|
/frameworks/base/libs/hwui/tests/common/scenes/ |
HwLayerAnimation.cpp | 30 sp<RenderNode> card; member in class:HwLayerAnimation 32 card = TestUtils::createNode(0, 0, 200, 200, 38 canvas.drawRenderNode(card.get()); 42 card->mutateStagingProperties().setTranslationX(curFrame); 43 card->mutateStagingProperties().setTranslationY(curFrame); 44 card->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
|
OvalAnimation.cpp | 30 sp<RenderNode> card; member in class:OvalAnimation 33 card = TestUtils::createNode(0, 0, 200, 200, 40 canvas.drawRenderNode(card.get()); 45 card->mutateStagingProperties().setTranslationX(curFrame); 46 card->mutateStagingProperties().setTranslationY(curFrame); 47 card->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
|
RectGridAnimation.cpp | 31 sp<RenderNode> card; member in class:RectGridAnimation 36 card = TestUtils::createNode(50, 50, 250, 250, 51 canvas.drawRenderNode(card.get()); 57 card->mutateStagingProperties().setTranslationX(curFrame); 58 card->mutateStagingProperties().setTranslationY(curFrame); 59 card->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
|
TextAnimation.cpp | 30 sp<RenderNode> card; member in class:TextAnimation 33 card = TestUtils::createNode(0, 0, width, height, 51 canvas.drawRenderNode(card.get()); 56 card->mutateStagingProperties().setTranslationX(curFrame); 57 card->mutateStagingProperties().setTranslationY(curFrame); 58 card->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
|
/art/runtime/gc/accounting/ |
card_table.h | 45 // Maintain a card table from the the write barrier. All writes of 58 // Set the card associated with the given address to GC_CARD_DIRTY. 63 // Is the object on a dirty card? 68 // Return the state of the card at an address. 87 // card table byte. For convenience this value is cached in every Thread 93 * Visitor is expected to take in a card and return the new value. When a value is modified, the 95 * visitor: The visitor which modifies the cards. Returns the new value for a card given an old 97 * modified: Whenever the visitor modifies a card, this visitor is called on the card. Enables 113 // Assertion used to check the given address is covered by the card tabl [all...] |
/developers/build/templates/CardStream/_MODULE_/ |
README-CardStream.txt | 41 -Create a instance of Card.Builder with a tag String that *must* be unique among all cards. 43 Card.Builder builder = new Card.Builder(UNIQUE_TAG_STRING); 45 -Set the properties for your card in the builder. Some properties (title, description, progress type) can also 50 -Cards can also have more than one action that is shown as a button at the bottom of the card. 57 For convenience, the tag of the card the action belongs to is also returned in the callback. 59 builder.addAction(actionLabel1, 0, Card.ACTION_NEUTRAL, new Card.CardActionCallback() { 67 -After finishing setup process, call Buidler.build() to return a new instance of a Card. 69 final Card card = builder.build(activity) [all...] |
/developers/samples/android/sensors/BatchStepSensor/Application/ |
README-CardStream.txt | 41 -Create a instance of Card.Builder with a tag String that *must* be unique among all cards. 43 Card.Builder builder = new Card.Builder(UNIQUE_TAG_STRING); 45 -Set the properties for your card in the builder. Some properties (title, description, progress type) can also 50 -Cards can also have more than one action that is shown as a button at the bottom of the card. 57 For convenience, the tag of the card the action belongs to is also returned in the callback. 59 builder.addAction(actionLabel1, 0, Card.ACTION_NEUTRAL, new Card.CardActionCallback() { 67 -After finishing setup process, call Buidler.build() to return a new instance of a Card. 69 final Card card = builder.build(activity) [all...] |
/external/autotest/client/site_tests/hardware_RealtekCardReader/ |
hardware_RealtekCardReader.py | 14 # Look for the Realtek USB card reader. 15 # This requires a plugged in SD card. 18 raise error.TestFail("The Realtek card reader USB device was not " 19 "detected. This test requires an SD card to " 29 raise error.TestFail("The card reader USB device was detected, but "
|
control | 7 PURPOSE = 'Verify the Realtek card reader basically works.' 8 CRITERIA = 'Fails if the Realtek card reader is not detected.' 17 This test requires an SD card to be plugged in the SD slot.
|
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/ |
CharacterCardPresenter.java | 19 import android.support.v17.leanback.supportleanbackshowcase.models.Card; 22 * This Presenter is used to display the characters card row in the DetailView examples. 36 public void onBindViewHolder(Card card, CharacterCardView cardView) { 37 cardView.updateUi(card);
|
TextCardPresenter.java | 19 import android.support.v17.leanback.supportleanbackshowcase.models.Card; 22 * The Presenter displays a card consisting of text as a replacement for a big image. The footer is 37 public void onBindViewHolder(Card card, TextCardView cardView) { 38 cardView.updateUi(card);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
ShadowCardStack.java | 67 TextView card = (TextView) cardParent.getChildAt(i); local 68 card.setText("Card number " + i); 71 Animator expand = ObjectAnimator.ofFloat(card, "translationY", targetY); 74 Animator toward = ObjectAnimator.ofFloat(card, "translationZ", i * Z); 78 card.setPivotX(X_SHIFT_DP); 79 Animator rotateAway = ObjectAnimator.ofFloat(card, "rotationY", 84 Animator slideAway = ObjectAnimator.ofFloat(card, "translationX", 90 Animator rotateBack = ObjectAnimator.ofFloat(card, "rotationY", 0); 93 Animator slideBack = ObjectAnimator.ofFloat(card, "translationX", 0) [all...] |
/external/autotest/client/site_tests/hardware_MultiReader/ |
control | 7 PURPOSE = 'Verify a USB multi card reader basically works.' 16 It assumes a multi card reader is plugged in to USB and that it 17 has media installed such as (for example) an SD card.
|
/developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/ |
Card.java | 37 * A Card contains a description and has a visual state. Optionally a card also contains a title, 40 public class Card { 54 // The card model contains a reference to its desired layout (for extensibility), title, 56 private int mLayoutId = R.layout.card; 59 * Tag that uniquely identifies this card. 84 * Represent actions that can be taken from the card. Stylistically the developer can 87 * @see com.example.android.sensors.batchstepsensor.Card.CardAction 93 * from its "parent" card. To push for simplicity in samples, Cards are designed to have 94 * a maximum of one progress indicator per Card [all...] |
/developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/cardstream/ |
Card.java.ftl | 37 * A Card contains a description and has a visual state. Optionally a card also contains a title, 40 public class Card { 54 // The card model contains a reference to its desired layout (for extensibility), title, 56 private int mLayoutId = R.layout.card; 59 * Tag that uniquely identifies this card. 84 * Represent actions that can be taken from the card. Stylistically the developer can 87 * @see com.example.android.sensors.batchstepsensor.Card.CardAction 93 * from its "parent" card. To push for simplicity in samples, Cards are designed to have 94 * a maximum of one progress indicator per Card [all...] |
/development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/ |
Card.java | 37 * A Card contains a description and has a visual state. Optionally a card also contains a title, 40 public class Card { 54 // The card model contains a reference to its desired layout (for extensibility), title, 56 private int mLayoutId = R.layout.card; 59 * Tag that uniquely identifies this card. 84 * Represent actions that can be taken from the card. Stylistically the developer can 87 * @see com.example.android.sensors.batchstepsensor.Card.CardAction 93 * from its "parent" card. To push for simplicity in samples, Cards are designed to have 94 * a maximum of one progress indicator per Card [all...] |
/development/samples/BusinessCard/ |
_index.html | 6 <img alt="Screenshot #1 of the Business Card application" src="../images/BusinessCard1.png" /> 7 <img alt="Screenshot #2 of the Business Card application" src="../images/BusinessCard2.png" />
|
/external/autotest/client/site_tests/hardware_MultiReaderPowerConsumption/ |
control | 7 PURPOSE = """Test card reader CPU power consumption to be within acceptable 19 run three times: once on a ramdisk with the SD card mounted, once on the 20 SD card with the ramdisk unmounted, and once on the ramdisk with the SD 21 card unmounted. Power consumption is measured after each test and then 25 2) An empty SD card must be inserted and formatted with a single mountable 32 @param fs_uuid: the UUID for the attached card. Use this parameter is 34 @param drain_limit: maximum ratio between the card reader energy consumption 36 1.00 means the card reader test may not consume more energy than either
|
/external/e2fsprogs/lib/e2p/ |
ps.c | 4 * Copyright (C) 1993, 1994 Remy Card <card@masi.ibp.fr>
|
/external/libpcap/ |
pcap-septel.h | 2 * pcap-septel.c: Packet capture interface for Intel Septel card 6 * card code at the same time as another type of device.
|
/external/libxml2/result/ |
wml.xml.rde | 5 1 1 card 0 0 21 1 15 card 0 0
|
wml.xml.rdr | 5 1 1 card 0 0 21 1 15 card 0 0
|