Searched defs:label (Results 176 - 200 of 843) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dlabel_pattern.cc14 " A label pattern is a way of expressing one or more labels in a portion\n"
76 // If there's no wildcard, this is specifying an exact label, use the
77 // label resolution code to get all the implicit name stuff.
80 Label label = Label::Resolve(current_dir, Label(), value, err); local
86 if (!label.toolchain_dir().is_null() || !label.toolchain_name().empty())
87 toolchain_label = label.GetToolchainLabel();
89 return LabelPattern(MATCH, label.dir(), label.name(), toolchain_label);
92 // Wildcard case, need to split apart the label t
[all...]
H A Dlabel_ptr.h10 #include "tools/gn/label.h"
25 LabelPtrPair() : label(), ptr(NULL), origin(NULL) {}
27 explicit LabelPtrPair(const Label& l) : label(l), ptr(NULL), origin(NULL) {
30 // This contructor is typically used in unit tests, it extracts the label
32 explicit LabelPtrPair(const T* p) : label(p->label()), ptr(p), origin(NULL) {
37 Label label; member in struct:LabelPtrPair
54 // To do a brute-force search by label:
55 // std::find_if(vect.begin(), vect.end(), LabelPtrLabelEquals<Config>(label));
58 explicit LabelPtrLabelEquals(const Label& l) : label(
64 const Label& label; member in struct:LabelPtrLabelEquals
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_selection.js175 label: str('ACTION_OPEN'),
/external/chromium_org/ui/views/controls/button/
H A Dcheckbox.cc18 Checkbox::Checkbox(const base::string16& label) argument
19 : LabelButton(NULL, label),
84 // Construct a focus painter that only surrounds the label area.
85 gfx::Rect rect = label()->GetMirroredBounds();
H A Dlabel_button.h14 #include "ui/views/controls/label.h"
49 // Sets whether subpixel rendering is used on the label.
97 Label* label() const { return label_; } function in class:views::LabelButton
99 // Returns the available area for the label and image. Subclasses can change
156 // The image and label shown in the button.
H A Dradio_button.cc18 RadioButton::RadioButton(const base::string16& label, int group_id) argument
19 : Checkbox(label) {
/external/chromium_org/ui/views/examples/
H A Dwidget_example.cc10 #include "ui/views/controls/label.h"
36 AddChildView(new Label(ASCIIToUTF16("Dialog contents label!")));
52 Label* label = new Label(ASCIIToUTF16("Extra view!")); local
53 label->SetEnabledColor(SK_ColorBLUE);
54 return label;
58 return new Label(ASCIIToUTF16("Footnote label!"));
80 const std::string& label,
82 LabelButton* button = new LabelButton(this, ASCIIToUTF16(label));
79 BuildButton(View* container, const std::string& label, int tag) argument
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableInfo.java74 * the given label.
76 * @param label {@code >= 0;} the block label
79 public void setStarts(int label, RegisterSpecSet specs) { argument
87 blockStarts[label] = specs;
90 throw new IllegalArgumentException("bogus label");
96 * given label. If there was not already an associated set, then this
101 * @param label {@code >= 0;} the block label
108 public boolean mergeStarts(int label, RegisterSpecSe argument
142 getStarts(int label) argument
169 mutableCopyOfStarts(int label) argument
246 getStarts0(int label) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DLabeledList.java22 * A list of labeled items, allowing easy lookup by label.
26 * Sparse array indexed by label to FixedSizeList index;
27 * {@code -1} for an invalid label.
58 * Gets the maximum label (exclusive) of any block added to this instance.
60 * @return {@code >= 0;} the maximum label
78 * Removes a label from the label-to-index mapping.
80 * @param oldLabel label to remove
87 * Adds a label and index to the label
92 addLabelIndex(int label, int index) argument
110 indexOfLabel(int label) argument
[all...]
/external/doclava/src/com/google/doclava/
H A DLinkReference.java38 public String label; field in class:LinkReference
79 * and fills in href and label with error text.
137 result.label = text.substring(index);
326 result.label = result.label + "/" + ref + "/" + mem + '/';
329 result.label += params[i] + "|";
336 result.label =
337 result.label + "/package="
351 if (DBG) System.out.println("----- label = " + result.label
[all...]
/external/e2fsprogs/resize/
H A Dsim_progress.c19 char *label; member in struct:ext2_sim_progress
32 fputs(prog->label, prog->f);
33 width = prog->labelwidth - strlen(prog->label);
78 const char *label,
90 retval = ext2fs_get_mem(strlen(label)+1, &prog->label);
95 strcpy(prog->label, label);
112 if (prog->label)
113 ext2fs_free_mem(&prog->label);
77 ext2fs_progress_init(ext2_sim_progmeter *ret_prog, const char *label, int labelwidth, int barwidth, __u32 maxdone, int flags) argument
[all...]
/external/fio/
H A Dgerror.c63 GtkWidget *dialog, *content, *label; local
70 label = gtk_label_new(message);
71 gtk_container_add(GTK_CONTAINER(content), label); local
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex24 prefer this term) and 20 bits of flow label. Currently there exist
56 Flows with coinciding source address and flow label must have identical
75 flow label for another flow within the maximal lifetime has expired,
77 the label is taken over by another flow.
170 If \verb|sin6_flowinfo| does contain not zero flow label,
218 \section{Flow label management.}
225 label manager. There are at least three different approaches:
228 \item {\bf ``Cooperative''. } We could leave flow label allocation wholly
229 to user space. When user needs label he requests manager directly. The approach
235 control message, so that it will allocate label an
[all...]
/external/openfst/src/include/fst/
H A Dproject.h41 typename A::Label label = project_type_ == PROJECT_INPUT local
43 return A(label, label, arc.weight, arc.nextstate);
69 // input label to the output label or vice versa. This version modifies
87 // input label to the output label or vice versa. This version is a delayed
/external/proguard/src/proguard/gui/
H A DClassSpecificationsPanel.java195 private final JLabel label = new JLabel(); field in class:ClassSpecificationsPanel.MyListCellRenderer
210 label.setText(comments != null ? comments.trim() :
217 label.setBackground(list.getSelectionBackground());
218 label.setForeground(list.getSelectionForeground());
222 label.setBackground(list.getBackground());
223 label.setForeground(list.getForeground());
226 label.setOpaque(true);
228 return label;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTabSpec.java23 private CharSequence label; field in class:ShadowTabSpec
48 return this.label.toString();
60 return label.toString();
69 public TabHost.TabSpec setIndicator(CharSequence label) { argument
70 this.label = label;
75 public TabHost.TabSpec setIndicator(CharSequence label, Drawable icon) { argument
76 this.label = label;
/external/skia/samplecode/
H A DSampleLayers.cpp40 static void dump_layers(const char label[], SkCanvas* canvas) { argument
41 SkDebugf("Dump Layers(%s)\n", label);
/external/srec/srec/ca/
H A Drec_resu.c54 int CA_FullResultLabel(CA_Recog *hRecog, char *label, int len) argument
59 rc = srec_get_top_choice_transcription(hRecog->recm, label, len, 1);
H A Dvoc_basi.c110 int CA_CheckEntryInDictionary(CA_Vocab *hVocab, const char *label) argument
117 pronCount = get_prons(&hVocab->voc, label, prons, sizeof(prons));
123 for (i = 0; label[i]; i++) {
125 lower[i] = tolower(label[i]);
138 int CA_GetFullEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize);
140 int CA_GetEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize) argument
145 rc = CA_GetFullEntryInDictionary(hVocab, label, pron, pronSize, pronMaxSize);
153 int CA_GetFullEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize) argument
160 pronCount = get_prons(&hVocab->voc, label, pron, pronMaxSize);
166 for (i = 0; label[
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dproject.h38 typename A::Label label = project_type_ == PROJECT_INPUT local
40 return A(label, label, arc.weight, arc.nextstate);
55 // input label to the output label or vice versa. This version modifies
69 // input label to the output label or vice versa. This version is a delayed
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-tlsprf.c20 * @label: A unique label for each purpose of the PRF
30 int tls_prf_sha1_md5(const u8 *secret, size_t secret_len, const char *label, argument
48 MD5_addr[1] = (unsigned char *) label;
49 MD5_len[1] = os_strlen(label);
55 SHA1_addr[1] = (unsigned char *) label;
56 SHA1_len[1] = os_strlen(label);
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
/external/wpa_supplicant_8/src/crypto/
H A Dsha1-tlsprf.c20 * @label: A unique label for each purpose of the PRF
30 int tls_prf_sha1_md5(const u8 *secret, size_t secret_len, const char *label, argument
48 MD5_addr[1] = (unsigned char *) label;
49 MD5_len[1] = os_strlen(label);
55 SHA1_addr[1] = (unsigned char *) label;
56 SHA1_len[1] = os_strlen(label);
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-tlsprf.c20 * @label: A unique label for each purpose of the PRF
30 int tls_prf_sha1_md5(const u8 *secret, size_t secret_len, const char *label, argument
48 MD5_addr[1] = (unsigned char *) label;
49 MD5_len[1] = os_strlen(label);
55 SHA1_addr[1] = (unsigned char *) label;
56 SHA1_len[1] = os_strlen(label);
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DRubyTarget.java118 } else if ( formatName.equals( "label" ) ) {
119 return label( idString );
277 private String label( String value ) { method in class:RubyTarget.RubyRenderer
/external/bison/src/
H A Dgraphviz.c63 output_node (int id, char const *label, FILE *fout) argument
65 fprintf (fout, " %d [label=\"%s\"]\n", id, label);
69 output_edge (int source, int destination, char const *label, argument
73 if (label)
74 fprintf (fout, " label=%s", quote (label));
123 char *label = obstack_finish0 (out); local
124 fprintf (fout, "label=\"[%s]\", ", label);
[all...]

Completed in 3466 milliseconds

1234567891011>>