Searched refs:resolution (Results 1 - 25 of 131) sorted by relevance

123456

/macosx-10.10.1/cups-408/cups/ppdc/
H A Dppdc-profile.cxx41 resolution = new ppdcString(r);
58 resolution->release();
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/vu/
H A Ddial_demo.rb16 :resolution=>0.001, :minortickinterval=>0.01,
21 :resolution=>10, :tickinterval=>100,
27 fwd = Tk::Vu::Dial.new(:from=>-10.0, :to=>-20.0, :resolution=>0.1,
31 rev = Tk::Vu::Dial.new(:from=>-20.0, :to=>-10.0, :resolution=>0.1,
36 :resolution=>0.05, :tickinterval=>2,
42 :resolution=>0.05, :tickinterval=>1,
52 d1 = Tk::Vu::Dial.new(:resolution=>0.0001, :from=>-0.1, :to=>0.1,
58 d2 = Tk::Vu::Dial.new(:resolution=>0.01, :from=>-0.1, :to=>0.1,
65 d3 = Tk::Vu::Dial.new(:resolution=>0.001, :from=>-0.1, :to=>0.1,
83 v_volume.numeric += volume[:resolution]
[all...]
H A Dvu_demo.rb12 dial = Tk::Vu::Dial.new(:resolution=>0.001, :from=>-0.1, :to=>0.1,
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/python/
H A Decho.py30 s1 = Scale(f, from_=1.0, to=0, resolution=0.01, label="inGain", command=config)
33 s2 = Scale(f, from_=1.0, to=0, resolution=0.01, label="outGain", command=config)
39 s4 = Scale(f, from_=1.0, to=0, resolution=0.01, label="Decay1", command=config)
45 s6 = Scale(f, from_=1.0, to=0, resolution=0.01, label="Decay2", command=config)
H A Dmixplay.py40 scale1 = Scale(f, from_=1.0, to=0, resolution=0.01, label="sound 1", command=config)
43 scale2 = Scale(f, from_=1.0, to=0, resolution=0.01, label="sound 2", command=config)
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dcompose.tcl21 pack [scale .f.f1.s0 -label Map -from 1.0 -to 0.0 -resolution .01 \
26 pack [scale .f.f2.s1 -label InGain -from 1.0 -to 0.0 -resolution .01 \
30 pack [scale .f.f2.s2 -label OutGain -from 1.0 -to 0.0 -resolution .01 \
38 pack [scale .f.f2.s4 -label Decay -from 1.0 -to 0.0 -resolution .01 \
43 pack [scale .f.f3.s1 -label InGain -from 1.0 -to 0.0 -resolution .01 \
47 pack [scale .f.f3.s2 -label OutGain -from 1.0 -to 0.0 -resolution .01 \
55 pack [scale .f.f3.s6 -label Decay -from 1.0 -to 0.0 -resolution .01 \
H A Decho.tcl14 pack [scale .f.s1 -label InGain -from 1.0 -to 0.0 -resolution .01 \
18 pack [scale .f.s2 -label OutGain -from 1.0 -to 0.0 -resolution .01 \
26 pack [scale .f.s4 -label Decay1 -from 1.0 -to 0.0 -resolution .01 \
34 pack [scale .f.s6 -label Decay2 -from 1.0 -to 0.0 -resolution .01 \
H A Dmixplay.tcl44 scale $ft.s1 -label "sound 1" -from 1.0 -to 0.0 -resolution 0.01 -command configure
45 scale $ft.s2 -label "sound 2" -from 1.0 -to 0.0 -resolution 0.01 -command configure
/macosx-10.10.1/CPANInternal-159.1/JSON-PP-2.27203/lib/JSON/PP/
H A DBoolean.pm11 This module exists only to provide overload resolution for Storable and similar modules. See
/macosx-10.10.1/CPANInternal-159.1/Types-Serialiser-1.0/Serialiser/
H A DError.pm11 This module exists only to provide overload resolution for Storable and
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDPointingDevice.h48 static IOHIDPointingDevice * newPointingDeviceAndStart(IOService * owner, UInt8 numButtons = 8, UInt32 resolution = 100, bool scroll = false, UInt32 location = 0);
/macosx-10.10.1/CPANInternal-159.1/JSON-XS-3.01/XS/
H A DBoolean.pm11 This module exists only to provide overload resolution for Storable and
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dppm2tiff.c76 double resolution = -1; local
102 case 'R': /* resolution */
103 resolution = atof(optarg);
238 if (resolution > 0) {
239 TIFFSetField(out, TIFFTAG_XRESOLUTION, resolution);
240 TIFFSetField(out, TIFFTAG_YRESOLUTION, resolution);
323 " -R # set x&y resolution (dpi)",
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSPromise.cpp120 void JSPromise::resolve(VM& vm, JSValue resolution) argument
132 // 3. Set the value of promise's [[Result]] internal slot to resolution.
133 m_result.set(vm, this, resolution);
141 // 6. Set the value of promise's [[PromiseStatus]] internal slot to "has-resolution".
144 // 7. Return the result of calling TriggerPromiseReactions(reactions, resolution).
145 triggerPromiseReactions(vm, globalObject(), reactions, resolution);
H A DJSPromisePrototype.cpp163 // 18. If the value of promise's [[PromiseStatus]] internal slot is "has-resolution",
165 // i. Let 'resolution' be the value of promise's [[Result]] internal slot.
166 JSValue resolution = promise->result(); local
168 // ii. Call QueueMicrotask(ExecutePromiseReaction, (resolveReaction, resolution)).
169 globalObject->queueMicrotask(createExecutePromiseReactionMicrotask(vm, resolveReaction, resolution));
/macosx-10.10.1/cups-408/cups/cups/
H A Dipp-support.c297 "resolution", /* 0x32 */
672 if (val->resolution.xres == val->resolution.yres)
675 bufptr += snprintf(bufptr, (size_t)(bufend - bufptr + 1), "%d%s", val->resolution.xres, val->resolution.units == IPP_RES_PER_INCH ? "dpi" : "dpcm");
677 bufptr += snprintf(temp, sizeof(temp), "%d%s", val->resolution.xres, val->resolution.units == IPP_RES_PER_INCH ? "dpi" : "dpcm");
680 bufptr += snprintf(bufptr, (size_t)(bufend - bufptr + 1), "%dx%d%s", val->resolution.xres, val->resolution.yres, val->resolution
[all...]
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDPointing.h98 virtual IOFixed resolution();
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dtimeflow.cpp103 // Estimate resolution at given time.
105 // BSD select(2) has theoretical microsecond resolution, but the underlying
107 // Sometime in the future when the sun is near collapse, residual resolution
110 Interval resolution(Absolute) function in namespace:Security::Time
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dtimeflow.cpp103 // Estimate resolution at given time.
105 // BSD select(2) has theoretical microsecond resolution, but the underlying
107 // Sometime in the future when the sun is near collapse, residual resolution
110 Interval resolution(Absolute) function in namespace:Security::Time
/macosx-10.10.1/groff-38/groff/src/utils/addftinfo/
H A Daddftinfo.cpp82 int resolution; local
83 if (sscanf(argv[argc-3], "%d", &resolution) != 1)
85 if (resolution <= 0)
86 fatal("resolution must be > 0");
95 param.em = (resolution*unitwidth)/72;
135 "resolution unitwidth font\n",
/macosx-10.10.1/groff-38/groff/src/utils/xtotroff/
H A Dxtotroff.c41 unsigned resolution = 75; variable
125 parsed.ResolutionX = resolution;
126 parsed.ResolutionY = resolution;
217 "usage: %s [-r resolution] [-s pointsize] FontMap\n",
244 sscanf(optarg, "%u", &resolution);
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkScale.h77 double resolution; /* If > 0, all values are rounded to an even member in struct:TkScale
81 * based on resolution and/or the range of the
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkScale.h78 double resolution; /* If > 0, all values are rounded to an member in struct:TkScale
82 * number based on resolution and/or the
/macosx-10.10.1/tcl-105/tk/tk/library/
H A Dscale.tcl221 if {$inc < [$w cget -resolution]} {
222 set inc [$w cget -resolution]
225 set inc [$w cget -resolution]
/macosx-10.10.1/tcl-105/tk84/tk/library/
H A Dscale.tcl221 if {$inc < [$w cget -resolution]} {
222 set inc [$w cget -resolution]
225 set inc [$w cget -resolution]

Completed in 233 milliseconds

123456