/art/test/401-optimizing-compiler/ |
info.txt | 2 optimizing compiler covers.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
mips16-pic-2.ad | 1 # [MIPS_GOTSYM, MIPS_SYMTABNO) covers used4...used7.
|
/art/test/123-compiler-regressions-mt/ |
info.txt | 4 This test covers fixed AOT/JIT bugs to prevent regressions.
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/ |
node.py | 83 def find_rdataset(self, rdclass, rdtype, covers=dns.rdatatype.NONE, 92 @param covers: The covered type. Usually this value is 94 dns.rdatatype.RRSIG, then the covers value will be the rdata 95 type the SIG/RRSIG covers. The library treats the SIG and RRSIG 100 @type covers: int 109 if rds.match(rdclass, rdtype, covers): 117 def get_rdataset(self, rdclass, rdtype, covers=dns.rdatatype.NONE, 129 @param covers: The covered type. 130 @type covers: int 137 rds = self.find_rdataset(rdclass, rdtype, covers, create [all...] |
zone.py | 211 def find_rdataset(self, name, rdtype, covers=dns.rdatatype.NONE, 216 The I{name}, I{rdtype}, and I{covers} parameters may be 230 @param covers: the covered type (defaults to None) 231 @type covers: int or string 242 if isinstance(covers, str): 243 covers = dns.rdatatype.from_text(covers) 245 return node.find_rdataset(self.rdclass, rdtype, covers, create) 247 def get_rdataset(self, name, rdtype, covers=dns.rdatatype.NONE, 252 The I{name}, I{rdtype}, and I{covers} parameters may b [all...] |
rdataset.py | 47 @ivar covers: The covered type. Usually this value is 49 dns.rdatatype.RRSIG, then the covers value will be the rdata 50 type the SIG/RRSIG covers. The library treats the SIG and RRSIG 55 @type covers: int 60 __slots__ = ['rdclass', 'rdtype', 'covers', 'ttl'] 62 def __init__(self, rdclass, rdtype, covers=dns.rdatatype.NONE): 71 self.covers = covers 78 obj.covers = self.covers [all...] |
rrset.py | 35 def __init__(self, name, rdclass, rdtype, covers=dns.rdatatype.NONE, 50 if self.covers == 0: 53 ctext = '(' + dns.rdatatype.to_text(self.covers) + ')' 76 def match(self, name, rdclass, rdtype, covers, deleting=None): 78 covers, and deletion state.""" 80 if not super(RRset, self).match(rdclass, rdtype, covers):
|
/development/samples/browseable/ActionBarCompat-Basic/ |
_index.jd | 9 displays action items. It covers inflating items from a menu resource, as well as adding
|
/external/autotest/server/site_tests/hardware_TPMFirmwareServer/ |
control | 13 This test covers the required TPM functionality in the firmware (mostly
|
/art/test/083-compiler-regressions/ |
info.txt | 6 This test covers JIT regressions
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
adj-brset.s | 7 brclr 140,x#200,L8 ; Branch adjustment covers the whole test 40 brclr 140,x#200,_start ; Branch adjustment covers the whole test
|
/art/compiler/optimizing/ |
live_interval_test.cc | 70 TEST(LiveInterval, Covers) { 77 ASSERT_TRUE(interval->Covers(0)); 78 ASSERT_TRUE(interval->Covers(4)); 79 ASSERT_TRUE(interval->Covers(41)); 80 ASSERT_FALSE(interval->Covers(42)); 81 ASSERT_FALSE(interval->Covers(54)); 87 ASSERT_FALSE(interval->Covers(0)); 88 ASSERT_TRUE(interval->Covers(4)); 89 ASSERT_TRUE(interval->Covers(11)); 90 ASSERT_FALSE(interval->Covers(12)) [all...] |
/external/pdfium/third_party/agg23/ |
agg_renderer_scanline.h | 56 const typename Scanline::cover_type* covers = span->covers; local 64 covers += xmin - x; 76 solid ? 0 : covers, 77 *covers);
|
agg_scanline_u.h | 38 cover_type* covers; member in struct:agg::scanline_u::span 79 m_cur_span->covers = m_covers + x; 83 void add_cells(int x, unsigned len, const CoverT* covers) 86 FXSYS_memcpy(m_covers + x, covers, len * sizeof(CoverT)); 93 m_cur_span->covers = m_covers + x; 107 m_cur_span->covers = m_covers + x;
|
/development/samples/browseable/BatchStepSensor/ |
_index.jd | 15 Both sensors only count steps while a listener is registered. This sample only covers the
|
/external/guava/guava-tests/test/com/google/common/collect/ |
PackageSanityTests.java | 22 * Covers basic sanity checks for the entire package.
|
/external/libunwind/src/ia64/ |
dyn_info_list.S | 6 * entry covers address range [0-0) and is therefore guaranteed to be
|
/external/valgrind/none/tests/s390x/ |
rounding-2.c | 7 query it. Covers only generally available rounding modes. */
|
/frameworks/base/docs/html/guide/topics/data/ |
index.jd | 17 This class covers techniques for backing up data to the cloud so that
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MapItem.java | 34 /** {@code non-null;} item type this instance covers */ 37 /** {@code non-null;} section this instance covers */ 118 * @param type {@code non-null;} item type this instance covers 119 * @param section {@code non-null;} section this instance covers 159 * @param section {@code non-null;} section this instance covers
|
/dalvik/dx/src/com/android/dx/dex/file/ |
MapItem.java | 33 /** {@code non-null;} item type this instance covers */ 36 /** {@code non-null;} section this instance covers */ 117 * @param type {@code non-null;} item type this instance covers 118 * @param section {@code non-null;} section this instance covers 158 * @param section {@code non-null;} section this instance covers
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MapItem.java | 34 /** {@code non-null;} item type this instance covers */ 37 /** {@code non-null;} section this instance covers */ 118 * @param type {@code non-null;} item type this instance covers 119 * @param section {@code non-null;} section this instance covers 159 * @param section {@code non-null;} section this instance covers
|
/external/llvm/lib/Target/Mips/ |
MSA.txt | 18 It is not possible to emit bclri.b since andi.b covers exactly the 24 constant since shf.w covers exactly the same cases. shf.w is used 36 It is not possible to emit ilvl.d, or pckev.d since ilvev.d covers the 40 It is not possible to emit ilvr.d, or pckod.d since ilvod.d covers the 48 It is not possible to emit splati.w since shf.w covers the same cases.
|
/cts/tests/camera/src/android/hardware/cts/helpers/ |
CameraUtils.java | 51 * <p>Compares the number of pixels it covers.If two the areas of two sizes are same, compare 65 * Size comparator that compares the number of pixels it covers.
|
/frameworks/base/docs/html/training/accessibility/ |
index.jd | 32 built into the Android framework. It covers how to optimize your app for 34 descriptions. It also covers how to build accessibility services, that can
|