Home | History | Annotate | Download | only in MagickCore

Lines Matching refs:commands

35 %  The Delegates methods associate a set of commands with a particular
279 if (p->commands != (char *) NULL)
280 p->commands=DestroyString(p->commands);
1065 **commands;
1087 commands=StringToList(delegate_info->commands);
1088 if (commands == (char **) NULL)
1096 commands[0],exception);
1099 "MemoryAllocationFailed","`%s'",commands[0]);
1103 for (i=0; commands[i] != (char *) NULL; i++)
1104 commands[i]=DestroyString(commands[i]);
1105 commands=(char **) RelinquishMagickMemory(commands);
1121 % GetDelegateCommands() returns the commands associated with a delegate.
1138 return(delegate_info->commands);
1552 % is returned if the commands execute with success otherwise MagickTrue.
1647 **commands,
1790 commands=StringToList(delegate_info->commands);
1791 if (commands == (char **) NULL)
1805 for (i=0; commands[i] != (char *) NULL; i++)
1825 command=InterpretDelegateProperties(image_info,image,commands[i],exception);
1864 "DelegateFailed","`%s'",commands[i]);
1867 commands[i]=DestroyString(commands[i]);
1875 for ( ; commands[i] != (char *) NULL; i++)
1876 commands[i]=DestroyString(commands[i]);
1877 commands=(char **) RelinquishMagickMemory(commands);
1915 **commands,
1957 commands=StringToList(delegate_info[i]->commands);
1958 if (commands == (char **) NULL)
1963 StripString(commands[0]);
1964 (void) FormatLocaleFile(file,"\"%s\"\n",commands[0]);
1965 for (j=1; commands[j] != (char *) NULL; j++)
1967 StripString(commands[j]);
1968 (void) FormatLocaleFile(file," \"%s\"\n",commands[j]);
1970 for (j=0; commands[j] != (char *) NULL; j++)
1971 commands[j]=DestroyString(commands[j]);
1972 commands=(char **) RelinquishMagickMemory(commands);
2136 delegate_info->commands);
2153 *commands;
2155 commands=AcquireString(token);
2157 if (strchr(commands,'@') != (char *) NULL)
2163 (void) SubstituteString((char **) &commands,"@PSDelegate@",
2165 (void) SubstituteString((char **) &commands,"\\","/");
2167 (void) SubstituteString((char **) &commands,""","\"");
2169 (void) SubstituteString((char **) &commands,""","'");
2171 (void) SubstituteString((char **) &commands,"&","&");
2172 (void) SubstituteString((char **) &commands,">",">");
2173 (void) SubstituteString((char **) &commands,"&lt;","<");
2174 delegate_info->commands=commands;