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

1 2 3

  /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;
EnumerationValuesPropertyEditor.java 40 public EnumerationValuesPropertyEditor(Object attributeValue) {
41 Object[] enumElements = (Object[]) attributeValue;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLPreloadScanner.cpp 97 static bool mediaAttributeMatches(const MediaValues& mediaValues, const String& attributeValue)
99 RefPtrWillBeRawPtr<MediaQuerySet> mediaQueries = MediaQuerySet::createOffMainThread(attributeValue);
142 String attributeValue = StringImpl::create8BitIfPossible(iter->value);
143 processAttribute(attributeName, attributeValue);
180 void processScriptAttribute(const NameType& attributeName, const String& attributeValue)
184 setUrlToLoad(attributeValue, DisallowURLReplacement);
186 setCrossOriginAllowed(attributeValue);
194 void processImgAttribute(const NameType& attributeName, const String& attributeValue)
197 m_imgSrcUrl = attributeValue;
198 setUrlToLoad(bestFitSourceForImageAttributes(m_mediaValues->devicePixelRatio(), m_sourceSize, attributeValue, m_srcsetImageCandidate), AllowURLReplacement)
    [all...]
HTMLMetaCharsetParser.cpp 60 String attributeValue = StringImpl::create8BitIfPossible(iter->value);
61 attributes.append(std::make_pair(attributeName, attributeValue));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBaseElement.cpp 77 const AtomicString& attributeValue = fastGetAttribute(hrefAttr);
78 if (attributeValue.isNull())
82 KURL(document().url(), stripLeadingAndTrailingHTMLSpaces(attributeValue)) :
83 KURL(document().url(), stripLeadingAndTrailingHTMLSpaces(attributeValue), document().encoding());
HTMLLabelElement.cpp 278 void HTMLLabelElement::parseAttribute(const QualifiedName& attributeName, const AtomicString& attributeValue)
283 HTMLElement::parseAttribute(attributeName, attributeValue);
HTMLTextFormControlElement.cpp 120 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr);
121 if (!attributeValue.contains(newlineCharacter) && !attributeValue.contains(carriageReturn))
122 return attributeValue;
125 unsigned length = attributeValue.length();
128 UChar character = attributeValue[i];
140 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr);
141 return attributeValue.string().find(isNotLineBreak) == kNotFound;
    [all...]
HTMLElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 181 AtomicString attributeValue;
182 if (!(attributeValue = submitButton->fastGetAttribute(formactionAttr)).isNull())
183 copiedAttributes.parseAction(attributeValue);
184 if (!(attributeValue = submitButton->fastGetAttribute(formenctypeAttr)).isNull())
185 copiedAttributes.updateEncodingType(attributeValue);
186 if (!(attributeValue = submitButton->fastGetAttribute(formmethodAttr)).isNull())
187 copiedAttributes.updateMethodType(attributeValue);
188 if (!(attributeValue = submitButton->fastGetAttribute(formtargetAttr)).isNull())
189 copiedAttributes.setTarget(attributeValue);
  /external/chromium_org/ui/webui/resources/js/
i18n_template.js 46 'i18n-content': function(element, attributeValue, obj) {
47 element.textContent = obj[attributeValue];
53 'i18n-options': function(element, attributeValue, obj) {
54 var options = obj[attributeValue];
68 'i18n-values': function(element, attributeValue, obj) {
69 var parts = attributeValue.replace(/\s/g, '').split(/;/);
  /external/skia/src/ports/
SkFontConfigParser_android.cpp 82 const char* attributeValue = attributes[currentAttributeIndex+1];
84 int valueLength = strlen(attributeValue);
86 if (strncmp(attributeValue, "elegant", valueLength) == 0) {
88 } else if (strncmp(attributeValue, "compact", valueLength) == 0) {
92 newFileInfo.fPaintOptions.setLanguage(attributeValue);
94 //each element is a pair of attributeName/attributeValue string pairs
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omaha/
XMLParser.java 90 String attributeValue = attributes.getValue(attributeName);
91 currentNode.attributes.put(attributeName, attributeValue);
  /external/chromium_org/third_party/WebKit/public/web/
WebElement.h 65 BLINK_EXPORT WebString attributeValue(unsigned index) const;
  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigParser_android.cpp 323 const char* attributeValue = attributes[currentAttributeIndex+1];
325 size_t valueLength = strlen(attributeValue);
328 if (valueLength == 7 && strncmp(attributeValue, "elegant", valueLength) == 0) {
331 strncmp(attributeValue, "compact", valueLength) == 0) {
342 familyData->currentFamily->fLanguage = SkLanguage(attributeValue);
350 if (parseNonNegativeInteger(attributeValue, &value)) {
353 SkDebugf("---- SystemFonts index=%s (INVALID)", attributeValue);
356 //each element is a pair of attributeName/attributeValue string pairs
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 303 String attributeValue = null;
305 attributeValue = readAttributeValue(terminators);
307 setAttribute(cookie, attributeName, attributeValue);
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 124 WebString WebElement::attributeValue(unsigned index) const
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 192 String attributeValue) {
197 return 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...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricConfig.java 175 private int getApplicationFlag(final Document doc, final String attribute, final int attributeValue) {
177 return "true".equalsIgnoreCase(flagString) ? attributeValue : 0;
  /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 {
306 public AttributeValue getValue() {
316 * value AttributeValue }
320 * AttributeValue ::= ANY DEFINED BY AttributeType
330 public static final ASN1Type attributeValue = new ASN1Type(ASN1Constants.TAG_PRINTABLESTRING) {
351 return new AttributeValue(str, bytesEncoded, in.tag);
356 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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 248 final String attributeValue = StringUtils.getStringFromNullTerminatedCodePointArray(
250 attributes.put(attributeKey, attributeValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 335 IGLProperty attributeValue = new GLObjectProperty(GLStateType.ATTRIBUTE_VALUE,
338 attributeName, attributeType, attributeSize, attributeValue);
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-p2-facade/0.20.0/
tycho-p2-facade-0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-p2-facade/0.18.1/
tycho-p2-facade-0.18.1.jar 

Completed in 559 milliseconds

1 2 3