HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 501 - 525 of 2711) sorted by null

<<21222324252627282930>>

  /external/chromium_org/content/renderer/pepper/
pepper_media_device_manager.cc 122 void PepperMediaDeviceManager::CloseDevice(const std::string& label) {
124 GetRenderViewImpl()->media_stream_dispatcher()->CloseDevice(label);
129 const std::string& label) {
134 label, 0);
137 label, 0);
149 const std::string& label,
158 const std::string& label,
185 const std::string& label,
187 NotifyDeviceOpened(request_id, true, label);
229 const std::string& label) {
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
commit-log-editor 285 my $label = dirname($changeLog);
286 $label = "top level" unless length $label;
288 my $sortKey = lc $label;
289 if ($label eq "top level") {
291 } elsif ($label eq "LayoutTests") {
295 $changeLogSort{$sortKey} = $label;
296 $changeLogContents{$label} = $contents;
305 my $label = $changeLogSort{$sortKey};
309 push @result, normalizeLineEndings("$label: ", $endl)
    [all...]
  /external/srec/srec/clib/
voc_read.c 156 /* the label is terminated with 0 and the entry terminated with ' ' */
157 static int kompare(const char* label, const char* entry) {
158 while (*label == *entry) {
159 label++;
162 return (*label ? *label : ' ') - *entry;
165 int get_prons(const vocab_info* voc, const char* label, char* prons, int prons_len) {
171 //PLogError(L("get_prons '%s'"), label);
174 if (!voc->hasUpper && 'A' <= *label && *label <= 'Z') return 0
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CodeContext.py 38 self.label = None
56 if not self.label:
72 self.label = Tkinter.Label(self.editwin.top,
80 # Pack the label widget before and above the text_frame widget,
82 self.label.pack(side=TOP, fill=X, expand=False,
85 self.label.destroy()
86 self.label = None
88 str(self.label is not None))
164 self.label["text"] = '\n'.join(context_strings
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CodeContext.py 38 self.label = None
56 if not self.label:
72 self.label = Tkinter.Label(self.editwin.top,
80 # Pack the label widget before and above the text_frame widget,
82 self.label.pack(side=TOP, fill=X, expand=False,
85 self.label.destroy()
86 self.label = None
88 str(self.label is not None))
164 self.label["text"] = '\n'.join(context_strings
    [all...]
  /external/chromium/chrome/browser/chromeos/status/
network_menu.h 117 MenuItem(ui::MenuModel::ItemType type, string16 label, SkBitmap icon,
120 label(label),
125 MenuItem(ui::MenuModel::ItemType type, string16 label, SkBitmap icon,
128 label(label),
134 string16 label; member in struct:chromeos::NetworkMenuModel::MenuItem
193 // The label will be BOLD if the network is currently connected.
  /external/chromium_org/net/base/
net_log_logger.cc 79 #define LOAD_FLAG(label, value) \
80 dict->SetInteger(# label, static_cast<int>(value));
92 #define LOAD_STATE(label) \
93 dict->SetInteger(# label, net::LOAD_STATE_ ## label);
105 #define NET_ERROR(label, value) \
106 dict->SetInteger(# label, static_cast<int>(value));
  /external/chromium_org/content/browser/renderer_host/media/
media_stream_manager.cc 42 // Creates a random label used to identify requests.
46 // MediaStream::label alphabet as containing 36 characters from
53 std::string label(36, ' ');
54 for (size_t i = 0; i < label.size(); ++i) {
56 label[i] = kAlphabet[random_char];
58 return label;
347 const std::string& label = AddRequest(request); local
351 // requester won't have a label for the request until this function returns
358 base::Unretained(this), label));
359 return label;
385 const std::string& label = AddRequest(request); local
454 std::string label = request_it->first; local
510 std::string label = request_it->first; local
566 const std::string& label = AddRequest(request); local
641 const std::string& label = AddRequest(request); local
1280 const std::string& label = request_it->first; local
    [all...]
  /art/runtime/base/
timing_logger.cc 94 void CumulativeLogger::AddPair(const std::string &label, uint64_t delta_time) {
98 if (histograms_.find(label) == histograms_.end()) {
102 histograms_[label] = new Histogram<uint64_t>(label.c_str(), 50, max_buckets);
104 histograms_[label]->AddValue(delta_time);
134 DCHECK(new_split_label != NULL) << "Starting split (" << new_split_label << ") with null label.";
147 // Ends the current split and starts the one given by the label.
151 DCHECK(new_split_label != NULL) << "New split (" << new_split_label << ") with null label.";
195 TimingLogger::ScopedSplit::ScopedSplit(const char* label, TimingLogger* timing_logger) {
196 DCHECK(label != NULL) << "New scoped split (" << label << ") with null label."
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DOTGenerator.java 146 st.add("label", getEdgeLabel(edge));
214 edgeST.add("label", "<" + rr.rule.grammar.name + "." + rr.rule.name + ">");
217 edgeST.add("label", "<" + rr.rule.name + ">");
235 edgeST.add("label", getEdgeLabel(edge));
285 String label = edge.label.toString(grammar); local
286 label = Utils.replace(label,"\\", "\\\\");
287 label = Utils.replace(label,"\"", "\\\"");
    [all...]
NameSpaceChecker.java 30 import org.antlr.analysis.Label;
55 checkForLabelConflict(r, pair.label);
138 if ( rule==null && grammar.getTokenType(ruleName)!=Label.EOF ) {
152 grammar.getTokenType(tokenID)!=Label.EOF )
188 if ( grammar.getTokenType(scope.getName())!=Label.INVALID ) {
216 /** Make sure a label doesn't conflict with another symbol.
221 protected void checkForLabelConflict(Rule r, Token label) {
224 if ( grammar.getGlobalScope(label.getText())!=null ) {
227 else if ( grammar.getRule(label.getText())!=null ) {
230 else if ( grammar.getTokenType(label.getText())!=Label.INVALID )
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/lib/
policy.py 371 for label in labels:
372 if label in default_policy_directory:
373 specified_policy_directory[label] = default_policy_directory[label]
383 for label in self._policy_directory:
384 yield label
386 def __getitem__(self, label):
387 return self._policy_directory[label]
399 for label in directory:
400 LOGGER.info(' %s: %s' % (label, directory[label]['file'])
    [all...]
  /external/chromium_org/v8/src/
regexp-macro-assembler-tracer.cc 53 static int LabelToInt(Label* label) {
54 return static_cast<int>(reinterpret_cast<intptr_t>(label));
58 void RegExpMacroAssemblerTracer::Bind(Label* label) {
59 PrintF("label[%08x]: (Bind)\n", LabelToInt(label));
60 assembler_->Bind(label);
70 void RegExpMacroAssemblerTracer::CheckGreedyLoop(Label* label) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg 476 :{<labelType> <it.label.text>=null;}; separator="\n"
479 :{List list_<it.label.text>=null;}; separator="\n"
482 :ruleLabelDef(label=it); separator="\n"
693 /** match a token optionally with a label in front */
694 tokenRef(token,label,elementIndex) ::= <<
696 <if(label)>
697 <label> = input.LT(1);<\n>
704 tokenRefAndListLabel(token,label,elementIndex) ::= <<
709 listLabel(label) ::= <<
710 if (list_<label>==null) list_<label>=new ArrayList()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/status/
network_menu.cc 47 // Replace '&' in a string with "&&" to allow it to be a menu item label.
79 MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon,
82 label(label),
88 MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon,
91 label(label),
98 base::string16 label; member in struct:chromeos::NetworkMenuModel::MenuItem
240 return menu_items_[index].label;
349 base::string16 label; local
387 base::string16 label; local
629 std::string label = l10n_util::GetStringUTF8( local
639 std::string label = l10n_util::GetStringUTF8( local
    [all...]
  /system/core/libpixelflinger/codeflinger/
MIPSAssembler.h 109 virtual void label(const char* theLabel);
110 virtual void B(int cc, const char* label);
111 virtual void BL(int cc, const char* label);
113 virtual uint32_t* pcForLabel(const char* label);
226 char label[100][10]; member in struct:android::ArmToMipsAssembler::cond_mode_t
257 void label(const char* string);
260 uint32_t* pcForLabel(const char* label);
362 void B(const char* label);
363 void BEQ(int Rs, int Rt, const char* label);
364 void BNE(int Rs, int Rt, const char* label);
420 const char* label; member in struct:android::MIPSAssembler::branch_target_t
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/
chrome_shared.css 163 label > input[type=checkbox],
164 label > input[type=radio] {
169 html[os=mac] label > input[type=checkbox],
170 html[os=mac] label > input[type=radio] {
174 html[os=chromeos] label > input[type=checkbox],
175 html[os=chromeos] label > input[type=radio] {
182 label:hover > input[type=checkbox]:not([disabled]),
183 label:hover > input[type=radio]:not([disabled]),
184 label > input:not([disabled]):checked {
188 label:hover > input[type=checkbox]:not([disabled]) ~ span
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
commandbutton.js 70 this.setLabel(command.label);
81 * Returns button label
82 * @return {string} Button label.
89 * Sets button label.
90 * @param {string} label New button label.
92 CommandButton.prototype.setLabel = function(label) {
93 this.textContent = label;
119 this.setLabel(this.command_.label);
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
policies.py 291 for label in policy_set:
292 max_components = max(max_components, len(policy_set[label].components))
294 for label in sorted(policy_set):
295 components = policy_set[label].components
297 out.write('%s%s\n' % (label, ',' * (max_components - 1)))
301 LOGGER.info('Applying a policy %s to...' % label)
304 dump, pfn_counts_dict, policy_set[label], bucket_set, dumps[0].time)
337 for label in sorted(policy_set):
338 json_base['policies'][label] = {
339 'legends': policy_set[label].components
    [all...]
  /external/chromium_org/ui/base/models/
simple_menu_model.cc 18 base::string16 label; member in struct:ui::SimpleMenuModel::Item
87 void SimpleMenuModel::AddItem(int command_id, const base::string16& label) {
88 Item item = { command_id, label, base::string16(), base::string16(),
98 const base::string16& label) {
99 Item item = { command_id, label, base::string16(), base::string16(),
109 const base::string16& label,
111 Item item = { command_id, label, base::string16(), base::string16(),
158 const base::string16& label,
160 Item item = { command_id, label, base::string16(), base::string16(),
172 const base::string16& label) {
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_chrome_link_button.cc 76 GtkStyle* style = gtk_rc_get_style(button->label);
123 gtk_label_set_markup(GTK_LABEL(button->label),
140 GtkWidget* label = button->label; local
146 gtk_label_set_markup(GTK_LABEL(label),
151 gtk_label_set_markup(GTK_LABEL(label), button->pressed_markup);
154 gtk_label_set_markup(GTK_LABEL(label), button->insensitive_markup);
163 gtk_container_propagate_expose(GTK_CONTAINER(widget), label, event); local
219 // We put a label in a button so we can connect to the click event. We don't
221 // them through to the label
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
via-mont.pl 116 &jnz (&label("leave")); # num % 4 != 0
118 &jb (&label("leave")); # num < 8
120 &ja (&label("leave")); # num > 1024
202 &loop (&label("sub")); # doesn't affect CF!
220 &loop (&label("copy"));
  /external/iproute2/ip/
ifcfg 32 label="label $1"
59 ip -4 addr flush dev $dev $label || exit 1
101 label=
105 ip addr del $pfx dev $dev $label || exit 1
122 if ! ip address add $pfx brd + dev $dev $label; then
  /external/openssl/crypto/bn/asm/
via-mont.pl 116 &jnz (&label("leave")); # num % 4 != 0
118 &jb (&label("leave")); # num < 8
120 &ja (&label("leave")); # num > 1024
202 &loop (&label("sub")); # doesn't affect CF!
220 &loop (&label("copy"));
  /frameworks/base/core/java/com/android/internal/app/
LocalePicker.java 61 String label; field in class:LocalePicker.LocaleInfo
64 public LocaleInfo(String label, Locale locale) {
65 this.label = label;
70 return label;
79 return this.label;
84 return sCollator.compare(this.label, another.label);
90 * {@link LocaleInfo#label}.
156 preprocess[finalSize-1].label+" to "
    [all...]

Completed in 1314 milliseconds

<<21222324252627282930>>