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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/gesture/
Prediction.java 24 Prediction(String label, double predictionScore) {
25 name = label;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 14 def nameprep(label):
17 for c in label:
22 label = u"".join(newlabel)
25 label = unicodedata.normalize("NFKC", label)
28 for c in label:
41 RandAL = map(stringprep.in_table_d1, label)
50 if filter(stringprep.in_table_d2, label):
60 return label
62 def ToASCII(label)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 14 def nameprep(label):
17 for c in label:
22 label = u"".join(newlabel)
25 label = unicodedata.normalize("NFKC", label)
28 for c in label:
41 RandAL = map(stringprep.in_table_d1, label)
50 if filter(stringprep.in_table_d2, label):
60 return label
62 def ToASCII(label)
    [all...]
  /external/bluetooth/bluedroid/stack/avct/
avct_defs.h 51 #define AVCT_BLD_HDR(p, label, type, cr_ipid) \
52 *(p)++ = ((label) << 4) | ((type) << 2) | (cr_ipid);
54 #define AVCT_PRS_HDR(p, label, type, cr_ipid) \
55 label = *(p) >> 4; \
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/tests/
lc3b-basic.asm 3 label:
6 brz label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
orphannowarn.asm 0 label:
5 jmp label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/worphan/
orphanwarn.asm 0 label:
5 jmp label
  /external/chromium_org/ui/base/accelerators/
menu_label_accelerator_util_linux.h 17 const std::string& label);
19 // Removes the "&" accelerators from a Windows label.
20 UI_EXPORT std::string RemoveWindowsStyleAccelerators(const std::string& label);
25 UI_EXPORT std::string EscapeWindowsStyleAccelerators(const std::string& label);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTParser.stg 36 * no label, label, list label (label/no-label handled together)
52 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
55 <label>_tree = <createNodeFromToken(...)>;
56 adaptor.AddChild(root_0, <label>_tree);
61 tokenRefBang(token,label,elementIndex) ::= "<super.tokenRef(...)>"
64 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTParser.stg 37 * no label, label, list label (label/no-label handled together)
53 tokenRef(token,label,elementIndex,terminalOptions) ::= <%
57 <\n><label>_tree = <createNodeFromToken(...)>;
58 <\n>adaptor.AddChild(root_0, <label>_tree);
64 tokenRefBang(token,label,elementIndex,terminalOptions) ::= "<super.tokenRef(...)>"
67 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
ASTParser.stg 36 * no label, label, list label (label/no-label handled together)
53 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
59 <label>_tree := <createNodeFromToken(...)>;
60 Adaptor.AddChild(Root[0], <label>_tree);
67 tokenRefBang(token,label,elementIndex) ::= "<super.tokenRef(...)>"
70 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalVariableInfo.java 74 * the given label.
76 * @param label {@code >= 0;} the block label
79 public void setStarts(int label, RegisterSpecSet specs) {
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, RegisterSpecSet specs)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableInfo.java 73 * the given label.
75 * @param label {@code >= 0;} the block label
78 public void setStarts(int label, RegisterSpecSet specs) {
86 blockStarts[label] = specs;
89 throw new IllegalArgumentException("bogus label");
95 * given label. If there was not already an associated set, then this
100 * @param label {@code >= 0;} the block label
107 public boolean mergeStarts(int label, RegisterSpecSet specs)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
ASTParser.stg 36 * no label, label, list label (label/no-label handled together)
51 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
54 <label>_tree = (<ASTLabelType>)(ADAPTOR->create(ADAPTOR, <label>));
55 ADAPTOR->addChild(ADAPTOR, root_0, <label>_tree);
60 tokenRefBang(token,label,elementIndex,terminalOptions) ::= "<super.tokenRef(...)>
    [all...]
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
93 if ( _first_<enclosingTreeLevel> == NULL ) _first_<enclosingTreeLevel> = <root.el.label>.tree;
95 if ( _first_<enclosingTreeLevel> == NULL ) _first_<enclosingTreeLevel> = <root.el.label>;
123 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTParser.stg 33 * no label, label, list label (label/no-label handled together)
49 tokenRef(token, label, elementIndex, terminalOptions) ::= <<
53 <label>_tree = <createNodeFromToken(...)>;
54 [treeAdaptor addChild:<label>_tree toTree:root_0];
60 tokenRefBang(token,label,elementIndex,terminalOptions) ::= "<super.tokenRef(...)>"
63 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
LocalVariableInfo.java 74 * the given label.
76 * @param label {@code >= 0;} the block label
79 public void setStarts(int label, RegisterSpecSet specs) {
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, RegisterSpecSet specs)
    [all...]
  /external/mdnsresponder/Clients/
ClientCommon.c 46 const char *GetNextLabel(const char *cstr, char label[64])
48 char *ptr = label;
49 while (*cstr && *cstr != '.') // While we have characters in the label...
69 if (ptr >= label+64) { label[63] = 0; return(NULL); } // Illegal label more than 63 bytes
71 *ptr = 0; // Null-terminate label text
72 if (ptr == label) return(NULL); // Illegal empty label
  /packages/apps/Email/src/com/android/email/activity/setup/
SpinnerOption.java 24 public final String label; field in class:SpinnerOption
36 public SpinnerOption(Object value, String label) {
38 this.label = label;
43 return label;
  /external/chromium_org/tools/gn/
label_ptr.h 21 LabelPtrPair() : label(), ptr(NULL), origin(NULL) {}
23 explicit LabelPtrPair(const Label& l) : label(l), ptr(NULL), origin(NULL) {
26 // This contructor is typically used in unit tests, it extracts the label
28 explicit LabelPtrPair(const T* p) : label(p->label()), ptr(p), origin(NULL) {
33 Label label; member in struct:LabelPtrPair
46 // To do a brute-force search by label:
47 // std::find_if(vect.begin(), vect.end(), LabelPtrLabelEquals<Config>(label));
56 const Label& label; member in struct:LabelPtrLabelEquals
    [all...]
  /external/chromium_org/ui/views/controls/
label_unittest.cc 5 #include "ui/views/controls/label.h"
21 Label label; local
24 label.SetFontList(gfx::FontList(font));
25 gfx::Font font_used = label.font_list().GetPrimaryFont();
31 Label label; local
34 label.SetFontList(gfx::FontList(font));
35 gfx::Font font_used = label.font_list().GetPrimaryFont();
41 Label label local
48 Label label; local
56 Label label; local
80 Label label; local
91 Label label; local
100 Label label; local
147 Label label; local
159 Label label; local
185 Label label; local
203 Label label; local
287 Label label; local
324 Label label; local
460 Label label; local
601 Label label; local
740 Label label; local
892 Label label; local
905 Label label; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
ASTTreeParser.stg 33 * no label, label, list label (label/no-label handled together)
37 * Each combination has its own template except that label/no label
77 if ( _first_<enclosingTreeLevel>==null ) _first_<enclosingTreeLevel> = <root.el.label>.tree;
79 if ( _first_<enclosingTreeLevel>==null ) _first_<enclosingTreeLevel> = <root.el.label>;
106 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ASTTreeParser.stg 33 * no label, label, list label (label/no-label handled together)
37 * Each combination has its own template except that label/no label
86 _first_<enclosingTreeLevel> = <root.el.label>.tree<\n>
89 _first_<enclosingTreeLevel> = <root.el.label><\n>
117 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ASTTreeParser.stg 33 * no label, label, list label (label/no-label handled together)
37 * Each combination has its own template except that label/no label
78 if ( _first_<enclosingTreeLevel>==null ) _first_<enclosingTreeLevel> = <root.el.label>.tree;
80 if ( _first_<enclosingTreeLevel>==null ) _first_<enclosingTreeLevel> = <root.el.label>;
107 tokenRefBang(token,label,elementIndex) ::= <
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/
x86cpuid.pl 24 &jnc (&label("nocpuid"));
38 &jz (&label("intel"));
49 &jnz (&label("intel"));
55 &jb (&label("intel"));
62 &jb (&label("intel"));
72 &jnc (&label("generic"));
76 &ja (&label("generic"));
78 &jmp (&label("generic"));
83 &jb (&label("nocacheinfo"));
97 &jne (&label("notintel"))
    [all...]

Completed in 512 milliseconds

1 23 4 5 6 7 8 91011>>