/device/google/dragon/ |
board-info.txt | 1 require board=dragon
|
/device/google/marlin/marlin/ |
board-info.txt | 1 require board=marlin
|
/device/google/marlin/sailfish/ |
board-info.txt | 1 require board=sailfish
|
/device/huawei/angler/ |
board-info.txt | 1 require board=angler
|
/device/lge/bullhead/ |
board-info.txt | 1 require board=bullhead
|
/device/linaro/hikey/hikey/ |
board-info.txt | 1 require board=hikey
|
/external/autotest/site_utils/ |
stable_version_utils.py | 16 # Name of the default board. For boards that don't have stable version 17 # explicitly set, version for the default board will be used. 28 versions = dict([(v.board, v.version) 38 def get(board=DEFAULT, android=False): 39 """Get stable version for the given board. 41 @param board: Name of the board, default to value `DEFAULT`. 43 board. There is no default version that works for all 45 OS based board. 47 @return: Stable version of the given board. If the given board is not liste [all...] |
/external/autotest/cli/ |
stable_version.py | 7 board. 10 list: Show version of a given board or list all boards and their stable 11 versions if --board option is not specified. 12 modify: Set the stable version of a given board to the given value. 13 delete: Delete the stable version of a given board. So its stable version will 14 use the value for board `DEFAULT`. 37 self.parser.add_option('-b', '--board', 38 help='Name of the board', 41 metavar='BOARD') 44 attribute_name='board', use_leftover=True [all...] |
shard_unittest.py | 14 values = [{'hostname': u'shard1', u'id': 1, 'labels': ['board:lumpy']}, 15 {'hostname': u'shard2', u'id': 3, 'labels': ['board:daisy']}, 16 {'hostname': u'shard3', u'id': 5, 'labels': ['board:stumpy']}, 17 {'hostname': u'shard4', u'id': 6, 'labels': ['board:link']}] 30 '-l', 'board:lumpy', 'shard0'], 32 {'hostname': 'shard0', 'labels': 'board:lumpy'}, 39 '-l', 'board:lumpy', 'shard0'], 41 {'hostname': 'shard0', 'labels': 'board:lumpy'}, 52 '-l', 'board:lumpy', 'shard0'], 54 {'hostname': 'shard0', 'labels':'board:lumpy'} [all...] |
/build/make/tools/ |
vendor_buildinfo.sh | 6 echo "ro.product.board=$TARGET_BOOTLOADER_BOARD_NAME" 7 echo "ro.board.platform=$TARGET_BOARD_PLATFORM"
|
/external/autotest/frontend/migrations/ |
097_add_stable_versions.py | 4 board VARCHAR(255) NOT NULL, 6 UNIQUE KEY `board_UNIQUE` (`board`)
|
/hardware/qcom/bt/msm8998/ |
Android.mk | 1 ifeq ($(call is-vendor-board-platform,QCOM),true) 3 endif # is-vendor-board-platform
|
/external/toolchain-utils/binary_search_tool/cros_pkg/ |
setup.sh | 11 # the board for which this work is being done (e.g. 'daisy', 'lumpy','parrot', 15 # This script sets up a soft link definining /build/${board} to point 19 # package binary search triage process; and ${board}_cleanup.sh, 26 BOARD=$1 29 GOOD_BUILD=/build/${BOARD}.good 30 BAD_BUILD=/build/${BOARD}.bad 31 WORK_BUILD=/build/${BOARD}.work 53 # Check to see if /build/${BOARD} already exists and if so, in what state. 55 # in ${board}_cleanup.sh. If it's a soft link, remove it; if it's a 64 if [[ -d "/build/${BOARD}" ]] ; the [all...] |
/external/autotest/client/common_lib/ |
android_utils.py | 43 that it is called by such as the name of its board, or a public name, 49 board: The name of the hardware board in a device. 51 board. 68 # android product `zzz` has following board name. 74 # A dict of product:board for product board names, can be defined in global 84 bat has a board name of bat_land. Therefore the product name bat 98 """Get the board name of a product. 100 The board name of an android device is what the hardware is named [all...] |
/device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/ |
MiscBaseBoardManufacturer.uni | 19 #string STR_MISC_BASE_BOARD_MANUFACTURER #language en-US "Base Board Manufacturer"
20 #string STR_MISC_BASE_BOARD_PRODUCT_NAME #language en-US "Base Board Product Name"
21 #string STR_MISC_BASE_BOARD_VERSION #language en-US "Base Board Version"
22 #string STR_MISC_BASE_BOARD_SERIAL_NUMBER #language en-US "Base Board Serial Number"
23 #string STR_MISC_BASE_BOARD_ASSET_TAG #language en-US "Base Board Asset Tag"
24 #string STR_MISC_BASE_BOARD_CHASSIS_LOCATION #language en-US "Base Board Chassis Location"
|
/prebuilts/go/darwin-x86/test/ |
solitaire.go | 11 // This program solves the (English) peg solitaire board game. 16 const N = 11 + 1 // length of a board row (+1 for newline) 18 // The board must be surrounded by 2 illegal fields in each direction 19 // so that move() doesn't need to check the board boundaries. Periods 21 var board = []rune( var 41 for pos, field := range board { 59 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' { 60 board[pos] = '? [all...] |
/prebuilts/go/linux-x86/test/ |
solitaire.go | 11 // This program solves the (English) peg solitaire board game. 16 const N = 11 + 1 // length of a board row (+1 for newline) 18 // The board must be surrounded by 2 illegal fields in each direction 19 // so that move() doesn't need to check the board boundaries. Periods 21 var board = []rune( var 41 for pos, field := range board { 59 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' { 60 board[pos] = '? [all...] |
/external/autotest/client/cros/audio/ |
cras_configs.py | 12 def get_proper_internal_mic_gain(board): 15 @param board: Board name. 21 return INTERNAL_MIC_GAIN_100DB.get(board, None)
|
/hardware/qcom/bt/msm8909/ |
Android.mk | 3 endif # is-vendor-board-platform
|
/system/sepolicy/public/ |
watchdogd.te | 1 # watchdogd seclabel is specified in init.<board>.rc
|
/external/clang/test/SemaCXX/ |
constexpr-nqueens.cpp | 5 struct Board { 9 constexpr Board() : State(0), Failed(false) {} 10 constexpr Board(const Board &O) : State(O.State), Failed(O.Failed) {} 11 constexpr Board(uint64_t State, bool Failed = false) : 13 constexpr Board addQueen(int Row, int Col) const { 14 return Board(State | ((uint64_t)Row << (Col * 4))); 35 constexpr Board buildBoardRecurse(int N, int Col, const Board &B); 36 constexpr Board buildBoardScan(int N, int Col, int Row, const Board &B) [all...] |
/prebuilts/go/darwin-x86/doc/play/ |
solitaire.go | 2 // solitaire board game. 11 // The board must be surrounded by 2 illegal 13 // doesn't need to check the board boundaries. 17 var board = []rune( var 37 for pos, field := range board { 56 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' { 57 board[pos] = '?' 58 board[pos+dir] = '? [all...] |
/prebuilts/go/linux-x86/doc/play/ |
solitaire.go | 2 // solitaire board game. 11 // The board must be surrounded by 2 illegal 13 // doesn't need to check the board boundaries. 17 var board = []rune( var 37 for pos, field := range board { 56 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' { 57 board[pos] = '?' 58 board[pos+dir] = '? [all...] |
/external/autotest/site_utils/stable_images/ |
assign_stable_images_unittest.py | 23 # + Board with no "beta" channel. 24 # + Board with "beta" and another channel. 25 # + Board with only a "beta" channel. 26 # + Board with no "chrome_version" entry. 27 # + Obsolete board with "is_active" set to false. 106 Board names in Omaha don't have '_' characters; when an AFE 107 board contains '_' characters, they must be converted to '-'. 132 Test that the AFE default board mapping is honored. 134 If a board isn't present in the AFE dictionary, the mapping 138 * When a board is present in the AFE mapping, its versio [all...] |
/external/toolchain-utils/automation/clients/ |
nightly.py | 27 '--board', 28 dest='board', 30 help='Board to use for the nightly job.') 34 board = options.board 39 board=board, 43 group_label = 'nightly_client_%s' % board
|