Searched refs:description (Results 1 - 25 of 1789) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/dom/
H A DExceptionBase.cpp35 ExceptionBase::ExceptionBase(const ExceptionCodeDescription& description) argument
36 : m_code(description.code)
37 , m_name(description.name)
38 , m_description(description.description)
40 if (description.name)
41 m_message = m_name + ": " + description.typeName + " Exception " + String::number(description.code);
43 m_message = makeString(description.typeName, " Exception ", String::number(description
[all...]
H A DDOMCoreException.cpp36 const char* const description; member in struct:WebCore::CoreException
56 // FIXME: Couldn't find a description in the HTML/DOM specifications for NETWORK_ERR, ABORT_ERR, URL_MISMATCH_ERR, and QUOTA_EXCEEDED_ERR
66 bool DOMCoreException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
68 description->typeName = "DOM";
69 description->code = ec;
70 description->type = DOMCoreExceptionType;
75 description->name = tableIndex < tableSize ? coreExceptions[tableIndex].name : 0;
76 description->description = tableIndex < tableSize ? coreExceptions[tableIndex].description
[all...]
H A DEventException.cpp36 const char* const description; member in struct:WebCore::EventExceptionNameDescription
42 bool EventException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
47 description->typeName = "DOM Events";
48 description->code = ec - EventExceptionOffset;
49 description->type = EventExceptionType;
54 description->name = tableIndex < tableSize ? eventExceptions[tableIndex].name : 0;
55 description->description = tableIndex < tableSize ? eventExceptions[tableIndex].description : 0;
H A DRangeException.cpp36 const char* const description; member in struct:WebCore::RangeExceptionNameDescription
42 bool RangeException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
47 description->typeName = "DOM Range";
48 description->code = ec - RangeExceptionOffset;
49 description->type = RangeExceptionType;
54 description->name = tableIndex < tableSize ? rangeExceptions[tableIndex].name : 0;
55 description->description = tableIndex < tableSize ? rangeExceptions[tableIndex].description : 0;
H A DDOMCoreException.h38 static PassRefPtr<DOMCoreException> create(const ExceptionCodeDescription& description) argument
40 return adoptRef(new DOMCoreException(description));
46 explicit DOMCoreException(const ExceptionCodeDescription& description) argument
47 : ExceptionBase(description)
/macosx-10.10/WebCore-7600.1.25/Modules/webdatabase/
H A DSQLException.cpp39 const char* const description; member in struct:WebCore::SQLExceptionNameDescription
51 bool SQLException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
56 description->typeName = "DOM SQL";
57 description->code = ec - SQLExceptionOffset;
58 description->type = SQLExceptionType;
63 description->name = tableIndex < tableSize ? sqlExceptions[tableIndex].name : 0;
64 description->description = tableIndex < tableSize ? sqlExceptions[tableIndex].description : 0;
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DFileException.cpp37 const char* const description; member in struct:WebCore::FileExceptionNameDescription
53 bool FileException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
58 description->typeName = "DOM File";
59 description->code = ec - FileExceptionOffset;
60 description->type = FileExceptionType;
65 description->name = tableIndex < tableSize ? fileExceptions[tableIndex].name : 0;
66 description->description = tableIndex < tableSize ? fileExceptions[tableIndex].description : 0;
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGException.cpp36 const char* const description; member in struct:WebCore::SVGExceptionNameDescription
43 bool SVGException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
48 description->typeName = "DOM SVG";
49 description->code = ec - SVGExceptionOffset;
50 description->type = SVGExceptionType;
55 description->name = tableIndex < tableSize ? svgExceptions[tableIndex].name : 0;
56 description->description = tableIndex < tableSize ? svgExceptions[tableIndex].description : 0;
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLHttpRequestException.cpp36 const char* const description; member in struct:WebCore::XMLHttpRequestExceptionNameDescription
43 bool XMLHttpRequestException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
48 description->typeName = "XMLHttpRequest";
49 description->code = ec - XMLHttpRequestExceptionOffset;
50 description->type = XMLHttpRequestExceptionType;
55 description->name = tableIndex < tableSize ? exceptions[tableIndex].name : 0;
56 description->description = tableIndex < tableSize ? exceptions[tableIndex].description : 0;
H A DXPathException.cpp36 const char* const description; member in struct:WebCore::XPathExceptionNameDescription
42 bool XPathException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
47 description->typeName = "DOM XPath";
48 description->code = ec - XPathExceptionOffset;
49 description->type = XPathExceptionType;
54 description->name = tableIndex < tableSize ? xPathExceptions[tableIndex].name : 0;
55 description->description = tableIndex < tableSize ? xPathExceptions[tableIndex].description : 0;
/macosx-10.10/Security-57031.1.35/Security/utilities/SecurityTool/
H A Dsecurity_tool_commands_table.h32 #define SECURITY_COMMAND(name, function, parameters, description) { name, function, parameters, description },
35 #define SECURITY_COMMAND_IOS(name, function, parameters, description) { name, function, parameters, description },
37 #define SECURITY_COMMAND_IOS(name, function, parameters, description) { name, command_not_on_this_platform, "", "Not available on this platform" },
41 #define SECURITY_COMMAND_MAC(name, function, parameters, description) { name, function, parameters, description },
43 #define SECURITY_COMMAND_MAC(name, function, parameters, description) { name, command_not_on_this_platform, "", "Not available on this platform" },
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Automator/Examples/Get Buddy Info/
H A DGetBuddyInfo.py40 # build the description
41 description = "\rName: "
45 description += firstName
46 description += ' '
50 description += lastName
52 description += '\r'
56 description += "Service: "
57 description += serviceName
58 description += "\r"
62 description
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Automator/Examples/Get Buddy Info/
H A DGetBuddyInfo.py40 # build the description
41 description = "\rName: "
45 description += firstName
46 description += ' '
50 description += lastName
52 description += '\r'
56 description += "Service: "
57 description += serviceName
58 description += "\r"
62 description
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Automator-2.5.1/Examples/Get Buddy Info/
H A DGetBuddyInfo.py40 # build the description
41 description = "\rName: "
45 description += firstName
46 description += ' '
50 description += lastName
52 description += '\r'
56 description += "Service: "
57 description += serviceName
58 description += "\r"
62 description
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/stooop/
H A Dswitched.tcl33 foreach description [options $this] {
34 set option [lindex $description 0]
36 set ($this,$option) [set default [lindex $description 1]]
37 if {[llength $description]<3} {
40 } elseif {![string equal $default [lindex $description 2]]} {
41 set ($this,$option) [lindex $description 2]
78 return [description $this [lindex $args 0]]
101 proc description {this option} { ;# build specified option description list procedure
102 foreach description [option
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-AddressBook/
H A Dsetup.py17 description = "Wrappers for the framework AddressBook on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-AppleScriptKit/
H A Dsetup.py14 description = "Wrappers for the framework AppleScriptKit on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Automator/
H A Dsetup.py17 description = "Wrappers for the framework Automator on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-CoreData/
H A Dsetup.py15 description = "Wrappers for the framework CoreData on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-InstallerPlugins/
H A Dsetup.py17 description = "Wrappers for the framework InstallerPlugins on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-LaunchServices/
H A Dsetup.py33 description = "Wrappers for the framework LaunchServices on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Message/
H A Dsetup.py14 description = "Wrappers for the framework Message on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-PreferencePanes/
H A Dsetup.py14 description = "Wrappers for the framework PreferencePanes on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-QTKit/
H A Dsetup.py17 description = "Wrappers for the framework QTKit on Mac OS X", variable
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-ScriptingBridge/
H A Dsetup.py21 description = "Wrappers for the framework ScriptingBridge on Mac OS X", variable

Completed in 285 milliseconds

1234567891011>>