HomeSort by relevance Sort by last modified time
    Searched defs:attributeValue (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBaseElement.cpp 86 const AtomicString& attributeValue = fastGetAttribute(hrefAttr);
87 if (attributeValue.isNull())
91 KURL(document().url(), stripLeadingAndTrailingHTMLSpaces(attributeValue)) :
92 KURL(document().url(), stripLeadingAndTrailingHTMLSpaces(attributeValue), document().encoding());
HTMLTextFormControlElement.cpp 114 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr);
115 if (!attributeValue.contains(newlineCharacter) && !attributeValue.contains(carriageReturn))
116 return attributeValue;
119 unsigned length = attributeValue.length();
122 UChar character = attributeValue[i];
134 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr);
135 return attributeValue.string().find(isNotLineBreak) == kNotFound;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyDescriptorEditorProvider.java 32 Object attributeValue = descriptor.getValue("enumerationValues");
34 return new EnumerationValuesPropertyEditor(attributeValue);
50 Object attributeValue = descriptor.getValue("enumerationValues");
52 if (!(attributeValue instanceof Object[])) {
55 Object[] enumElements = (Object[]) attributeValue;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLMetaCharsetParser.cpp 109 String attributeValue = StringImpl::create8BitIfPossible(iter->value);
110 attributes.append(std::make_pair(attributeName, attributeValue));
125 const String& attributeValue = iter->second;
128 if (equalIgnoringCase(attributeValue, "content-type"))
132 charset = attributeValue;
135 charset = extractCharset(attributeValue);
HTMLPreloadScanner.cpp 123 String attributeValue = StringImpl::create8BitIfPossible(iter->value);
124 processAttribute(attributeName, attributeValue);
152 void processAttribute(const NameType& attributeName, const String& attributeValue)
155 m_charset = attributeValue;
159 setUrlToLoad(attributeValue, DisallowURLReplacement);
161 setCrossOriginAllowed(attributeValue);
165 setUrlToLoad(bestFitSourceForImageAttributes(m_deviceScaleFactor, attributeValue, m_srcsetImageCandidate), AllowURLReplacement);
167 setCrossOriginAllowed(attributeValue);
171 m_srcsetImageCandidate = bestFitSourceForSrcsetAttribute(m_deviceScaleFactor, attributeValue);
176 setUrlToLoad(attributeValue, DisallowURLReplacement)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 131 WebString WebElement::attributeValue(unsigned index) const
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 178 String attributeValue;
179 if (!(attributeValue = submitButton->fastGetAttribute(formactionAttr)).isNull())
180 copiedAttributes.parseAction(attributeValue);
181 if (!(attributeValue = submitButton->fastGetAttribute(formenctypeAttr)).isNull())
182 copiedAttributes.updateEncodingType(attributeValue);
183 if (!(attributeValue = submitButton->fastGetAttribute(formmethodAttr)).isNull())
184 copiedAttributes.updateMethodType(attributeValue);
185 if (!(attributeValue = submitButton->fastGetAttribute(formtargetAttr)).isNull())
186 copiedAttributes.setTarget(attributeValue);
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 300 String attributeValue = null;
302 attributeValue = readAttributeValue(terminators);
304 setAttribute(cookie, attributeName, attributeValue);
  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigParser_android.cpp 86 const char* attributeValue = attributes[currentAttributeIndex+1];
88 int valueLength = strlen(attributeValue);
90 if (strncmp(attributeValue, "elegant", valueLength) == 0) {
92 } else if (strncmp(attributeValue, "compact", valueLength) == 0) {
96 newFileInfo->fPaintOptions.setLanguage(attributeValue);
98 //each element is a pair of attributeName/attributeValue string pairs
  /external/skia/src/ports/
SkFontConfigParser_android.cpp 86 const char* attributeValue = attributes[currentAttributeIndex+1];
88 int valueLength = strlen(attributeValue);
90 if (strncmp(attributeValue, "elegant", valueLength) == 0) {
92 } else if (strncmp(attributeValue, "compact", valueLength) == 0) {
96 newFileInfo->fPaintOptions.setLanguage(attributeValue);
98 //each element is a pair of attributeName/attributeValue string pairs
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 179 const WebString& attributeValue = params.attributeValues[i];
182 m_scene.primitive = parsePrimitive(attributeValue);
184 parseColor(attributeValue, m_scene.backgroundColor);
186 parseColor(attributeValue, m_scene.primitiveColor);
188 m_scene.opacity = parseOpacity(attributeValue);
190 m_touchEventRequest = parseTouchEventRequestType(attributeValue);
192 m_reRequestTouchEvents = parseBoolean(attributeValue);
194 m_printEventDetails = parseBoolean(attributeValue);
196 m_canProcessDrag = parseBoolean(attributeValue);
198 m_printUserGestureStatus = parseBoolean(attributeValue);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 212 private final AttributeValue value;
215 private AttributeTypeAndValue(int[] oid, AttributeValue value) throws IOException {
225 * Creates AttributeTypeAndValue with OID and AttributeValue.
232 public AttributeTypeAndValue(ObjectIdentifier oid, AttributeValue value) throws IOException {
304 public AttributeValue getValue() {
314 * value AttributeValue }
318 * AttributeValue ::= ANY DEFINED BY AttributeType
328 public static final ASN1Type attributeValue = new ASN1Type(ASN1Constants.TAG_PRINTABLESTRING) {
349 return new AttributeValue(str, bytesEncoded, in.tag);
354 throw new RuntimeException("AttributeValue getDecodedObject MUST NOT be invoked")
    [all...]
  /libcore/luni/src/main/java/java/security/
Provider.java 335 String attributeValue = getPropertyIgnoreCase(servAlg + ' ' + attribute);
336 if (attributeValue != null) {
338 if (Integer.parseInt(attributeValue) >= Integer.parseInt(val)) {
342 if (attributeValue.equalsIgnoreCase(val)) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 334 IGLProperty attributeValue = new GLObjectProperty(GLStateType.ATTRIBUTE_VALUE,
337 attributeName, attributeType, attributeSize, attributeValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 392 String attributeValue = region.getText(subRegion);
393 if (attributeValue.equals(match1) || attributeValue.equals(match2)) {
    [all...]
  /frameworks/base/services/java/com/android/server/
AppWidgetServiceImpl.java     [all...]
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/robolectric/lib/main/
xpp3-1.1.4c.jar 
  /external/smack/asmack-master/lib/
xpp3-1.1.4c.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 347 milliseconds

1 2