HomeSort by relevance Sort by last modified time
    Searched defs:label (Results 701 - 725 of 1399) sorted by null

<<21222324252627282930>>

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 375 JLabel label; local
377 add(label = new JLabel("#ffffff"), new GridBagConstraints(0, 2, 1, 1, 0.0f, 0.0f,
380 label.setForeground(Color.WHITE);
381 hLabel = label;
383 add(label = new JLabel("R:"), new GridBagConstraints(1, 0, 1, 1, 0.0f, 0.0f,
386 label.setForeground(Color.WHITE);
387 add(label = new JLabel("255"), new GridBagConstraints(2, 0, 1, 1, 0.0f, 0.0f,
390 label.setForeground(Color.WHITE);
391 rLabel = label;
393 add(label = new JLabel("G:"), new GridBagConstraints(1, 1, 1, 1, 0.0f, 0.0f
    [all...]
  /system/bt/btif/src/
btif_rc.c 83 #define FILL_PDU_QUEUE(index, ctype, label, pending) \
86 btif_rc_cb.rc_pdu_info[index].label = label; \
97 send_metamsg_rsp(btif_rc_cb.rc_handle, btif_rc_cb.rc_pdu_info[index].label, \
100 btif_rc_cb.rc_pdu_info[index].label = 0; \
109 UINT8 label; member in struct:__anon72263
114 UINT8 label; member in struct:__anon72264
134 UINT8 label; member in struct:__anon72266
140 UINT8 label; member in struct:__anon72267
145 UINT8 label; member in struct:__anon72268
1985 UINT8 label; local
    [all...]
  /system/bt/stack/include/
avdt_api.h 277 UINT8 label; /* Transaction label */ member in struct:__anon72528
651 extern UINT16 AVDT_ConfigRsp(UINT8 handle, UINT8 label, UINT8 error_code,
    [all...]
  /system/core/libpixelflinger/codeflinger/
MIPS64Assembler.h 114 virtual void label(const char* theLabel);
115 virtual void B(int cc, const char* label);
116 virtual void BL(int cc, const char* label);
118 virtual uint32_t* pcForLabel(const char* label);
237 char label[100][10]; member in struct:android::ArmToMips64Assembler::cond_mode_t
MIPSAssembler.cpp 137 void ArmToMipsAssembler::label(const char* theLabel) function in class:android::ArmToMipsAssembler
139 mMips->label(theLabel);
151 sprintf(cond.label[i], "cond_%d", i);
194 uint32_t* ArmToMipsAssembler::pcForLabel(const char* label)
196 return mMips->pcForLabel(label);
427 ArmToMipsAssembler::B(cc^1, cond.label[++cond.labelnum]);
597 mMips->label(cond.label[cond.labelnum]);
705 void ArmToMipsAssembler::B(int cc, const char* label)
711 case EQ: mMips->BEQ(cond.r1, cond.r2, label); break
1355 ssize_t label = mLabelsInverseMapping.indexOfKey(mipsPC); local
1377 void MIPSAssembler::label(const char* theLabel) function in class:android::MIPSAssembler
    [all...]
  /system/core/sdcard/
sdcard.c 2061 const char *label = NULL; local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
coff-sh.c 2658 bfd_vma *label, *label_end; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-ia64.h 281 unsigned long label; member in struct:unw_b_record
tc-mmix.c 107 char *label; member in struct:__anon74085
849 /* Avoid "unhandled label" errors. */
863 /* For mmixal compatibility, a label for an instruction (and
865 label here for the pseudos that don't handle it themselves. When
866 having an fb-label, emit it here, and increment the counter after
947 /* Step up the fb-label counter if there was a definition on this
1008 /* For mmixal compatibility, a label for an instruction (and emitting
1010 label here. */
1050 user label instead of the special register. */
1058 /* If there's a fb-label on the current line, set that label. This mus
2910 char *label = NULL; local
    [all...]
tc-tic30.c 234 char *label; member in struct:__anon74117::__anon74118
254 char *label; member in struct:__anon74117::__anon74121
427 debug ("Direct reference is a label\n");
428 current_op->direct.label = token + 1;
595 debug ("Probably a label: %s\n", token);
596 current_op->immediate.label = malloc (strlen (token) + 1);
597 strcpy (current_op->immediate.label, token);
598 current_op->immediate.label[strlen (token)] = '\0';
626 current_op->immediate.label = malloc (strlen (token) + 1);
627 strcpy (current_op->immediate.label, token)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
dwarf2dbg.c 187 symbolS *label; member in struct:line_entry
240 symbolS *label; member in struct:logicals_entry
269 label is seen. */
345 /* Record an entry for LOC occurring at LABEL. */
348 dwarf2_gen_line_info_1 (symbolS *label, struct dwarf2_line_info *loc)
355 e->label = label;
405 logicals[logicals_with_labels].label = sym;
483 if (S_GET_VALUE (e->label) == now)
484 S_SET_VALUE (e->label, now + delta)
    [all...]
  /prebuilts/sdk/tools/
jack-jacoco-reporter.jar 
  /prebuilts/tools/common/m2/repository/org/parboiled/parboiled-core/1.0.2/
parboiled-core-1.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Grammar.java 163 public Token label; field in class:Grammar.LabelElementPair
166 /** Has an action referenced the label? Set by ActionAnalysis.g
171 public LabelElementPair(Token label, GrammarAST elementRef) {
172 this.label = label;
309 /** If this is a delegate of another grammar, this is the label used
311 * if no label was specified in the delegate statement.
313 public String label; field in class:Grammar
756 /** ANALYZE ACTIONS, LOOKING FOR LABEL AND ATTR REFS, sanity check */
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-tree-3.3.jar 
  /external/robolectric/v3/
shadows-support-v4-3.1-SNAPSHOT.jar 
  /prebuilts/devtools/tools/lib/
asm-tree-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-tree-4.0.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-tree/3.3/
asm-tree-3.3.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-tree/3.3.1/
asm-tree-3.3.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-analyzer/1.4/
maven-dependency-analyzer-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-tree/4.0/
asm-tree-4.0.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm-tree/4.0/
asm-tree-4.0.jar 

Completed in 3177 milliseconds

<<21222324252627282930>>