HomeSort by relevance Sort by last modified time
    Searched full:attrname (Results 251 - 275 of 326) sorted by null

<<11121314

  /external/webkit/Source/WebCore/html/
HTMLInputElement.cpp 549 bool HTMLInputElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
551 if (((attrName == heightAttr || attrName == widthAttr) && m_inputType->shouldRespectHeightAndWidthAttributes())
552 || attrName == vspaceAttr
553 || attrName == hspaceAttr) {
558 if (attrName == alignAttr && m_inputType->shouldRespectAlignAttribute()) {
564 return HTMLElement::mapToEntry(attrName, result);
    [all...]
HTMLInputElement.h 248 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ActionTranslator.g 147 public Attribute getRuleLabelAttribute(String ruleName, String attrName) {
149 AttributeScope scope = r.getLocalAttributeScope(attrName);
151 return scope.getAttribute(attrName);
712 st.add("attrName", $ID.text);
727 st.add("attrName", $y.text);
  /external/webkit/Source/WebKit/win/
DOMEventsClasses.cpp 552 HRESULT STDMETHODCALLTYPE DOMMutationEvent::attrName(
571 /* [in] */ BSTR /*attrName*/,
DOMEventsClasses.h 688 virtual HRESULT STDMETHODCALLTYPE attrName(
701 /* [in] */ BSTR attrName,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java     [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 164 protected function htmlTag($content, $tag, $attrName, $attrValue, $valueName)
166 preg_match_all("#<{$tag}[^>]*$attrName=['\"].*?$attrValue.*?['\"][^>]*$valueName=['\"](.+?)['\"][^>]*/?>#i", $content, $matches1);
167 preg_match_all("#<{$tag}[^>]*$valueName=['\"](.+?)['\"][^>]*$attrName=['\"].*?$attrValue.*?['\"][^>]*/?>#i", $content, $matches2);
  /external/expat/tests/
runtests.c 688 const XML_Char *attrname = atts[i]; local
690 if (strcmp("attr", attrname) == 0
691 || strcmp("ents", attrname) == 0
692 || strcmp("refs", attrname) == 0) {
696 attrname, value);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 377 String attrName = attrInfo.name;
379 int pos = attrName.indexOf(':');
381 attrName = attrName.substring(pos + 1);
386 if (attrNode.getDescriptor().getXmlLocalName().equals(attrName)) {
    [all...]
  /prebuilts/devtools/tools/lib/
manifest-merger.jar 
  /external/clang/unittests/AST/
CommentParser.cpp 388 StringRef AttrName,
404 if (ActualName != AttrName)
407 "expected \"" << AttrName.str() << "\"";
    [all...]
  /external/openssl/crypto/x509/
x509.h 949 const char *attrname, int type,
1114 const char *attrname, int type, variable
    [all...]
  /external/openssl/include/openssl/
x509.h 949 const char *attrname, int type,
1114 const char *attrname, int type, variable
    [all...]
  /external/ppp/pppd/plugins/radius/
radiusclient.h 309 char attrname[NAME_LENGTH +1]; member in struct:dict_value
  /external/webkit/Source/WebCore/bindings/objc/
PublicDOMInterfaces.h     [all...]
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 101 llvm::StringRef AttrName = Name->getName();
102 if (AttrName.startswith("__") && AttrName.endswith("__"))
103 AttrName = AttrName.substr(2, AttrName.size() - 4);
105 return llvm::StringSwitch < AttributeList::Kind > (AttrName)
    [all...]
  /external/webkit/Source/WebCore/dom/
xml_expat_tokenizer.cpp 1000 DeprecatedString attrName = toQString(atts[i]);
1002 state->attributes.set(attrName, attrValue);
  /external/webkit/Source/WebKit/chromium/src/
WebPageSerializerImpl.cpp 324 const QualifiedName& attrName = attribute->name();
325 if (elementHasLegalLinkAttribute(element, attrName)) {
  /external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.mm 793 printf(" attrName: %s\n", [[(DOMMutationEvent*)event attrName] UTF8String]);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderTest.java 145 hm.put("serviceName.algName attrName", "attrValue");
149 !"attrValue".equals(p.getProperty("serviceName.algName attrName").trim()) ||
  /external/clang/include/clang/Parse/
Parser.h 789 IdentifierInfo &AttrName;
795 : Self(P), AttrName(Name), AttrNameLoc(Loc) {}
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 976 String attrName = n.getNodeName();
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java 173 * @param attrDelim would be ":" in the example but can be null if only one attrName given
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DOTGenerator.java 47 /** Library of output templates; use <attrname> format */
  /external/clang/test/Analysis/
retain-release-inline.m 83 extern void CFAttributedStringSetAttribute(CFMutableAttributedStringRef aStr, CFRange range, CFStringRef attrName, CFTypeRef value) ;

Completed in 1176 milliseconds

<<11121314