Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fcpatternbuild(3) [debian man page]

FcPatternBuild(3)														 FcPatternBuild(3)

NAME
FcPatternBuild, FcPatternVaBuild, FcPatternVapBuild - Create patterns from arguments SYNOPSIS
#include <fontconfig.h> FcPattern * FcPatternBuild (FcPattern *pattern, ...); FcPattern * FcPatternVaBuild (FcPattern *pattern, va_list va); void FcPatternVapBuild (FcPattern *result, FcPattern *pattern, va_list va); DESCRIPTION
Builds a pattern using a list of objects, types and values. Each value to be entered in the pattern is specified with three arguments: 1. Object name, a string describing the property to be added. 2. Object type, one of the FcType enumerated values 3. Value, not an FcValue, but the raw type as passed to any of the FcPatternAdd<type> functions. Must match the type of the second argu- ment. The argument list is terminated by a null object name, no object type nor value need be passed for this. The values are added to `pat- tern', if `pattern' is null, a new pattern is created. In either case, the pattern is returned. Example pattern = FcPatternBuild (0, FC_FAMILY, FcTypeString, "Times", (char *) 0); FcPatternVaBuild is used when the arguments are already in the form of a varargs value. FcPatternVapBuild is a macro version of FcPat- ternVaBuild which returns its result directly in the result variable. VERSION
Fontconfig version 2.9.0 16 April 2012 FcPatternBuild(3)

Check Out this Related Man Page

FcFontRenderPrepare(3)													    FcFontRenderPrepare(3)

NAME
FcFontRenderPrepare - Prepare pattern for loading font file SYNOPSIS
cc [ flag... ] file... -lfontconfig [ library... ] #include <fontconfig.h> FcPattern * FcFontRenderPrepare (FcConfig *config, FcPattern *pat, FcPattern *font); DESCRIPTION
Creates a new pattern consisting of elements of font not appearing in pat, elements of pat not appearing in font and the best matching value from pat for elements appearing in both. The result is passed to FcConfigSubstitute with kind FcMatchFont and then returned. VERSION
Fontconfig version 2.5.0 ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWfontconfig | +-----------------------------+-----------------------------+ |Interface Stability |Volatile | +-----------------------------+-----------------------------+ |MT-Level |See XInitThreads(3X11) | +-----------------------------+-----------------------------+ 13 November 2007 FcFontRenderPrepare(3)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Korn pattern-list with a variable

I am trying to use a pattern-list match in korn shell using a variable and it always seems to regard the pattern-list as a literal: Using the directory names explicitly in the pattern-list works fine: ls @(test|test1)/test.txt and returns: test/test.txt Trying to use a variable for this... (2 Replies)
Discussion started by: partchimp
2 Replies

2. Shell Programming and Scripting

most current entries of particular pattern

I have many files coming from different objects in a text file. All objects have a file of the each dates....i.e (11july,12 july, ... so on) as convention of (object1_july11,object2_july11,object3_july11,object1_july12,object3_july12.. so on). Now sometimes the file from object stops coming... (1 Reply)
Discussion started by: partha_bhunia
1 Replies

3. Shell Programming and Scripting

How to match?

Hi, I have to find certain directory patterns. All my patterns are in a property file. One of directory patterns is :ABCmmddyyyy. (i.e ABC followed by 8 digits") How can i find all the directories of this pattern by specifying a pattern in the property file mypattern.properties ... (8 Replies)
Discussion started by: aixjadoo
8 Replies

4. Shell Programming and Scripting

adding number based on pattern using awk

Hi, I want to add numbers based on pattern . in the below ouput file , i want number to be added after pattern line ---- , ie 1 and next is also 1 and next is 2 and next is 3 after adding 4 numbers say output is 7 should be redirected to another file . like this it should add 4 digits after... (2 Replies)
Discussion started by: raghavendra.nsn
2 Replies

5. UNIX for Beginners Questions & Answers

&& meaning in UNIX

Hi Team, I know that "&" holds the result of current pattern match. But what does "&&" means and its use please? Thanks & Regards, Batta Archana (6 Replies)
Discussion started by: Archana Batta
6 Replies