Searched refs:paramName (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIODisplay.h172 static bool addParameter( OSDictionary * params, const OSSymbol * paramName, SInt32 min, SInt32 max );
173 static bool setParameter( OSDictionary * params, const OSSymbol * paramName, SInt32 value );
179 const OSSymbol * paramName, UInt32 value );
180 virtual bool doDataSet( const OSSymbol * paramName, OSData * value );
254 const OSSymbol * paramName, UInt32 value ) = 0;
255 virtual bool doDataSet( const OSSymbol * paramName, OSData * value ) = 0;
/macosx-10.10/swig-12/Lib/csharp/
H A Dcsharphead.swg137 public delegate void ExceptionArgumentDelegate(string message, string paramName);
209 static void SetPendingArgumentException(string message, string paramName) {
210 SWIGPendingException.Set(new System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
212 static void SetPendingArgumentNullException(string message, string paramName) {
215 SWIGPendingException.Set(new System.ArgumentNullException(paramName, message));
217 static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
220 SWIGPendingException.Set(new System.ArgumentOutOfRangeException(paramName, message));
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIODisplay.cpp944 bool IODisplay::addParameter( OSDictionary * params, const OSSymbol * paramName, argument
950 paramDict = (OSDictionary *) params->getObject(paramName);
956 params->setObject(paramName, paramDict);
970 bool IODisplay::setParameter( OSDictionary * params, const OSSymbol * paramName, argument
976 paramDict = (OSDictionary *) params->getObject(paramName);
981 if (paramName == gIODisplayRotationKey)
984 getIntegerRange( params, paramName, NULL, &min, &max );
1032 const OSSymbol * paramName, UInt32 value )
1038 if (gIODisplayFadeTime1Key == paramName)
1043 if (gIODisplayFadeTime2Key == paramName)
1031 doIntegerSet( OSDictionary * params, const OSSymbol * paramName, UInt32 value ) argument
1077 doDataSet( const OSSymbol * paramName, OSData * value ) argument
[all...]
H A DIOBacklightDisplay.cpp120 const OSSymbol * paramName, UInt32 value );
628 const OSSymbol * paramName, UInt32 value )
630 if ((paramName == gIODisplayParametersCommitKey)
634 if (paramName == gIODisplayBrightnessKey)
644 return (super::doIntegerSet(params, paramName, value));
627 doIntegerSet( OSDictionary * params, const OSSymbol * paramName, UInt32 value ) argument
H A DIOFramebuffer.cpp794 const OSSymbol * paramName, UInt32 value );
795 virtual bool doDataSet( const OSSymbol * paramName, OSData * value );
10132 const OSSymbol * paramName, UInt32 value )
10140 if (fDisplayParams && fDisplayParams->getObject(paramName))
10144 && gIOFBPrefsParameters->getObject(paramName)
10145 && (params = IODisplay::getIntegerRange(fDisplayParams, paramName, 0, &min, &max))
10148 fFramebuffer->setIntegerPreference(fDisplay, paramName, value);
10151 attribute = OSReadBigInt32(paramName->getCStringNoCopy(), 0);
10172 DEBG1(fFramebuffer->thisName, "(%d) %s = %d\n", ok, paramName->getCStringNoCopy(), (int) value);
10177 if (gIODisplayParametersFlushKey == paramName)
10131 doIntegerSet( OSDictionary * params, const OSSymbol * paramName, UInt32 value ) argument
10187 doDataSet( const OSSymbol * paramName, OSData * value ) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/scripts/
H A DCodeGeneratorGObject.pm866 my ($paramName, $paramIDLType, $returnType, $functionName) = @_;
870 $condition = "!$paramName || !*$paramName";
873 $condition = "WEBKIT_DOM_IS_${paramTypeCaps}($paramName)";
874 if (ParamCanBeNull($functionName, $paramName)) {
875 $condition = "!$paramName || $condition";
878 if (ParamCanBeNull($functionName, $paramName)) {
881 $condition = "$paramName";
896 my($functionName, $paramName) = @_;
899 return scalar(grep {$_ eq $paramName}
[all...]
H A DCodeGeneratorObjC.pm942 my $paramName = $param->name;
948 $functionSig .= " $paramName";
949 $methodName .= $paramName;
952 $functionSig .= ":($paramType)$paramName";
1471 my $paramName = $param->name;
1475 $paramName = "in" . ucfirst($paramName) if $attributeNames{$paramName};
1482 $implGetter = "AtomicString($paramName)"
1484 $implGetter = GetObjCTypeGetter($paramName,
[all...]
H A DCodeGeneratorJS.pm3581 my $paramName = $param->name;
3583 push(@args, GetNativeTypeForCallbacks($param->type) . " " . $paramName);
3600 my $paramName = $param->name;
3602 push(@implContent, " args.append(jsStringWithCache(exec, ${paramName}));\n");
3604 push(@implContent, " args.append(jsBoolean(${paramName}));\n");
3606 push(@implContent, " args.append($paramName ? $paramName->deserialize(exec, m_data->globalObject(), 0) : jsNull());\n");
3608 push(@implContent, " args.append(toJS(exec, m_data->globalObject(), ${paramName}));\n");
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Dudbgutil.cpp373 const char *paramName; member in struct:USystemParams
553 return systemParams[i].paramName;
572 const char *paramName; local
573 for(int32_t i=0;(paramName=udbg_getSystemParameterNameByIndex(i))!=NULL;i++) {
577 fprintf(out," <param name=\"%s\">%s</param>\n", paramName,str);
579 fprintf(out," <!-- n=\"%s\" ERROR: %s -->\n", paramName, u_errorName(status2));

Completed in 275 milliseconds