Lines Matching refs:aCommand
284 const ucb::Command& aCommand, in execute() argument
300 OUStringToGnome( aCommand.Name ), in execute()
307 if ( COMMAND_IS( aCommand, "getPropertyValues" ) ) { in execute()
310 if ( !( aCommand.Argument >>= Properties ) ) in execute()
315 } else if ( COMMAND_IS( aCommand, "setPropertyValues" ) ) { in execute()
318 if ( !( aCommand.Argument >>= aProperties ) || in execute()
324 } else if ( COMMAND_IS( aCommand, "getPropertySetInfo" ) ) { in execute()
327 } else if ( COMMAND_IS( aCommand, "getCommandInfo" ) ) { in execute()
330 } else if ( COMMAND_IS( aCommand, "open" ) ) { in execute()
338 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
384 } else if ( COMMAND_IS( aCommand, "createNewContent" ) && isFolder( xEnv ) ) { in execute()
386 if ( !( aCommand.Argument >>= arg ) ) in execute()
391 } else if ( COMMAND_IS( aCommand, "insert" ) ) { in execute()
393 if ( !( aCommand.Argument >>= arg ) ) in execute()
398 } else if ( COMMAND_IS( aCommand, "delete" ) ) { in execute()
401 aCommand.Argument >>= bDeletePhysical; in execute()
411 } else if ( COMMAND_IS( aCommand, "transfer" ) && isFolder( xEnv ) ) { in execute()
414 if ( !( aCommand.Argument >>= transferArgs ) ) in execute()
422 OUStringToGnome( aCommand.Name ) ); in execute()