HomeSort by relevance Sort by last modified time
    Searched defs:lf (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/ui/base/l10n/
l10n_util_win_unittest.cc 20 LOGFONT lf = metrics.lfMessageFont; local
21 l10n_util::AdjustUIFont(&lf);
22 int size = lf.lfHeight;
30 lf.lfHeight = static_cast<int>(1.4 * size + rounding);
31 l10n_util::AdjustUIFontForDIP(1.4f, &lf);
32 EXPECT_NEAR(size, lf.lfHeight, 1);
34 lf.lfHeight = static_cast<int>(1.8 * size + rounding);
35 l10n_util::AdjustUIFontForDIP(1.8f, &lf);
36 EXPECT_NEAR(size, lf.lfHeight, 1);
  /external/chromium_org/content/common/
font_list_win.cc 23 const LOGFONTW& lf = logical_font->elfLogFont; local
24 if (lf.lfFaceName[0] && lf.lfFaceName[0] != '@') {
25 base::string16 face_name(lf.lfFaceName);
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_truetype_font_list_win.cc 27 const LOGFONTW& lf = logical_font->elfLogFont; local
28 if (lf.lfFaceName[0] && lf.lfFaceName[0] != '@' &&
29 lf.lfOutPrecision == OUT_STROKE_PRECIS) { // Outline fonts only.
30 std::string face_name(base::UTF16ToUTF8(lf.lfFaceName));
43 const LOGFONTW& lf = logical_font->elfLogFont; local
44 if (lf.lfFaceName[0] && lf.lfFaceName[0] != '@' &&
45 lf.lfOutPrecision == OUT_STROKE_PRECIS) { // Outline fonts only.
47 desc.family = base::UTF16ToUTF8(lf.lfFaceName)
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleTextBox.cpp 49 LOGFONT lf; local
50 sk_bzero(&lf, sizeof(lf));
51 lf.lfHeight = 9;
52 SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf);
53 lf.lfHeight = 12;
54 SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf);
  /external/skia/samplecode/
SampleTextBox.cpp 49 LOGFONT lf; local
50 sk_bzero(&lf, sizeof(lf));
51 lf.lfHeight = 9;
52 SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf);
53 lf.lfHeight = 12;
54 SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_picklpf.c 54 const struct loopfilter *const lf = &cm->lf; local
62 int filt_mid = clamp(lf->filter_level, min_filter_level, max_filter_level);
142 struct loopfilter *const lf = &cm->lf; local
144 lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0
156 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
158 lf->filter_level = search_filter_level(sd, cpi,
  /external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c 49 struct loopfilter *const lf = &cm->lf; local
57 int filt_mid = clamp(lf->filter_level, min_filter_level, max_filter_level);
131 lf->filter_level = filt_best;
137 struct loopfilter *const lf = &cm->lf; local
139 lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0
151 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 118 int lf = 0; local
133 lf += 4;
134 if (didx < codeLength && lineFeed > 0 && lf % lineFeed == 0)
183 * beside the bas64 chars, LF, CR, tab and space are accepted.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_picklpf.c 49 struct loopfilter *const lf = &cm->lf; local
57 int filt_mid = clamp(lf->filter_level, min_filter_level, max_filter_level);
131 lf->filter_level = filt_best;
137 struct loopfilter *const lf = &cm->lf; local
139 lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0
151 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 55 struct drisw_loader_funcs *lf; member in struct:dri_sw_winsys
186 dri_sw_ws->lf->put_image(dri_drawable, dri_sw_dt->data, width, height);
197 dri_create_sw_winsys(struct drisw_loader_funcs *lf)
205 ws->lf = lf;
  /external/chromium_org/v8/test/webkit/
ToNumber.js 36 var lf = String.fromCharCode(0xA); variable
104 shouldBe("+lf", "0");
128 shouldBe("+(lf + '1')", "1");
152 shouldBe("+('1' + lf)", "1");
176 shouldBe("+('1' + lf + '1')", "NaN");
parseFloat.js 34 var lf = String.fromCharCode(0xA); variable
80 shouldBe("parseFloat(lf + '1')", "1");
  /external/mesa3d/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 55 struct drisw_loader_funcs *lf; member in struct:dri_sw_winsys
186 dri_sw_ws->lf->put_image(dri_drawable, dri_sw_dt->data, width, height);
197 dri_create_sw_winsys(struct drisw_loader_funcs *lf)
205 ws->lf = lf;
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusFont.h 41 LOGFONTA lf; local
43 if(GetObjectA(hfont, sizeof(LOGFONTA), &lf))
44 lastResult = DllExports::GdipCreateFontFromLogfontA(hdc, &lf, &font);
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 212 int lf = in.read(); local
213 if ((cr != HTTP.CR) || (lf != HTTP.LF)) {
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_entropymode.c 421 static void set_default_lf_deltas(struct loopfilter *lf) {
422 lf->mode_ref_delta_enabled = 1;
423 lf->mode_ref_delta_update = 1;
425 lf->ref_deltas[INTRA_FRAME] = 1;
426 lf->ref_deltas[LAST_FRAME] = 0;
427 lf->ref_deltas[GOLDEN_FRAME] = -1;
428 lf->ref_deltas[ALTREF_FRAME] = -1;
430 lf->mode_deltas[0] = 0;
431 lf->mode_deltas[1] = 0;
437 struct loopfilter *const lf = &cm->lf local
    [all...]
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.cpp 109 LOGFONT lf; local
138 lf.lfHeight = - pt.y;
139 lf.lfWidth = 0;
140 lf.lfEscapement = 0;
141 lf.lfOrientation = 0;
142 lf.lfWeight = 0;
143 lf.lfItalic = 0;
144 lf.lfUnderline = 0;
145 lf.lfStrikeOut = 0;
146 lf.lfCharSet = DEFAULT_CHARSET
194 LOGFONTA lf; local
    [all...]
  /external/iproute2/misc/
lnstat_util.c 39 static int scan_lines(struct lnstat_file *lf, int i)
43 for (j = 0; j < lf->num_fields; j++)
44 lf->fields[j].values[i] = 0;
46 while(!feof(lf->fp)) {
52 fgets(buf, sizeof(buf)-1, lf->fp);
53 gettimeofday(&lf->last_read, NULL);
55 for (j = 0; j < lf->num_fields; j++) {
58 lf->fields[j].values[i] = f;
60 lf->fields[j].values[i] += f;
83 struct lnstat_file *lf; local
174 struct lnstat_file *lf; local
217 struct lnstat_file *lf; local
252 struct lnstat_file *lf; local
280 struct lnstat_file *lf; local
297 struct lnstat_file *lf; local
    [all...]
lnstat.c 80 struct lnstat_field *lf; member in struct:field_param
97 struct lnstat_field *lf = fp->params[i].lf; local
102 fprintf(of, formatbuf, lf->result);
112 struct lnstat_file *lf; local
116 for (lf = lnstat_files; lf; lf = lf->next) {
117 for (i = 0; i < lf->num_fields; i++)
    [all...]
  /external/libedit/examples/
tc1.c 98 const LineInfo *lf = el_line(el); local
105 for (ptr = lf->cursor - 1;
106 !isspace((unsigned char)*ptr) && ptr > lf->buffer; ptr--)
108 len = lf->cursor - ++ptr;
wtc1.c 63 const LineInfoW *lf = el_wline(el); local
69 for (ptr = lf->cursor -1; !iswspace(*ptr) && ptr > lf->buffer; --ptr)
71 len = lf->cursor - ++ptr;
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.c 421 static void set_default_lf_deltas(struct loopfilter *lf) {
422 lf->mode_ref_delta_enabled = 1;
423 lf->mode_ref_delta_update = 1;
425 lf->ref_deltas[INTRA_FRAME] = 1;
426 lf->ref_deltas[LAST_FRAME] = 0;
427 lf->ref_deltas[GOLDEN_FRAME] = -1;
428 lf->ref_deltas[ALTREF_FRAME] = -1;
430 lf->mode_deltas[0] = 0;
431 lf->mode_deltas[1] = 0;
437 struct loopfilter *const lf = &cm->lf local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_entropymode.c 421 static void set_default_lf_deltas(struct loopfilter *lf) {
422 lf->mode_ref_delta_enabled = 1;
423 lf->mode_ref_delta_update = 1;
425 lf->ref_deltas[INTRA_FRAME] = 1;
426 lf->ref_deltas[LAST_FRAME] = 0;
427 lf->ref_deltas[GOLDEN_FRAME] = -1;
428 lf->ref_deltas[ALTREF_FRAME] = -1;
430 lf->mode_deltas[0] = 0;
431 lf->mode_deltas[1] = 0;
437 struct loopfilter *const lf = &cm->lf local
    [all...]
  /external/chromium_org/third_party/pexpect/
screen.py 32 LF = 10 # Line feed.
33 VT = 11 # Same as LF.
34 FF = 12 # Same as LF.
126 def lf (self): member in class:screen
144 self.lf ()
  /external/clang/test/Analysis/
stack-addr-ps.cpp 77 void *lf() { function

Completed in 869 milliseconds

1 2 3