Searched refs:cr (Results 1 - 25 of 451) sorted by relevance

1234567891011>>

/macosx-10.10/ntfs-84/kext/
H A Dntfs_collate.h45 static inline BOOL ntfs_is_collation_rule_supported(COLLATION_RULE cr) { argument
53 if (cr == COLLATION_UNICODE_STRING)
55 i = le32_to_cpu(cr);
61 __private_extern__ int ntfs_collate(ntfs_volume *vol, COLLATION_RULE cr,
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp72 static inline void fillRectWithColor(cairo_t* cr, const FloatRect& rect, const Color& color) argument
74 if (!color.alpha() && cairo_get_operator(cr) == CAIRO_OPERATOR_OVER)
76 setSourceRGBAFromColor(cr, color);
77 cairo_rectangle(cr, rect.x(), rect.y(), rect.width(), rect.height());
78 cairo_fill(cr);
102 cairo_t* cairoContext = context->platformContext()->cr();
124 cairo_t* cairoShadowContext = shadowContext->platformContext()->cr();
155 cairo_t* cr = context->platformContext()->cr(); local
156 cairo_save(cr);
177 GraphicsContext(cairo_t* cr) argument
240 cairo_t* cr = platformContext()->cr(); local
545 cairo_t* cr = platformContext()->cr(); local
562 cairo_t* cr = platformContext()->cr(); local
659 cairo_t* cr = platformContext()->cr(); local
703 cairo_t* cr = platformContext()->cr(); local
1057 cairo_t* cr = platformContext()->cr(); local
1082 cairo_t* cr = platformContext()->cr(); local
[all...]
H A DDrawErrorUnderline.h51 static inline void drawErrorUnderline(cairo_t* cr, double x, double y, double width, double height) argument
68 cairo_move_to(cr, x - halfSquare, top + halfSquare); // A
75 cairo_line_to(cr, middle, bottom); // B
78 cairo_line_to(cr, right + halfSquare, top + halfSquare); // D
80 cairo_line_to(cr, right, top + square); // C
90 cairo_line_to(cr, middle + halfSquare, bottom - halfSquare); // G
93 cairo_line_to(cr, right, top); // E
95 cairo_line_to(cr, middle, bottom - halfSquare); // F
98 cairo_line_to(cr, left, top); // H
101 cairo_fill(cr);
[all...]
H A DImageCairo.cpp51 cairo_t* cr = context->platformContext()->cr();
52 drawPatternToCairoContext(cr, surface.get(), IntSize(size()), tileRect, patternTransform, phase, toCairoOperator(op), destRect);
H A DPathCairo.cpp60 cairo_t* cr = ensurePlatformPath()->context();
62 cairo_append_path(cr, pathCopy.get());
84 cairo_t* cr = ensurePlatformPath()->context(); local
86 cairo_append_path(cr, pathCopy.get());
97 cairo_t* cr = platformPath()->context();
98 cairo_new_path(cr);
125 cairo_t* cr = ensurePlatformPath()->context(); local
126 cairo_translate(cr, -p.width(), -p.height());
131 cairo_t* cr = ensurePlatformPath()->context(); local
132 cairo_move_to(cr,
137 cairo_t* cr = ensurePlatformPath()->context(); local
143 cairo_t* cr = ensurePlatformPath()->context(); local
152 cairo_t* cr = ensurePlatformPath()->context(); local
167 cairo_t* cr = ensurePlatformPath()->context(); local
287 cairo_t* cr = ensurePlatformPath()->context(); local
305 cairo_t* cr = ensurePlatformPath()->context(); local
356 cairo_t* cr = platformPath()->context(); local
405 cairo_t* cr = ensurePlatformPath()->context(); local
[all...]
H A DPlatformContextCairo.h48 cairo_t* cr() { return m_cr.get(); } function in class:WebCore::PlatformContextCairo
49 void setCr(cairo_t* cr) { m_cr = cr; } argument
H A DFontCairo.cpp74 cairo_t* context = graphicsContext->platformContext()->cr();
91 drawGlyphsToContext(shadowContext->platformContext()->cr(), font, glyphs, numGlyphs);
114 cairo_t* cr = platformContext->cr(); local
115 cairo_save(cr);
119 drawGlyphsToContext(cr, font, glyphs, numGlyphs);
128 cairo_set_line_width(cr, context->strokeThickness());
131 cairo_set_scaled_font(cr, font->platformData().scaledFont());
132 cairo_glyph_path(cr, glyphs, numGlyphs);
133 cairo_stroke(cr);
[all...]
H A DPlatformContextCairo.cpp83 PlatformContextCairo::PlatformContextCairo(cairo_t* cr) argument
84 : m_cr(cr)
144 static void drawPatternToCairoContext(cairo_t* cr, cairo_pattern_t* pattern, const FloatRect& destRect, float alpha) argument
146 cairo_translate(cr, destRect.x(), destRect.y());
147 cairo_set_source(cr, pattern);
148 cairo_rectangle(cr, 0, 0, destRect.width(), destRect.height());
151 cairo_clip(cr);
152 cairo_paint_with_alpha(cr, alpha);
154 cairo_fill(cr);
221 drawPatternToCairoContext(shadowContext->platformContext()->cr(), patter
254 reduceSourceByAlpha(cairo_t* cr, float alpha) argument
264 prepareCairoContextSource(cairo_t* cr, Pattern* pattern, Gradient* gradient, const Color& color, float globalAlpha) argument
[all...]
H A DGradientCairo.cpp100 cairo_t* cr = context->platformContext()->cr(); local
103 cairo_set_source(cr, platformGradient());
104 cairo_rectangle(cr, rect.x(), rect.y(), rect.width(), rect.height());
105 cairo_fill(cr);
/macosx-10.10/WebKit2-7600.1.25/Shared/API/c/cairo/
H A DWKImageCairo.cpp51 cairo_t* cr = graphicsContext->platformContext()->cr(); local
52 cairo_set_source_surface(cr, surface, 0, 0);
53 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
54 cairo_rectangle(cr, 0, 0, imageSize.width(), imageSize.height());
55 cairo_fill(cr);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DGraphicsContextCairoWin.cpp78 cairo_t* cr = 0; local
80 cr = createCairoContextWithHDC(dc, hasAlpha);
84 m_data = new GraphicsContextPlatformPrivateToplevel(new PlatformContextCairo(cr));
86 if (platformContext()->cr()) {
91 if (cr)
92 cairo_destroy(cr);
102 static void drawBitmapToContext(GraphicsContextPlatformPrivate* context, cairo_t* cr, const DIBPixelData& pixelData, const IntSize& translate) argument
114 cairo_save(cr);
115 cairo_translate(cr, static_cast<double>(translate.width()), static_cast<double>(translate.height()));
116 cairo_scale(cr,
163 syncContext(cairo_t* cr) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcsmatch.cpp27 void CharsetMatch::set(InputText *input, const CharsetRecognizer *cr, int32_t conf, argument
34 if (cr != NULL) {
36 fCharsetName = cr->getName();
39 fLang = cr->getLanguage();
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DDragImageCairoWin.cpp69 cairo_t* cr = cairo_create(bitmapContext);
80 cairo_set_matrix(cr, &matrix);
82 *targetRef = new PlatformGraphicsContext(cr);
83 cairo_destroy(cr);
132 cairo_t* cr = targetContext->cr(); local
133 cairo_translate(cr, 0, dstSize.height());
134 cairo_scale(cr, scale.width(), -scale.height());
135 cairo_set_source_surface(cr, srcImage, 0.0, 0.0);
138 cairo_paint(cr);
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dmessagedialog.rb35 cr = Tk::Iwidgets::Messagedialog.new(:title=>'Copyright',
39 cr.hide('Cancel')
41 cr.activate
42 Tk.after(7000, proc{cr.deactivate; Tk.root.destroy})
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dcr.c0 /* cr.c - content rule routines */
330 LDAPContentRule *cr,
341 if ( cr->cr_names != NULL ) {
344 for( i=0; cr->cr_names[i]; i++ ) {
345 if( !slap_valid_descr( cr->cr_names[i] ) ) {
351 if ( !OID_LEADCHAR( cr->cr_oid[0] )) {
353 char *oid = oidm_find( cr->cr_oid );
355 *err = cr->cr_oid;
358 if ( oid != cr->cr_oid ) {
359 oidm = cr
329 cr_add( LDAPContentRule *cr, int user, ContentRule **rscr, const char **err ) argument
414 ContentRule *cr; local
473 ContentRule *cr; local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gtk/
H A DIconGtk.cpp122 cairo_t* cr = context->platformContext()->cr();
123 cairo_save(cr);
124 gdk_cairo_set_source_pixbuf(cr, m_icon, rect.x(), rect.y());
125 cairo_paint(cr);
126 cairo_restore(cr);
/macosx-10.10/mDNSResponder-561.1.1/mDNSCore/
H A Dnsec3.c54 mDNSlocal mDNSBool NSEC3OptOut(CacheRecord *cr) argument
56 const RDataBody2 *const rdb = (RDataBody2 *)cr->resrec.rdata->u.data;
185 CacheRecord *cr; local
190 for (cr = ncr->nsec; cr; cr = cr->next)
192 if (cr->resrec.rrtype == kDNSType_NSEC3)
194 const RDataBody2 *const rdb = (RDataBody2 *)cr->resrec.rdata->u.data;
199 if (!cr)
678 CacheRecord *cr; local
[all...]
H A Dnsec.c58 CacheRecord *cr; local
70 for (cr = cg->members; cr; cr = cr->next)
71 if (SameNameRecordAnswersQuestion(&cr->resrec, q))
72 return cr;
216 mDNSlocal void DeleteCachedNSECS(mDNS *const m, CacheRecord *cr) argument
220 if (cr->nsec) LogDNSSEC("DeleteCachedNSECS: Deleting NSEC Records\n");
221 for (rp = cr
233 CacheRecord *cr; local
558 CacheRecord *cr = *rp; local
847 CacheRecord *cr = *rp; local
990 CacheRecord *cr = *rp; local
1052 CacheRecord *cr; local
1146 ValidateWithNSECS(mDNS *const m, DNSSECVerifier *dv, CacheRecord *cr) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/comp_match/
H A Dcrl.c59 ExtractingComponentTBSCertListSeqOfSeq ( void* mem_op, ComponentReference* cr, ComponentTBSCertListSeqOfSeq *comp ) argument
62 if ( ( comp->userCertificate.identifier.bv_val && strncmp(comp->userCertificate.identifier.bv_val, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) || ( strncmp(comp->userCertificate.id_buf, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) ) {
63 if ( cr->cr_curr->ci_next == NULL )
68 if ( ( comp->revocationDate->identifier.bv_val && strncmp(comp->revocationDate->identifier.bv_val, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) || ( strncmp(comp->revocationDate->id_buf, cr->cr_curr->ci_val.ci_identifier.bv_val,cr
346 ExtractingComponentTBSCertListSeqOf( void* mem_op, ComponentReference* cr, ComponentTBSCertListSeqOf *comp ) argument
596 ExtractingComponentTBSCertList( void* mem_op, ComponentReference* cr, ComponentTBSCertList *comp ) argument
1050 ExtractingComponentCertificateList( void* mem_op, ComponentReference* cr, ComponentCertificateList *comp ) argument
[all...]
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DldAix55 echo ar cr $outputFile shr.o
56 ar cr $outputFile shr.o
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dpbind.c60 ConfigReply *cr )
75 rc = lback->bi_db_init( be, cr );
86 ConfigReply *cr )
96 rc = lback->bi_db_open( be, cr );
106 ConfigReply *cr )
113 rc = lback->bi_db_close( be, cr );
122 ConfigReply *cr )
129 rc = lback->bi_db_close( be, cr );
/macosx-10.10/vim-55/runtime/ftplugin/
H A Dpython.vim21 nnoremap <silent> <buffer> ]] :call <SID>Python_jump('/^\(class\\|def\)')<cr>
22 nnoremap <silent> <buffer> [[ :call <SID>Python_jump('?^\(class\\|def\)')<cr>
23 nnoremap <silent> <buffer> ]m :call <SID>Python_jump('/^\s*\(class\\|def\)')<cr>
24 nnoremap <silent> <buffer> [m :call <SID>Python_jump('?^\s*\(class\\|def\)')<cr>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-perl/
H A Dclose.c46 ConfigReply *cr
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsruleeditor.py6 def ruleEditor_numberOfChildrenForCriterion_withRowType_(self, ed, cr, rt): return 1
7 def ruleEditor_child_forCriterion_withRowType_(self, ed, ch, cr, rt): return 1
8 def ruleEditor_displayValueForCriterion_inRow_(self, ed, cr, rw): return 1
9 def ruleEditor_predicatePartsForCriterion_withDisplayValue_inRow_(self, ed, cr, dv, rw): return 1
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsruleeditor.py6 def ruleEditor_numberOfChildrenForCriterion_withRowType_(self, ed, cr, rt): return 1
7 def ruleEditor_child_forCriterion_withRowType_(self, ed, ch, cr, rt): return 1
8 def ruleEditor_displayValueForCriterion_inRow_(self, ed, cr, rw): return 1
9 def ruleEditor_predicatePartsForCriterion_withDisplayValue_inRow_(self, ed, cr, dv, rw): return 1

Completed in 208 milliseconds

1234567891011>>