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

1 2 3

  /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;
agg_renderer_base.h 134 const cover_type* covers)
147 covers += xmin() - x;
156 m_ren->blend_solid_hspan(x, y, len, c, covers);
agg_pixfmt_gray.h 155 const int8u* covers)
160 calc_type alpha = (calc_type(c.a) * (calc_type(*covers) + 1)) >> 8;
164 Blender::blend_pix(p, c.v, alpha, *covers);
167 ++covers;
  /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...]
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...]
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...]
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):
rdata.py 142 def covers(self): member in class:Rdata
144 returned by the covers() function. If the rdata type is not
160 return self.covers() << 16 | self.rdtype
191 covers = self.covers()
192 if covers == dns.rdatatype.NONE:
195 ctext = '(' + dns.rdatatype.to_text(covers) + ')'
message.py 133 (section, name, rdclass, rdtype, covers, deleting). Indexing can be
296 covers=dns.rdatatype.NONE, deleting=None, create=False,
309 @param covers: the covers value of the RRset
310 @type covers: int
323 name, rdclass, rdtype, covers, deleting)
331 if rrset.match(name, rdclass, rdtype, covers, deleting):
335 rrset = dns.rrset.RRset(name, rdclass, rdtype, covers, deleting)
342 covers=dns.rdatatype.NONE, deleting=None, create=False,
357 @param covers: the covers value of the RRse
    [all...]
update.py 66 covers = rd.covers()
68 covers, deleting, True, True)
  /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
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 151 def covers?( range )
161 range.covers?( self )
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
quick.s 44 ; bits cases above covers positive numbers.
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteCatchList.java 108 if (one.covers(pc) && typeNotFound(one, resultArr, resultSz)) {
311 * @return {@code true} iff this item covers {@code pc}
313 public boolean covers(int pc) { method in class:ByteCatchList.Item
  /dalvik/dx/src/com/android/dx/cf/code/
ByteCatchList.java 108 if (one.covers(pc) && typeNotFound(one, resultArr, resultSz)) {
311 * @return {@code true} iff this item covers {@code pc}
313 public boolean covers(int pc) { method in class:ByteCatchList.Item
  /external/harfbuzz_ng/src/
hb-ot-layout-gdef-table.hh 282 inline bool covers (unsigned int set_index, hb_codepoint_t glyph_id) const function in struct:OT::MarkGlyphSetsFormat1
302 inline bool covers (unsigned int set_index, hb_codepoint_t glyph_id) const function in struct:OT::MarkGlyphSets
305 case 1: return u.format1.covers (set_index, glyph_id);
374 { return version.to_int () >= 0x00010002u && (this+markGlyphSetsDef[0]).covers (set_index, glyph_id); }
  /external/v8/test/mjsunit/es6/
math-log2-log10.js 58 // This loop covers n from -1074 to -1043
64 // This loop covers n from -1042 to -1023
  /external/v8/test/mjsunit/compiler/
regress-3249650.js 28 // Among other things, this code covers the case of deoptimization
  /external/v8/test/mjsunit/
cyrillic.js 103 // Test range that covers both greek and cyrillic characters.
122 // A range that covers the lower case greek letters and the upper case cyrillic
181 // A range that covers both ASCII and non-ASCII.
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
preprocessor.js 77 //OPTIMIZATION: first perform check if the code point in the allowed range that covers most common
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/
sigbase.py 47 @ivar type_covered: the rdata type this signature covers
84 def covers(self): member in class:SIGBase
  /system/media/camera/docs/
metadata_helpers.py 764 if entry.hwlevel != 'legacy': # covers any of (None, 'limited', 'full')
805 " That covers multiple lines as well\n"
812 " * <p>That covers multiple lines as well</p>\n" +
893 " That covers multiple lines as well\n"
900 " * That covers multiple lines as well\n" +
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java 379 if (deletion.covers(newline)) {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 228 if location.covers?( prior_location )

Completed in 1334 milliseconds

1 2 3