Searched refs:typeName (Results 1 - 25 of 139) sorted by relevance

123456

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/tests/publicapi/
H A Dtst_publicapi.cpp96 static bool isCheckedEnum(const QByteArray& typeName) argument
98 QList<QByteArray> tokens = typeName.split(':');
113 static bool isCheckedClass(const QByteArray& typeName) argument
117 if (moTypeName == typeName || moTypeName + "*" == typeName)
123 static void checkKnownType(const QByteArray& typeName) argument
125 if ((typeName != "void" && !QMetaType::type(typeName)) || QMetaType::type(typeName) >= QMetaType::User) {
126 bool knownEnum = isCheckedEnum(typeName);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DExceptionBase.cpp43 m_message = m_name + ": " + description.typeName + " Exception " + String::number(description.code);
45 m_message = makeString(description.typeName, " Exception ", String::number(description.code));
H A DCustomElementConstructor.cpp47 PassRefPtr<CustomElementConstructor> CustomElementConstructor::create(ScriptState* state, Document* document, const QualifiedName& typeName, const QualifiedName& localName, const ScriptValue& prototype) argument
50 ASSERT(localName == typeName || localName == *CustomElementHelpers::findLocalName(prototype));
51 RefPtr<CustomElementConstructor> created = adoptRef(new CustomElementConstructor(document, typeName, localName));
57 CustomElementConstructor::CustomElementConstructor(Document* document, const QualifiedName& typeName, const QualifiedName& localName) argument
59 , m_typeName(typeName)
H A DDOMCoreException.cpp68 description->typeName = "DOM";
H A DCustomElementConstructor.h55 static PassRefPtr<CustomElementConstructor> create(ScriptState*, Document*, const QualifiedName& typeName, const QualifiedName& localName, const ScriptValue&);
60 const QualifiedName& typeName() const { return m_typeName; } function in class:WebCore::CustomElementConstructor
67 CustomElementConstructor(Document*, const QualifiedName& typeName, const QualifiedName& localName);
H A DCustomElementRegistry.cpp147 QualifiedName typeName(nullAtom, lowerName, namespaceURI);
148 QualifiedName localNameToUse = localNameFound ? *localNameFound : typeName;
149 if (find(typeName, localNameToUse)) {
160 RefPtr<CustomElementConstructor> constructor = CustomElementConstructor::create(state, document(), typeName, localNameToUse, prototypeValue);
166 m_constructors.add(std::make_pair(constructor->typeName(), constructor->localName()), constructor);
184 PassRefPtr<CustomElementConstructor> CustomElementRegistry::find(const QualifiedName& typeName, const QualifiedName& localName) const argument
187 if (!typeName.localName().isEmpty())
188 found = m_constructors.find(std::make_pair(typeName, localName));
198 const QualifiedName& typeName = QualifiedName(nullAtom, typeExtension, localName.namespaceURI()); local
199 if (RefPtr<CustomElementConstructor> found = find(typeName, localNam
[all...]
H A DEventException.cpp47 description->typeName = "DOM Events";
H A DRangeException.cpp47 description->typeName = "DOM Range";
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DExceptionHandlers.mm46 if (strcmp(description.typeName, "DOM Range") == 0)
48 else if (strcmp(description.typeName, "DOM Events") == 0)
50 else if (strcmp(description.typeName, "DOM XPath") == 0)
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebDashboardRegion.mm63 static const char* typeName(WebDashboardRegionType type)
80 return [NSString stringWithFormat:@"rect:%@ clip:%@ type:%s", NSStringFromRect(rect), NSStringFromRect(clip), typeName(type)];
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DCommonASTWithHiddenTokens.hpp25 virtual const char* typeName( void ) const function in class:antlr::CommonASTWithHiddenTokens
H A DASTNULLType.hpp25 const char* typeName( void ) const;
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLException.cpp56 description->typeName = "DOM SQL";
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DFileException.cpp60 description->typeName = "DOM File";
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGException.cpp51 description->typeName = "DOM SVG";
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXMLHttpRequestException.cpp48 description->typeName = "XMLHttpRequest";
H A DXPathException.cpp47 description->typeName = "DOM XPath";
/macosx-10.9.5/CPANInternal-140/Pod-WSDL/lib/Pod/WSDL/
H A DUtils.pm100 my $typeName = shift;
104 if ((defined $typeName) and (exists $XSD_STANDARD_TYPE_MAP{$typeName})) {
106 return $TARGET_NS_DECL . ':' . $ARRAY_PREFIX_NAME . ucfirst $typeName;
108 return 'xsd:' . $typeName;
/macosx-10.9.5/CPANInternal-140/Pod-WSDL-0.061/lib/Pod/WSDL/
H A DUtils.pm100 my $typeName = shift;
104 if ((defined $typeName) and (exists $XSD_STANDARD_TYPE_MAP{$typeName})) {
106 return $TARGET_NS_DECL . ':' . $ARRAY_PREFIX_NAME . ucfirst $typeName;
108 return 'xsd:' . $typeName;
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dmach++.cpp120 const char *typeName; local
122 case MACH_NOTIFY_PORT_DELETED: typeName = "port deleted"; break;
123 case MACH_NOTIFY_PORT_DESTROYED:typeName = "port destroyed"; break;
124 case MACH_NOTIFY_NO_SENDERS: typeName = "no senders"; break;
125 case MACH_NOTIFY_SEND_ONCE: typeName = "send once"; break;
126 case MACH_NOTIFY_DEAD_NAME: typeName = "dead name"; break;
127 default: typeName = "???"; break;
130 secdebug("port", "%d cancel notify %s", port(), typeName);
132 secdebug("port", "%d request notify %s to %d (sync %d)", port(), typeName, notify, sync);
H A Ddebugging.h66 string typeName(const Object &obj) function in namespace:Security::Debug
72 string typeName() function in namespace:Security::Debug
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dmach++.cpp120 const char *typeName; local
122 case MACH_NOTIFY_PORT_DELETED: typeName = "port deleted"; break;
123 case MACH_NOTIFY_PORT_DESTROYED:typeName = "port destroyed"; break;
124 case MACH_NOTIFY_NO_SENDERS: typeName = "no senders"; break;
125 case MACH_NOTIFY_SEND_ONCE: typeName = "send once"; break;
126 case MACH_NOTIFY_DEAD_NAME: typeName = "dead name"; break;
127 default: typeName = "???"; break;
130 secdebug("port", "%d cancel notify %s", port(), typeName);
132 secdebug("port", "%d request notify %s to %d (sync %d)", port(), typeName, notify, sync);
H A Ddebugging.h66 string typeName(const Object &obj) function in namespace:Security::Debug
72 string typeName() function in namespace:Security::Debug
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dsprpdata.c55 const char* typeName; local
58 typeName = fields[2][0];
61 if(strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
68 }else if(strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
75 }else if(strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestmimehandling.c148 const char* typeName = (const char*) data; local
156 "signal::mime-type-policy-decision-requested", mime_type_policy_decision_requested_cb, g_strdup(typeName),
159 gchar* filename = g_strdup_printf("test.%s", typeName);

Completed in 153 milliseconds

123456