Searched refs:program (Results 1 - 25 of 1353) sorted by relevance

1234567891011>>

/macosx-10.9.5/configd-596.15/Plugins/IPMonitor/
H A Dtest_reference.sh18 program="${1}"
21 ${program}
23 ${program} | ${filter}
29 echo "usage: $0 ( create | test ) <program> <reference_file> [ <filter> ]"
34 program="${2}"
42 if [ "${program}" = "" ]; then
46 if [ ! -f "${program}" ]; then
47 echo "program '${program}' doesn't exit"
50 if [ ! -x "${program}" ]; the
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DStyleCustomFilterProgramCache.cpp41 static CustomFilterProgramInfo programCacheKey(StyleCustomFilterProgram* program) argument
43 ASSERT(program->vertexShaderURL().isValid() || program->fragmentShaderURL().isValid());
44 return CustomFilterProgramInfo(program->vertexShaderURL(), program->fragmentShaderURL(),
45 program->programType(), program->mixSettings(), program->meshType());
65 StyleCustomFilterProgram* StyleCustomFilterProgramCache::lookup(StyleCustomFilterProgram* program) const
67 return lookup(programCacheKey(program));
70 add(StyleCustomFilterProgram* program) argument
78 remove(StyleCustomFilterProgram* program) argument
[all...]
/macosx-10.9.5/man-16/man/src/
H A Dapropos.sh18 program=`basename $0`
31 echo "usage: $program keyword ..."
39 echo "$program: manpath is null"
47 echo "$program from %version%"
51 echo "usage: $program keyword ..."
55 echo "$program: $arg: unknown option"
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DWebGLUniformLocation.cpp35 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GC3Dint location) argument
37 return adoptRef(new WebGLUniformLocation(program, location));
40 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GC3Dint location) argument
41 : m_program(program)
48 WebGLProgram* WebGLUniformLocation::program() const function in class:WebCore::WebGLUniformLocation
50 // If the program has been linked again, then this UniformLocation is no
59 // If the program has been linked again, then this UniformLocation is no
/macosx-10.9.5/llvmCore-3425.0.33/utils/
H A Dcheck-each-file9 program=$2
10 linker=./link-$program
11 echo "Building $program with llvm-native-gcc"
12 rm -f $program
13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
14 echo "Erasing $program and re-linking it"
15 rm -f $program
16 echo "rm -f $program" > $linker
17 gmake -n $program >> $linker
23 echo "$program appear
[all...]
/macosx-10.9.5/apache-786.1/httpd/build/
H A DPrintPath19 # Look for program[s] somewhere in $PATH.
28 # PrintPath [-s] [-pPATHNAME] program [program ...]
105 for program in $programs
109 if [ $test_exec_flag $path/${program}${ext} ] && \
110 [ ! -d $path/${program}${ext} ]; then
112 echo $path/${program}${ext}
119 if [ $test_exec_flag $path/${program} ] && \
120 [ ! -d $path/${program} ]; then
122 echo $path/${program}
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/build/
H A DPrintPath19 # Look for program[s] somewhere in $PATH.
28 # PrintPath [-s] [-pPATHNAME] program [program ...]
105 for program in $programs
109 if [ $test_exec_flag $path/${program}${ext} ] && \
110 [ ! -d $path/${program}${ext} ]; then
112 echo $path/${program}${ext}
119 if [ $test_exec_flag $path/${program} ] && \
120 [ ! -d $path/${program} ]; then
122 echo $path/${program}
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/xml/expat/conftools/
H A DPrintPath19 # Look for program[s] somewhere in $PATH.
28 # PrintPath [-s] [-pPATHNAME] program [program ...]
105 for program in $programs
109 if [ $test_exec_flag $path/${program}${ext} ] && \
110 [ ! -d $path/${program}${ext} ]; then
112 echo $path/${program}${ext}
119 if [ $test_exec_flag $path/${program} ] && \
120 [ ! -d $path/${program} ]; then
122 echo $path/${program}
[all...]
/macosx-10.9.5/apr-30/apr/apr/build/
H A DPrintPath19 # Look for program[s] somewhere in $PATH.
28 # PrintPath [-s] [-pPATHNAME] program [program ...]
105 for program in $programs
109 if [ $test_exec_flag $path/${program}${ext} ] && \
110 [ ! -d $path/${program}${ext} ]; then
112 echo $path/${program}${ext}
119 if [ $test_exec_flag $path/${program} ] && \
120 [ ! -d $path/${program} ]; then
122 echo $path/${program}
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/xml/expat/conftools/
H A DPrintPath19 # Look for program[s] somewhere in $PATH.
28 # PrintPath [-s] [-pPATHNAME] program [program ...]
105 for program in $programs
109 if [ $test_exec_flag $path/${program}${ext} ] && \
110 [ ! -d $path/${program}${ext} ]; then
112 echo $path/${program}${ext}
119 if [ $test_exec_flag $path/${program} ] && \
120 [ ! -d $path/${program} ]; then
122 echo $path/${program}
[all...]
/macosx-10.9.5/expat-12/expat/conftools/
H A DPrintPath2 # Look for program[s] somewhere in $PATH.
11 # PrintPath [-s] [-pPATHNAME] program [program ...]
91 for program in $programs
95 if [ $test_exec_flag $path/${program}${ext} ] && \
96 [ ! -d $path/${program}${ext} ]; then
98 echo $path/${program}${ext}
105 if [ $test_exec_flag $path/${program} ] && \
106 [ ! -d $path/${program} ]; then
108 echo $path/${program}
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/
H A DLoopBlinnSolidFillShader.cpp40 unsigned program = loadProgram(context, local
43 if (!program)
45 return adoptPtr(new LoopBlinnSolidFillShader(context, program));
48 LoopBlinnSolidFillShader::LoopBlinnSolidFillShader(GraphicsContext3D* context, unsigned program) argument
49 : LoopBlinnShader(context, program)
51 m_colorLocation = context->getUniformLocation(program, "color");
H A DLoopBlinnShader.cpp34 LoopBlinnShader::LoopBlinnShader(GraphicsContext3D* context, unsigned program) argument
35 : Shader(context, program)
37 m_worldViewProjectionLocation = context->getUniformLocation(program, "worldViewProjection");
38 m_positionLocation = context->getAttribLocation(program, "position");
39 m_klmLocation = context->getAttribLocation(program, "klm");
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/java/
H A DMakefile3 BUILD= compat.html conf.html faq.html program.html
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/tcl/
H A DMakefile3 BUILD= intro.html error.html faq.html program.html using.html
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/coordinated/
H A DCoordinatedCustomFilterOperation.h45 static PassRefPtr<CoordinatedCustomFilterOperation> create(PassRefPtr<CustomFilterProgram> program, int programID, const CustomFilterParameterList& sortedParameters, unsigned meshRows, unsigned meshColumns, CustomFilterMeshType meshType) argument
47 return adoptRef(new CoordinatedCustomFilterOperation(program, programID, sortedParameters, meshRows, meshColumns, meshType));
53 CoordinatedCustomFilterOperation(PassRefPtr<CustomFilterProgram> program, int programID, const CustomFilterParameterList& sortedParameters, unsigned meshRows, unsigned meshColumns, CustomFilterMeshType meshType) argument
54 : CustomFilterOperation(program, sortedParameters, meshRows, meshColumns)
/macosx-10.9.5/Librpcsvc-23/
H A Drwall.x43 program WALLPROG {
/macosx-10.9.5/cups-372.4/cups/ppdc/
H A Dppdc-filter.cxx33 const char *p, // I - Filter program
40 program = new ppdcString(p);
54 program->release();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DCustomFilterOperation.h46 static PassRefPtr<CustomFilterOperation> create(PassRefPtr<CustomFilterProgram> program, const CustomFilterParameterList& sortedParameters, unsigned meshRows, unsigned meshColumns) argument
48 return adoptRef(new CustomFilterOperation(program, sortedParameters, meshRows, meshColumns));
51 CustomFilterProgram* program() const { return m_program.get(); } function in class:WebCore::CustomFilterOperation
52 void setProgram(PassRefPtr<CustomFilterProgram> program) { m_program = program; } argument
59 CustomFilterMeshType meshType() const { return program() ? program()->meshType() : MeshTypeAttached; }
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/wip/
H A Dwip2.tcl140 variable program {} ; # list (string)
240 # Note: We are saving the current program and restore it
243 set saved $program
244 set program $alist
246 while {[llength $program]} {
249 set program $saved
255 while {[llength $program] && [struct::set contains $accept [$self peek]]} {
263 while {[llength $program] && ![struct::set contains $reject [$self peek]]} {
271 if {[llength $program] && [struct::set contains $accept [$self peek]]} {
279 if {[llength $program]
[all...]
H A Dwip.tcl133 variable program {} ; # list (string)
233 # Note: We are saving the current program and restore it
236 set saved $program
237 set program $alist
239 while {[llength $program]} {
242 set program $saved
248 while {[llength $program] && [struct::set contains $accept [$self peek]]} {
256 while {[llength $program] && ![struct::set contains $reject [$self peek]]} {
264 if {[llength $program] && [struct::set contains $accept [$self peek]]} {
272 if {[llength $program]
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/mediacontrol/fullscreenbutton/
H A Dfullscreen_button.edc48 program {
53 program {
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/mediacontrol/mutebutton/
H A Dmute_button.edc49 program {
54 program {
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/mediacontrol/playpausebutton/
H A Dplaypause_button.edc49 program {
54 program {
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/mediacontrol/togglecaptionsbutton/
H A Dtoggle_captions_button.edc47 program {
52 program {

Completed in 182 milliseconds

1234567891011>>