Searched defs:label (Results 101 - 125 of 431) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_fast_common.c82 * master_secret = T-PRF(PAC-Key, "PAC to master secret label hash",
88 "PAC to master secret label hash",
97 const char *label, size_t len)
105 if (tls_connection_prf(ssl_ctx, conn, label, 1, 1, out, len)) {
96 eap_fast_derive_key(void *ssl_ctx, struct tls_connection *conn, const char *label, size_t len) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeWizard.cs93 * When using %label:TOKENNAME in a tree for parse(), we must
94 * track the label.
98 public string label; field in class:Antlr.Runtime.Tree.TreeWizard.TreePattern
104 if (label != null) {
105 return "%" + label + ":"; //+ base.ToString();
304 * a token type rather than a pattern doesn't let us set a label.
430 if (tpattern.label != null && labels != null) {
431 // map label in pattern to node in t1
432 labels[tpattern.label] = t1;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeWizard.cs101 * When using %label:TOKENNAME in a tree for parse(), we must
102 * track the label.
107 public string label; field in class:Antlr.Runtime.Tree.TreeWizard.TreePattern
115 if ( label != null )
117 return "%" + label + ":"; //+ base.ToString();
348 * a token type rather than a pattern doesn't let us set a label.
493 if ( tpattern.label != null && labels != null )
495 // map label in pattern to node in t1
496 labels[tpattern.label] = t1;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeWizard.java69 /** When using %label:TOKENNAME in a tree for parse(), we must
70 * track the label.
73 public String label; field in class:TreeWizard.TreePattern
79 if ( label!=null ) {
80 return "%"+label+":"+super.toString();
247 * a token type rather than a pattern doesn't let us set a label.
345 if ( tpattern.label!=null && labels!=null ) {
346 // map label in pattern to node in t1
347 labels.put(tpattern.label, t1);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFAState.java157 * transition that could be a valid label is transition(0). When we
159 * for all possible transitions. That is of the order: size(label space)
188 /** Add a transition from this state to target with label. Return
191 public int addTransition(DFAState target, Label label) { argument
192 transitions.add( new Transition(label, target) );
244 Label label = state.transition[0].label;
245 if ( !(label.isEpsilon()||label.isSemanticPredicate()) ) {
254 addReachableLabel(label);
305 addReachableLabel(Label label) argument
[all...]
H A DLabel.java34 /** A state machine transition label. A label can be either a simple
35 * label such as a token or character. A label can be a set of char or
38 * Special label types have to be < 0 to avoid conflict with char.
49 /** label is a semantic predicate; implies label is epsilon also */
52 /** label is a set of tokens or char */
117 /** The token type or character value; or, signifies special label. */
118 protected int label; field in class:Label
124 Label(int label) argument
361 intersect(Label label, Label edgeLabel) argument
[all...]
H A DNFAToDFAConverter.java268 // for each label that could possibly emanate from NFAStates of d
274 Label label = (Label)labels.get(i);
275 DFAState t = reach(d, label);
277 System.out.println("DFA state after reach "+label+" "+d+"-" +
278 label.toString(dfa.nfa.grammar)+"->"+t);
281 // nothing was reached by label due to conflict resolution
301 label.toString(dfa.nfa.grammar)+
305 // add if not in DFA yet and then make d-label->t
309 addTransition(d, label, targetState, targetToLabelMap);
344 /** Add a transition from state d to targetState with label i
408 addTransition(DFAState d, Label label, DFAState targetState, Map targetToLabelMap) argument
848 reach(DFAState d, Label label) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DNFAFactory.java97 if ( t.label.isEpsilon() && !t.label.isAction() && s.getNumberOfTransitions()==1 ) {
117 /** From label A build Graph o-A->o */
118 public StateCluster build_Atom(int label, GrammarAST associatedAST) { argument
123 transitionBetweenStates(left, right, label);
141 Label label = new Label(set);
142 Transition e = new Transition(label,right);
156 Label label = s0.transition(0).target.transition(0).label;
157 label
728 transitionBetweenStates(NFAState a, NFAState b, int label) argument
[all...]
/external/boringssl/src/ssl/
H A Ds3_enc.c167 size_t secret_len, const char *label, size_t label_len,
197 /* |label| is ignored for SSLv3. */
166 ssl3_prf(SSL *s, uint8_t *out, size_t out_len, const uint8_t *secret, size_t secret_len, const char *label, size_t label_len, const uint8_t *seed1, size_t seed1_len, const uint8_t *seed2, size_t seed2_len) argument
/external/compiler-rt/lib/dfsan/
H A Ddfsan.cc104 static void dfsan_check_label(dfsan_label label) { argument
105 if (label == kInitializingLabel) {
130 dfsan_label label = 0; local
131 if (atomic_compare_exchange_strong(table_ent, &label, kInitializingLabel,
135 // in the cases we are interested in) a label may only subsume labels
139 label = l2;
141 label =
143 dfsan_check_label(label);
144 __dfsan_label_info[label].l1 = l1;
145 __dfsan_label_info[label]
160 dfsan_label label = ls[0]; local
204 dfsan_label label = local
214 __dfsan_set_label(dfsan_label label, void *addr, uptr size) argument
232 dfsan_set_label(dfsan_label label, void *addr, uptr size) argument
237 dfsan_add_label(dfsan_label label, void *addr, uptr size) argument
261 dfsan_get_label_info(dfsan_label label) argument
266 dfsan_has_label(dfsan_label label, dfsan_label elem) argument
278 dfsan_has_label_with_desc(dfsan_label label, const char *desc) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDataItem.java369 * @param label {@code non-null;} the label for the purposes of annotation
373 String label, int size) {
375 out.annotate(String.format(" %-21s %08x", label + "_size:",
389 * @param label {@code non-null;} the label for the purposes of annotation
393 String label, ArrayList<? extends EncodedMember> list) {
402 out.annotate(0, " " + label + ":");
372 encodeSize(DexFile file, AnnotatedOutput out, String label, int size) argument
392 encodeList(DexFile file, AnnotatedOutput out, String label, ArrayList<? extends EncodedMember> list) argument
/external/e2fsprogs/misc/
H A Dblkid.c136 const char *label, const char *mtpt,
162 len = pretty_print_word(label, label_len, len, 0);
172 const char *uuid = "", *fs_type = "", *label = ""; local
178 pretty_print_line("device", "fs_type", "label",
190 /* Get the uuid, label, type */
198 label = value;
216 pretty_print_line(devname, fs_type, label, mtpt, uuid);
135 pretty_print_line(const char *device, const char *fs_type, const char *label, const char *mtpt, const char *uuid) argument
/external/e2fsprogs/resize/
H A Dmain.c53 const char *label; local
65 label = _("Extending the inode table");
68 label = _("Relocating blocks");
71 label = _("Scanning inode table");
74 label = _("Updating inode references");
77 label = _("Moving inode table");
80 label = _("Unknown pass?!?");
84 retval = ext2fs_progress_init(&progress, label, 30,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DScenarioResults.java36 String label; field in class:ScenarioResults
42 this.label = shortName;
139 * Returns the scenario label. If no label exist as there's no associated summary,
142 * @return The label of the scenario or it's short name if no summary exists
145 return this.label == null ? getShortName() : this.label;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCComboBox.java405 public ComboBoxItem(String label, Image image) { argument
406 m_label = label;
416 public void addItem(String label, Image image) { argument
418 m_items.add(new ComboBoxItem(label, image));
421 public void addItem(String label) { argument
422 addItem(label, null);
527 public void setSelectionText(String label) { argument
531 if (item.getText().equals(label)) {
538 setEditText(label);
/external/fio/
H A Dghelpers.c8 GtkWidget *new_combo_entry_in_frame(GtkWidget *box, const char *label) argument
12 frame = gtk_frame_new(label);
20 GtkWidget *new_info_entry_in_frame(GtkWidget *box, const char *label) argument
24 frame = gtk_frame_new(label);
46 GtkWidget *new_info_entry_in_frame_rgb(GtkWidget *box, const char *label, argument
52 entry = new_info_entry_in_frame(box, label);
58 GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label) argument
63 frame = gtk_frame_new(label);
/external/google-breakpad/src/common/dwarf/
H A Dcfi_assembler.h134 // or Here to make a label to pass to FDEHeader that refers to this
160 // defines the label representing the entry's length, cited in the
202 CFISection &Mark(Label *label) { Section::Mark(label); return *this; } argument
215 // known. LENGTH is the appended value; START is a label referring
/external/google-breakpad/src/common/
H A Dtest_assembler.cc49 Label::Label(const Label &label) { argument
50 value_ = label.value_;
62 Label &Label::operator=(const Label &label) { argument
63 value_->Set(label.value_, 0);
92 uint64_t Label::operator-(const Label &label) const {
94 ALWAYS_EVALUATE_AND_ASSERT(IsKnownOffsetFrom(label, &offset));
113 bool Label::IsKnownOffsetFrom(const Label &label, uint64_t *offset_p) const argument
117 label.value_->Get(&label_base, &label_addend);
119 // If this and label are related, Get will find their final
228 const Label &label) {
227 Append(Endianness endianness, size_t size, const Label &label) argument
[all...]
H A Dtest_assembler.h78 // A label can be in one of three states:
80 // - defined as the sum of some other label and a constant, or
83 // A label's value never changes, but it can accumulate constraints.
84 // Adding labels and integers is permitted, and yields a label.
85 // Subtracting a constant from a label is permitted, and also yields a
86 // label. Subtracting two labels that have some relationship to each
112 Label(); // An undefined label.
113 Label(uint64_t value); // A label with a fixed value
114 Label(const Label &value); // A label equal to another.
117 // Return this label'
439 Mark(Label *label) argument
465 Label label; member in struct:google_breakpad::test_assembler::Section::Reference
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUTS46.java23 // where the last ("root") label is the empty label
26 // if there is a trailing dot for the root label.
39 public StringBuilder labelToASCII(CharSequence label, StringBuilder dest, Info info) { argument
40 return process(label, true, true, dest, info);
44 public StringBuilder labelToUnicode(CharSequence label, StringBuilder dest, Info info) { argument
45 return process(label, true, false, dest, info);
165 // label starts with "-"
169 // label ends with "-"
238 // Permit an empty label a
303 replaceLabel(StringBuilder dest, int destLabelStart, int destLabelLength, CharSequence label, int labelLength) argument
545 checkLabelBiDi(CharSequence label, int labelStart, int labelLength, Info info) argument
666 isLabelOkContextJ(CharSequence label, int labelStart, int labelLength) argument
737 checkLabelContextO(CharSequence label, int labelStart, int labelLength, Info info) argument
[all...]
/external/iptables/extensions/
H A Dlibxt_owner.c290 owner_mt_print_item_v0(const struct ipt_owner_info *info, const char *label, argument
297 printf(" %s", label);
339 owner_mt6_print_item_v0(const struct ip6t_owner_info *info, const char *label, argument
346 printf(" %s", label);
384 owner_mt_print_item(const struct xt_owner_match_info *info, const char *label, argument
391 printf(" %s", label);
/external/libunwind/src/ia64/
H A Dunwind_decoder.h55 * UNW_DEC_COPY_STATE(fmt,label,arg)
61 * UNW_DEC_LABEL_STATE(fmt,label,arg)
391 unw_word label = (code & 0x1f); local
394 UNW_DEC_COPY_STATE(B1, label, arg);
396 UNW_DEC_LABEL_STATE(B1, label, arg);
413 unw_word t, ecount, label; local
423 label = unw_decode_uleb128 (&dp);
425 UNW_DEC_COPY_STATE(B4, label, arg);
427 UNW_DEC_LABEL_STATE(B4, label, arg);
/external/libunwind/tests/
H A DGperf-simple.c113 doit (const char *label) argument
132 printf ("%s: unw_step : 1st=%9.3f min=%9.3f avg=%9.3f nsec\n", label,
H A DGperf-trace.c99 doit (const char *label) argument
118 printf ("%s: unw_step : 1st=%9.3f min=%9.3f avg=%9.3f nsec\n", label,
/external/llvm/examples/BrainF/
H A DBrainF.cpp37 const char *BrainF::label = "brainf"; member in class:BrainF
78 builder = new IRBuilder<>(BasicBlock::Create(C, label, brainf_func));
122 endbb = BasicBlock::Create(C, label, brainf_func);
154 aberrorbb = BasicBlock::Create(C, label, brainf_func);
179 //br label %brainf.end
259 //br i1 %test.%d, label %main.%d, label %main.%d
260 BasicBlock *nextbb = BasicBlock::Create(C, label, brainf_func);
285 //br label %main.%d
286 BasicBlock *testbb = BasicBlock::Create(C, label, brainf_fun
[all...]

Completed in 958 milliseconds

1234567891011>>