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

1 2

  /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/
HTMLBaseElement.cpp 87 const AtomicString& attributeValue = fastGetAttribute(hrefAttr);
88 if (attributeValue.isNull())
92 KURL(document()->url(), stripLeadingAndTrailingHTMLSpaces(attributeValue)) :
93 KURL(document()->url(), stripLeadingAndTrailingHTMLSpaces(attributeValue), document()->decoder()->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) == notFound;
HTMLElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLPreloadScanner.cpp 112 String attributeValue = StringImpl::create8BitIfPossible(iter->value);
113 processAttribute(attributeName, attributeValue);
140 void processAttribute(const NameType& attributeName, const String& attributeValue)
143 m_charset = attributeValue;
147 setUrlToLoad(attributeValue);
148 else if (match(attributeName, crossoriginAttr) && !attributeValue.isNull())
149 m_crossOriginMode = stripLeadingAndTrailingHTMLSpaces(attributeValue);
152 setUrlToLoad(attributeValue);
154 m_linkIsStyleSheet = relAttributeIsStyleSheet(attributeValue);
156 m_mediaAttribute = attributeValue;
    [all...]
HTMLResourcePreloader.cpp 77 static bool mediaAttributeMatches(Frame* frame, RenderStyle* renderStyle, const String& attributeValue)
79 RefPtr<MediaQuerySet> mediaQueries = MediaQuerySet::create(attributeValue);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 154 String attributeValue;
155 if (!(attributeValue = submitButton->getAttribute(formactionAttr)).isNull())
156 copiedAttributes.parseAction(attributeValue);
157 if (!(attributeValue = submitButton->getAttribute(formenctypeAttr)).isNull())
158 copiedAttributes.updateEncodingType(attributeValue);
159 if (!(attributeValue = submitButton->getAttribute(formmethodAttr)).isNull())
160 copiedAttributes.updateMethodType(attributeValue);
161 if (!(attributeValue = submitButton->getAttribute(formtargetAttr)).isNull())
162 copiedAttributes.setTarget(attributeValue);
  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigParser_android.cpp 85 const char* attributeValue = attributes[currentAttributeIndex+1];
87 int valueLength = strlen(attributeValue);
89 if (strncmp(attributeValue, "elegant", valueLength) == 0) {
91 } else if (strncmp(attributeValue, "compact", valueLength) == 0) {
95 newFileInfo->fPaintOptions.setLanguage(attributeValue);
97 //each element is a pair of attributeName/attributeValue string pairs
  /external/skia/src/ports/
SkFontConfigParser_android.cpp 85 const char* attributeValue = attributes[currentAttributeIndex+1];
87 int valueLength = strlen(attributeValue);
89 if (strncmp(attributeValue, "elegant", valueLength) == 0) {
91 } else if (strncmp(attributeValue, "compact", valueLength) == 0) {
95 newFileInfo->fPaintOptions.setLanguage(attributeValue);
97 //each element is a pair of attributeName/attributeValue string pairs
  /external/chromium_org/third_party/WebKit/public/web/
WebElement.h 72 WEBKIT_EXPORT WebString attributeValue(unsigned index) const;
  /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/java/net/
HttpCookie.java 300 String attributeValue = null;
302 attributeValue = readAttributeValue(terminators);
304 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 131 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 {
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);
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ElementsTreeOutline.js     [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/chromium_org/content/renderer/accessibility/
accessibility_node_serializer.cc 431 string16 value = element.attributeValue(i);

Completed in 1676 milliseconds

1 2