HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 76 - 100 of 2621) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/content/renderer/media/
media_stream_dispatcher_eventhandler.h 20 const std::string& label,
29 virtual void OnStopGeneratedStream(const std::string& label) = 0;
42 const std::string& label,
  /external/chromium_org/third_party/openssl/openssl/ssl/
kssl_lcl.h 71 void print_krb5_data(char *label, krb5_data *kdata);
72 void print_krb5_authdata(char *label, krb5_authdata **adata);
73 void print_krb5_keyblock(char *label, krb5_keyblock *keyblk);
  /external/openssl/ssl/
kssl_lcl.h 71 void print_krb5_data(char *label, krb5_data *kdata);
72 void print_krb5_authdata(char *label, krb5_authdata **adata);
73 void print_krb5_keyblock(char *label, krb5_keyblock *keyblk);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
ASTTreeParser.stg 36 * no label, label, list label (label/no-label handled together)
40 * Each combination has its own template except that label/no label
88 if (_First[<enclosingTreeLevel>] = nil) then _First[<enclosingTreeLevel>] := <root.el.label>.Tree;
90 if (_First[<enclosingTreeLevel>] = nil) then _First[<enclosingTreeLevel>] := <root.el.label>;
118 tokenRefBang(token,label,elementIndex) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
ASTTreeParser.stg 5 * no label, label, list label (label/no-label handled together)
9 * Each combination has its own template except that label/no label
50 if ( !_first_<enclosingTreeLevel> ) _first_<enclosingTreeLevel> = <root.el.label>.tree;
52 if ( !_first_<enclosingTreeLevel> ) _first_<enclosingTreeLevel> = <root.el.label>;
79 tokenRefBang(token,label,elementIndex) ::= <
    [all...]
  /external/chromium_org/net/base/
net_errors.cc 15 #define NET_ERROR(label, value) -(value),
32 #define NET_ERROR(label, value) \
33 case ERR_ ## label: \
34 return "net::" STRINGIZE_NO_EXPANSION(ERR_ ## label);
load_states.h 16 #define LOAD_STATE(label) LOAD_STATE_ ## label,
  /external/javassist/sample/rmi/
AlertDialog.java 7 private Label label; field in class:AlertDialog
13 label = new Label();
18 add("North", label);
23 label.setText(message);
  /frameworks/opt/vcard/java/com/android/vcard/
VCardPhoneNumberTranslationCallback.java 34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary);
  /external/chromium_org/chrome/browser/ui/website_settings/
permission_menu_model.cc 19 string16 label; local
22 label = l10n_util::GetStringUTF16(
26 label = l10n_util::GetStringUTF16(
30 label = l10n_util::GetStringUTF16(
36 AddCheckItem(COMMAND_SET_TO_DEFAULT, label);
41 label = l10n_util::GetStringUTF16(
43 AddCheckItem(COMMAND_SET_TO_ALLOW, label);
46 label = l10n_util::GetStringUTF16(
48 AddCheckItem(COMMAND_SET_TO_BLOCK, label);
  /external/chromium_org/content/browser/renderer_host/media/
media_stream_dispatcher_host.cc 34 const std::string& label,
39 << ", {label = " << label << "})";
41 StreamMap::iterator it = streams_.find(label);
46 request.render_view_id, request.page_request_id, label, audio_devices,
51 const std::string& label) {
54 << ", {label = " << label << "})";
56 StreamMap::iterator it = streams_.find(label);
66 const std::string& label) {
135 std::string label = it->first; local
159 const std::string& label = media_stream_manager_->GenerateStream( local
208 const std::string& label = media_stream_manager_->EnumerateDevices( local
228 const std::string& label = media_stream_manager_->OpenDevice( local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebSourceInfo.cpp 38 static PassRefPtr<WebSourceInfoPrivate> create(const WebString& id, WebSourceInfo::SourceKind, const WebString& label, WebSourceInfo::VideoFacingMode);
43 const WebString& label() const { return m_label; } function in class:WebKit::WebSourceInfoPrivate
47 WebSourceInfoPrivate(const WebString& id, WebSourceInfo::SourceKind, const WebString& label, WebSourceInfo::VideoFacingMode);
55 PassRefPtr<WebSourceInfoPrivate> WebSourceInfoPrivate::create(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing)
57 return adoptRef(new WebSourceInfoPrivate(id, kind, label, facing));
60 WebSourceInfoPrivate::WebSourceInfoPrivate(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing)
63 , m_label(label)
82 void WebSourceInfo::initialize(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing)
84 m_private = WebSourceInfoPrivate::create(id, kind, label, facing);
99 WebString WebSourceInfo::label() cons function in class:WebKit::WebSourceInfo
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
ASTTreeParser.stg 34 * no label, label, list label (label/no-label handled together)
38 * Each combination has its own template except that label/no label
79 if ( _first_<enclosingTreeLevel>==null ) _first_<enclosingTreeLevel> = <root.el.label>.tree;
81 if ( _first_<enclosingTreeLevel>==null ) _first_<enclosingTreeLevel> = <root.el.label>;
108 tokenRefBang(token,label,elementIndex) ::= <
    [all...]
  /external/bison/src/
graphviz.h 36 * \param label human readable label of the node (no Dot escaping needed).
39 void output_node (int id, char const *label, FILE *fout);
44 * \param label human readable label of the edge
49 void output_edge (int source, int destination, char const *label,
  /external/chromium/net/base/
net_errors.h 21 #define NET_ERROR(label, value) ERR_ ## label = value,
  /external/chromium_org/ash/system/tray/
tray_utils.cc 11 #include "ui/views/controls/label.h"
16 void SetupLabelForTray(views::Label* label) {
20 label->SetFont(label_font);
21 label->SetAutoColorReadabilityEnabled(false);
22 label->SetEnabledColor(SK_ColorWHITE);
23 label->SetBackgroundColor(SkColorSetARGB(0, 255, 255, 255));
24 label->SetShadowColors(SkColorSetARGB(64, 0, 0, 0),
26 label->SetShadowOffset(0, 1);
53 // Center the label for vertical launcher alignment
    [all...]
  /external/chromium_org/build/android/buildbot/
bb_annotations.py 7 def PrintLink(label, url):
8 """Adds a link with name |label| linking to |url| to current buildbot step.
11 label: A string with the name of the label.
14 print '@@@STEP_LINK@%s@%s@@@' % (label, url)
  /external/chromium_org/ppapi/api/dev/
ppb_crypto_dev.idl 10 label Chrome {
ppb_memory_dev.idl 11 label Chrome {
ppb_view_dev.idl 10 label Chrome {
ppp_selection_dev.idl 10 label Chrome {
ppp_text_input_dev.idl 10 label Chrome {
ppp_widget_dev.idl 10 label Chrome {
ppp_zoom_dev.idl 10 label Chrome {
  /external/chromium_org/ppapi/api/
ppb_messaging.idl 14 label Chrome {

Completed in 738 milliseconds

1 2 34 5 6 7 8 91011>>