label              66 Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp         v8::Local<v8::Value> label = item->Get(v8AtomicString(isolate, "label"));
label              83 Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp             V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<WithNullCheck>, labelString, label, false);
label              91 Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp             V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<WithNullCheck>, labelString, label, false);
label             344 Source/core/accessibility/AXNodeObject.cpp         if (HTMLLabelElement* label = element->treeScope().labelElementForId(id))
label             345 Source/core/accessibility/AXNodeObject.cpp             return label;
label             889 Source/core/accessibility/AXNodeObject.cpp     HTMLLabelElement* label = labelForElement(toElement(node()));
label             890 Source/core/accessibility/AXNodeObject.cpp     if (label)
label             891 Source/core/accessibility/AXNodeObject.cpp         return axObjectCache()->getOrCreate(label);
label            1151 Source/core/accessibility/AXNodeObject.cpp         HTMLLabelElement* label = labelForElement(toElement(node));
label            1152 Source/core/accessibility/AXNodeObject.cpp         if (label && !exposesTitleUIElement())
label            1153 Source/core/accessibility/AXNodeObject.cpp             return label->innerText();
label            2350 Source/core/accessibility/AXRenderObject.cpp         HTMLLabelElement* label = labelForElement(toElement(m_renderer->node()));
label            2351 Source/core/accessibility/AXRenderObject.cpp         if (label && label->renderer()) {
label            2352 Source/core/accessibility/AXRenderObject.cpp             LayoutRect labelRect = axObjectCache()->getOrCreate(label)->elementRect();
label             275 Source/core/dom/TreeScope.cpp         for (HTMLLabelElement* label = Traversal<HTMLLabelElement>::firstWithin(rootNode()); label; label = Traversal<HTMLLabelElement>::next(*label)) {
label             276 Source/core/dom/TreeScope.cpp             const AtomicString& forValue = label->fastGetAttribute(forAttr);
label             278 Source/core/dom/TreeScope.cpp                 addLabel(forValue, label);
label            1854 Source/core/html/HTMLInputElement.cpp             suggestion.label = option->value() == option->label() ? String() : option->label();
label            2296 Source/core/html/HTMLMediaElement.cpp PassRefPtr<TextTrack> HTMLMediaElement::addTextTrack(const AtomicString& kind, const AtomicString& label, const AtomicString& language, ExceptionState& exceptionState)
label            2313 Source/core/html/HTMLMediaElement.cpp     RefPtr<TextTrack> textTrack = TextTrack::create(document(), kind, label, language);
label             164 Source/core/html/HTMLMediaElement.h     PassRefPtr<TextTrack> addTextTrack(const AtomicString& kind, const AtomicString& label, const AtomicString& language, ExceptionState&);
label             165 Source/core/html/HTMLMediaElement.h     PassRefPtr<TextTrack> addTextTrack(const AtomicString& kind, const AtomicString& label, ExceptionState& exceptionState) { return addTextTrack(kind, label, emptyAtom, exceptionState); }
label             272 Source/core/html/HTMLOptionElement.cpp     const AtomicString& label = fastGetAttribute(labelAttr);
label             273 Source/core/html/HTMLOptionElement.cpp     if (!label.isNull())
label             274 Source/core/html/HTMLOptionElement.cpp         return label;
label             278 Source/core/html/HTMLOptionElement.cpp void HTMLOptionElement::setLabel(const AtomicString& label)
label             280 Source/core/html/HTMLOptionElement.cpp     setAttribute(labelAttr, label);
label              56 Source/core/html/HTMLOptionElement.h     String label() const;
label             245 Source/core/html/forms/ColorInputType.cpp             ColorSuggestion suggestion(color, option->label().left(maxSuggestionLabelLength));
label              47 Source/core/html/track/InbandTextTrack.cpp     : TextTrack(document, emptyAtom, webTrack->label(), webTrack->language(), webTrack->id(), InBand)
label              98 Source/core/html/track/TextTrack.cpp TextTrack::TextTrack(Document& document, const AtomicString& kind, const AtomicString& label, const AtomicString& language, const AtomicString& id, TextTrackType type)
label              99 Source/core/html/track/TextTrack.cpp     : TrackBase(TrackBase::TextTrack, label, language, id)
label              50 Source/core/html/track/TextTrack.h     static PassRefPtr<TextTrack> create(Document& document, const AtomicString& kind, const AtomicString& label, const AtomicString& language)
label              52 Source/core/html/track/TextTrack.h         return adoptRef(new TextTrack(document, kind, label, language, emptyAtom, AddTrack));
label             120 Source/core/html/track/TextTrack.h     TextTrack(Document&, const AtomicString& kind, const AtomicString& label, const AtomicString& language, const AtomicString& id, TextTrackType);
label              36 Source/core/html/track/TrackBase.cpp TrackBase::TrackBase(Type type, const AtomicString& label, const AtomicString& language, const AtomicString& id)
label              38 Source/core/html/track/TrackBase.cpp     , m_label(label)
label              44 Source/core/html/track/TrackBase.h     AtomicString label() const { return m_label; }
label              45 Source/core/html/track/TrackBase.h     void setLabel(const AtomicString& label) { m_label = label; }
label              54 Source/core/html/track/TrackBase.h     TrackBase(Type, const AtomicString& label, const AtomicString& language, const AtomicString& id);
label             714 Source/core/page/DragController.cpp static void prepareClipboardForImageDrag(LocalFrame* source, Clipboard* clipboard, Element* node, const KURL& linkURL, const KURL& imageURL, const String& label)
label             721 Source/core/page/DragController.cpp     clipboard->declareAndWriteDragImage(node, !linkURL.isEmpty() ? linkURL : imageURL, label);
label             159 Source/core/rendering/RenderFileUploadControl.cpp     const String label = toHTMLInputElement(node())->locale().queryString(blink::WebLocalizedString::FileButtonNoFileSelectedLabel);
label             160 Source/core/rendering/RenderFileUploadControl.cpp     float defaultLabelWidth = font.width(constructTextRun(renderer, font, label, style(), TextRun::AllowTrailingExpansion));
label              41 Source/modules/encoding/TextDecoder.cpp PassRefPtrWillBeRawPtr<TextDecoder> TextDecoder::create(const String& label, const Dictionary& options, ExceptionState& exceptionState)
label              43 Source/modules/encoding/TextDecoder.cpp     const String& encodingLabel = label.isNull() ? String("utf-8") : label;
label              48 Source/modules/encoding/TextDecoder.h     static PassRefPtrWillBeRawPtr<TextDecoder> create(const String& label, const Dictionary&, ExceptionState&);
label              66 Source/modules/mediastream/MediaDeviceInfo.cpp     return m_webMediaDeviceInfo.label();
label              42 Source/modules/mediastream/MediaDeviceInfo.h     String label() const;
label              53 Source/modules/mediastream/MediaStream.h     String label() const { return m_descriptor->id(); }
label              62 Source/modules/mediastream/MediaStreamTrack.h     String label() const;
label              61 Source/modules/mediastream/RTCDataChannel.cpp PassRefPtr<RTCDataChannel> RTCDataChannel::create(ExecutionContext* context, blink::WebRTCPeerConnectionHandler* peerConnectionHandler, const String& label, const blink::WebRTCDataChannelInit& init, ExceptionState& exceptionState)
label              63 Source/modules/mediastream/RTCDataChannel.cpp     OwnPtr<blink::WebRTCDataChannelHandler> handler = adoptPtr(peerConnectionHandler->createDataChannel(label, init));
label              89 Source/modules/mediastream/RTCDataChannel.cpp     return m_handler->label();
label              51 Source/modules/mediastream/RTCDataChannel.h     static PassRefPtr<RTCDataChannel> create(ExecutionContext*, blink::WebRTCPeerConnectionHandler*, const String& label, const blink::WebRTCDataChannelInit&, ExceptionState&);
label              54 Source/modules/mediastream/RTCDataChannel.h     String label() const;
label             483 Source/modules/mediastream/RTCPeerConnection.cpp PassRefPtr<RTCDataChannel> RTCPeerConnection::createDataChannel(String label, const Dictionary& options, ExceptionState& exceptionState)
label             504 Source/modules/mediastream/RTCPeerConnection.cpp     RefPtr<RTCDataChannel> channel = RTCDataChannel::create(executionContext(), m_peerHandler.get(), label, init, exceptionState);
label             100 Source/modules/mediastream/RTCPeerConnection.h     PassRefPtr<RTCDataChannel> createDataChannel(String label, const Dictionary& dataChannelDict, ExceptionState&);
label              67 Source/modules/mediastream/SourceInfo.cpp     return m_webSourceInfo.label();
label              43 Source/modules/mediastream/SourceInfo.h     String label() const;
label              41 Source/platform/ColorSuggestion.h     String label;
label              43 Source/platform/ColorSuggestion.h     ColorSuggestion(const Color& colorValue, const String& label)
label              45 Source/platform/ColorSuggestion.h     , label(label)
label              44 Source/platform/DateTimeChooser.h     String label;
label             131 Source/platform/DragImage.cpp     String label = inLabel.stripWhiteSpace();
label             132 Source/platform/DragImage.cpp     if (label.isEmpty()) {
label             134 Source/platform/DragImage.cpp         label = urlString;
label             138 Source/platform/DragImage.cpp     TextRun labelRun(label.impl());
label             186 Source/platform/DragImage.cpp         label = StringTruncator::rightTruncate(label, imageSize.width() - (kDragLabelBorderX * 2.0f), labelFont, StringTruncator::EnableRoundingHacks);
label             189 Source/platform/DragImage.cpp     TextRun textRun = textRunWithDirectionality(label, hasStrongDirectionality);
label              43 Source/platform/DragImage.h     static PassOwnPtr<DragImage> create(const KURL&, const String& label, const FontDescription& systemFont, float deviceScaleFactor);
label              38 Source/platform/exported/WebMediaDeviceInfo.cpp     static PassRefPtr<WebMediaDeviceInfoPrivate> create(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind, const WebString& label, const WebString& groupId);
label              46 Source/platform/exported/WebMediaDeviceInfo.cpp     WebMediaDeviceInfoPrivate(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind, const WebString& label, const WebString& groupId);
label              54 Source/platform/exported/WebMediaDeviceInfo.cpp PassRefPtr<WebMediaDeviceInfoPrivate> WebMediaDeviceInfoPrivate::create(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind kind, const WebString& label, const WebString& groupId)
label              56 Source/platform/exported/WebMediaDeviceInfo.cpp     return adoptRef(new WebMediaDeviceInfoPrivate(deviceId, kind, label, groupId));
label              59 Source/platform/exported/WebMediaDeviceInfo.cpp WebMediaDeviceInfoPrivate::WebMediaDeviceInfoPrivate(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind kind, const WebString& label, const WebString& groupId)
label              62 Source/platform/exported/WebMediaDeviceInfo.cpp     , m_label(label)
label              77 Source/platform/exported/WebMediaDeviceInfo.cpp void WebMediaDeviceInfo::initialize(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind kind, const WebString& label, const WebString& groupId)
label              79 Source/platform/exported/WebMediaDeviceInfo.cpp     m_private = WebMediaDeviceInfoPrivate::create(deviceId, kind, label, groupId);
label              97 Source/platform/exported/WebMediaDeviceInfo.cpp     return m_private->label();
label             142 Source/platform/exported/WebMediaStream.cpp void WebMediaStream::initialize(const WebString& label, const WebVector<WebMediaStreamTrack>& audioTracks, const WebVector<WebMediaStreamTrack>& videoTracks)
label             153 Source/platform/exported/WebMediaStream.cpp     m_private = MediaStreamDescriptor::create(label, audio, video);
label              38 Source/platform/exported/WebSourceInfo.cpp     static PassRefPtr<WebSourceInfoPrivate> create(const WebString& id, WebSourceInfo::SourceKind, const WebString& label, WebSourceInfo::VideoFacingMode);
label              46 Source/platform/exported/WebSourceInfo.cpp     WebSourceInfoPrivate(const WebString& id, WebSourceInfo::SourceKind, const WebString& label, WebSourceInfo::VideoFacingMode);
label              54 Source/platform/exported/WebSourceInfo.cpp PassRefPtr<WebSourceInfoPrivate> WebSourceInfoPrivate::create(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing)
label              56 Source/platform/exported/WebSourceInfo.cpp     return adoptRef(new WebSourceInfoPrivate(id, kind, label, facing));
label              59 Source/platform/exported/WebSourceInfo.cpp WebSourceInfoPrivate::WebSourceInfoPrivate(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing)
label              62 Source/platform/exported/WebSourceInfo.cpp     , m_label(label)
label              77 Source/platform/exported/WebSourceInfo.cpp void WebSourceInfo::initialize(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing)
label              79 Source/platform/exported/WebSourceInfo.cpp     m_private = WebSourceInfoPrivate::create(id, kind, label, facing);
label              97 Source/platform/exported/WebSourceInfo.cpp     return m_private->label();
label             396 Source/web/ContextMenuClientImpl.cpp         outputItem.label = inputItem->title();
label             151 Source/web/DateTimeChooserImpl.cpp             suggestionLabels.append(m_parameters.suggestions[i].label);
label             192 Source/web/ExternalPopupMenu.cpp         popupItem.label = m_popupMenuClient->itemText(i);
label             494 Source/web/PopupContainer.cpp         outputItem.label = inputItem.label;
label             341 Source/web/PopupListBox.cpp         if (stripLeadingWhiteSpace(m_items[index]->label).foldCase().startsWith(prefixWithCaseFolded)) {
label              73 Source/web/PopupListBox.h     PopupItem(const String& label, Type type)
label              74 Source/web/PopupListBox.h         : label(label)
label              79 Source/web/PopupListBox.h     String label;
label              42 Source/web/WebColorSuggestion.cpp     , label(suggestion.label)
label              49 Source/web/WebColorSuggestion.cpp     label = suggestion.label;
label              36 Source/web/WebDateTimeSuggestion.cpp     , label(suggestion.label)
label              44 Source/web/WebDateTimeSuggestion.cpp     label = suggestion.label;
label              67 Source/web/WebOptionElement.cpp     return constUnwrap<HTMLOptionElement>()->label();
label             231 public/platform/WebCryptoAlgorithmParams.h     WebCryptoRsaOaepParams(bool hasLabel, const unsigned char* label, unsigned labelSize)
label             233 public/platform/WebCryptoAlgorithmParams.h         , m_optionalLabel(label, labelSize)
label              57 public/platform/WebInbandTextTrack.h     virtual WebString label() const = 0;
label              58 public/platform/WebMediaDeviceInfo.h     BLINK_PLATFORM_EXPORT void initialize(const WebString& deviceId, MediaDeviceKind, const WebString& label, const WebString& groupId);
label              64 public/platform/WebMediaDeviceInfo.h     BLINK_PLATFORM_EXPORT WebString label() const;
label              63 public/platform/WebMediaStream.h     BLINK_PLATFORM_EXPORT void initialize(const WebString& label, const WebVector<WebMediaStreamTrack>& audioTracks, const WebVector<WebMediaStreamTrack>& videoTracks);
label              41 public/platform/WebRTCDataChannelHandler.h     virtual WebString label() = 0;
label              71 public/platform/WebRTCPeerConnectionHandler.h     virtual WebRTCDataChannelHandler* createDataChannel(const WebString& label, const WebRTCDataChannelInit&) = 0;
label              64 public/platform/WebSourceInfo.h     BLINK_PLATFORM_EXPORT void initialize(const WebString& id, SourceKind, const WebString& label, VideoFacingMode);
label              70 public/platform/WebSourceInfo.h     BLINK_PLATFORM_EXPORT WebString label() const;
label              45 public/web/WebColorSuggestion.h     WebString label;
label              40 public/web/WebDateTimeSuggestion.h     WebString label;
label              60 public/web/WebMenuItemInfo.h     WebString label;
label              61 public/web/WebOptionElement.h     BLINK_EXPORT WebString label() const;