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);
141 String attributeValue = StringImpl::create8BitIfPossible(iter->value);
142 processAttribute(attributeName, attributeValue);
178 void processScriptAttribute(const NameType& attributeName, const String& attributeValue)
182 setUrlToLoad(attributeValue, DisallowURLReplacement);
184 setCrossOriginAllowed(attributeValue);
188 void processImgAttribute(const NameType& attributeName, const String& attributeValue)
191 m_imgSrcUrl = attributeValue;
192 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 78 const AtomicString& attributeValue = fastGetAttribute(hrefAttr);
79 if (attributeValue.isNull())
83 KURL(document().url(), stripLeadingAndTrailingHTMLSpaces(attributeValue)) :
84 KURL(document().url(), stripLeadingAndTrailingHTMLSpaces(attributeValue), document().encoding());
HTMLTextFormControlElement.cpp 113 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr);
114 if (!attributeValue.contains(newlineCharacter) && !attributeValue.contains(carriageReturn))
115 return attributeValue;
118 unsigned length = attributeValue.length();
121 UChar character = attributeValue[i];
133 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr);
134 return attributeValue.string().find(isNotLineBreak) == kNotFound;
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/third_party/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/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 71 BLINK_EXPORT WebString attributeValue(unsigned index) const;
  /external/chromium_org/content/shell/renderer/test_runner/
TestPlugin.cpp 169 const WebString& attributeValue = params.attributeValues[i];
172 m_scene.primitive = parsePrimitive(attributeValue);
174 parseColor(attributeValue, m_scene.backgroundColor);
176 parseColor(attributeValue, m_scene.primitiveColor);
178 m_scene.opacity = parseOpacity(attributeValue);
180 m_touchEventRequest = parseTouchEventRequestType(attributeValue);
182 m_reRequestTouchEvents = parseBoolean(attributeValue);
184 m_printEventDetails = parseBoolean(attributeValue);
186 m_canProcessDrag = parseBoolean(attributeValue);
188 m_printUserGestureStatus = parseBoolean(attributeValue);
    [all...]
  /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/core/xml/
XMLViewer.js 349 var attributeValue = createHTMLElement('span');
350 attributeValue.classList.add('webkit-html-attribute-value');
351 attributeValue.textContent = attributeNode.value;
358 attribute.appendChild(attributeValue);
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 132 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 875 milliseconds

1 2 3