/external/chromium_org/third_party/skia/src/ports/ |
SkFontConfigParser_android.cpp | 85 const char* attributeName = attributes[currentAttributeIndex]; 87 int nameLength = strlen(attributeName); 89 if (strncmp(attributeName, "variant", nameLength) == 0) { 95 } else if (strncmp(attributeName, "lang", nameLength) == 0) { 98 //each element is a pair of attributeName/attributeValue string pairs
|
/external/skia/src/ports/ |
SkFontConfigParser_android.cpp | 85 const char* attributeName = attributes[currentAttributeIndex]; 87 int nameLength = strlen(attributeName); 89 if (strncmp(attributeName, "variant", nameLength) == 0) { 95 } else if (strncmp(attributeName, "lang", nameLength) == 0) { 98 //each element is a pair of attributeName/attributeValue string pairs
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
TestPlugin.cpp | 178 const WebString& attributeName = params.attributeNames[i]; 181 if (attributeName == kAttributePrimitive) 183 else if (attributeName == kAttributeBackgroundColor) 185 else if (attributeName == kAttributePrimitiveColor) 187 else if (attributeName == kAttributeOpacity) 189 else if (attributeName == kAttributeAcceptsTouch) 191 else if (attributeName == kAttributeReRequestTouchEvents) 193 else if (attributeName == kAttributePrintEventDetails) 195 else if (attributeName == kAttributeCanProcessDrag) 197 else if (attributeName == kAttributePrintUserGestureStatus [all...] |
/libcore/luni/src/main/java/java/net/ |
HttpCookie.java | 287 String attributeName = readAttributeName(true); 288 if (attributeName == null) { 297 || "expires".equals(attributeName) || "port".equals(attributeName) 304 setAttribute(cookie, attributeName, attributeValue);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidTargetData.java | 264 * @param attributeName the name of the attribute 268 public String[] getAttributeValues(String elementName, String attributeName) { 269 String key = String.format("(%1$s,%2$s)", elementName, attributeName); //$NON-NLS-1$ 282 * @param attributeName the name of the attribute 287 public String[] getAttributeValues(String elementName, String attributeName, 291 greatGrandParentElementName, elementName, attributeName); 298 return getAttributeValues(elementName, attributeName);
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
Shader.cpp | 557 int VertexShader::getSemanticIndex(const std::string &attributeName) 559 if (!attributeName.empty()) 564 if (attribute->name == attributeName) 586 char attributeName[256]; 588 int matches = sscanf(input, "static %255s _%255s", attributeType, attributeName); 595 mAttributes.push_back(Attribute(parseType(attributeType), attributeName));
|
Shader.h | 160 int getSemanticIndex(const std::string &attributeName);
|
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
CtsXmlGenerator.java | 121 String attributeName) { 125 return element.getAttribute(attributeName);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimatedLengthList.cpp | 31 , m_lengthMode(SVGLength::lengthModeForAnimatedLengthAttribute(animationElement->attributeName())) 87 lengthList.parse(string, SVGLength::lengthModeForAnimatedLengthAttribute(animationElement->attributeName()));
|
SVGMarkerElement.cpp | 197 svgAttributeChanged(orientAnglePropertyInfo()->attributeName); 209 svgAttributeChanged(orientAnglePropertyInfo()->attributeName); 237 ownerType->m_orientType.synchronize(ownerType, orientTypePropertyInfo()->attributeName, autoString);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
VisualRefactoring.java | 375 String attributeName = ""; //$NON-NLS-1$ 380 attributeName = region.getText(subRegion); 383 if (!attributeName.startsWith(namePrefix)) { [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
BridgeResources.java | 133 String attributeName = resourceInfo.getSecond(); 135 return Pair.of(attributeName, mContext.getRenderResources().getFrameworkResource( 136 resourceInfo.getFirst(), attributeName)); 145 String attributeName = resourceInfo.getSecond(); 147 return Pair.of(attributeName, mContext.getRenderResources().getProjectResource( 148 resourceInfo.getFirst(), attributeName));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/ |
ValuesContentAssist.java | 74 String parentTagName, String attributeName, Node node, String wordPrefix, 76 super.computeAttributeValues(proposals, offset, parentTagName, attributeName, node, 79 if (parentTagName.equals(TAG_ITEM) && ATTR_NAME.equals(attributeName)) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
AndroidJUnitLaunchConfigDelegate.java | 257 * @param attributeName name of the launch attribute 261 private String getStringLaunchAttribute(String attributeName, 264 String attrValue = configuration.getAttribute(attributeName, EMPTY_STRING); 271 attributeName));
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XMLViewer.js | 342 var attributeName = createHTMLElement('span'); 343 attributeName.classList.add('webkit-html-attribute-name'); 344 attributeName.textContent = attributeNode.name; 356 attribute.appendChild(attributeName);
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
web_view.js | 184 $Array.forEach(ALL_ATTRIBUTES, function(attributeName) { 187 if (this.webviewNode_.hasAttribute(attributeName)) { 189 attributeName, this.webviewNode_.getAttribute(attributeName)); 190 } else if (this.webviewNode_[attributeName]){ 196 attributeName, this.webviewNode_[attributeName]); 327 $Array.forEach(WEB_VIEW_ATTRIBUTES, function(attributeName) { 328 Object.defineProperty(this.webviewNode_, attributeName, { 330 if (browserPluginNode.hasOwnProperty(attributeName)) { [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Element.h | 108 int getIntegralAttribute(const QualifiedName& attributeName) const; 109 void setIntegralAttribute(const QualifiedName& attributeName, int value); 110 unsigned getUnsignedIntegralAttribute(const QualifiedName& attributeName) const; 111 void setUnsignedIntegralAttribute(const QualifiedName& attributeName, unsigned value); 112 double getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue = std::numeric_limits<double>::quiet_NaN()) const; 113 void setFloatingPointAttribute(const QualifiedName& attributeName, double value); 750 inline bool Element::isIdAttributeName(const QualifiedName& attributeName) const 756 return attributeName == document().idAttributeName(); [all...] |
ElementData.h | 242 inline void UniqueElementData::addAttribute(const QualifiedName& attributeName, const AtomicString& value) 244 m_attributeVector.append(Attribute(attributeName, value));
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
AtomicHTMLToken.h | 68 Attribute* getAttributeItem(const QualifiedName& attributeName) 71 return findAttributeInVector(m_attributes, attributeName);
|
HTMLStackItem.h | 71 Attribute* getAttributeItem(const QualifiedName& attributeName) 74 return findAttributeInVector(m_tokenAttributes, attributeName);
|
XSSAuditor.cpp | 552 bool XSSAuditor::eraseAttributeIfInjected(const FilterTokenRequest& request, const QualifiedName& attributeName, const String& replacementValue, AttributeKind treatment) 555 if (findAttributeWithName(request.token, attributeName, indexOfAttribute)) { 558 if (threadSafeMatch(attributeName, srcAttr) && isLikelySafeResource(String(attribute.value))) 560 if (threadSafeMatch(attributeName, http_equivAttr) && !isDangerousHTTPEquiv(String(attribute.value)))
|
/external/smack/src/org/jivesoftware/smack/ |
AccountManager.java | 203 for (String attributeName : getAccountAttributes()) { 204 attributes.put(attributeName, "");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
ElementDescriptor.java | 453 * @param attributeName the attribute name 456 public boolean definesAttribute(String namespaceUri, String attributeName) { 458 if (desc.getXmlLocalName().equals(attributeName) &&
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
BaseLayoutRuleTest.java | 191 public String replace(String attributeUri, String attributeName, 193 if (attributeName.equals("hidden")) {
|
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/ |
SVGSMILElement.cpp | 242 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const AtomicString& attributeName) 245 if (attributeName.isEmpty()) 247 if (!attributeName.contains(':')) 248 return QualifiedName(nullAtom, attributeName, nullAtom); 252 if (!Document::parseQualifiedName(attributeName, prefix, localName, ASSERT_NO_EXCEPTION)) 334 return attributeName() != anyQName(); 619 void SVGSMILElement::setAttributeName(const QualifiedName& attributeName) 621 if (m_timeContainer && m_targetElement && m_attributeName != attributeName) { 624 m_attributeName = attributeName; 628 m_attributeName = attributeName; [all...] |