/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/tests/ |
lc3b-br.asm | 1 br label 2 brn label 3 brz label 4 brp label 5 brnz label 6 brnp label 7 brzp label 8 brnzp label 9 label:
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
timesunder.asm | 1 je label 3 label:
|
value-mask.asm | 1 db label 2 db label & 0xff 5 label:
|
opt-circular1-err.asm | 1 times (label-$) db 0
2 label: db 'Where am I?'
define
|
value-err.asm | 0 label: 2 mov [label/2+1], ax 3 mov ax, label*2 4 mov [label+5], ax 5 mov ax, label wrt foo 7 dd label 8 dd label<<5 9 dd label>>2
|
opt-circular2-err.asm | 1 times (label-$+1) db 0
2 label: db 'NOW where am I?'
define
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/ |
jmpcall.asm | 2 label: 7 call label(,1) 8 call label 9 call label+5 10 call *label 11 call *label(%eax) 12 jmp %fs:label 13 jmp *%fs:label
|
/external/chromium_org/tools/idl_parser/test_parser/ |
label_ppapi.idl | 33 *Label(Chrome1) 36 label Chrome1 { 41 *Label(Chrome2) 45 label Chrome2 {
|
/external/clang/test/CodeGen/ |
2007-02-07-AddrLabel.c | 6 label: 7 ptr = &&label;
|
/external/mdnsresponder/Clients/ |
ClientCommon.h | 41 extern const char *GetNextLabel(const char *cstr, char label[64]);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
Transition.java | 32 * that the label is actually a set of labels or a semantic predicate. 34 * transitions) and has a label/target pair. I have abstracted the notion 35 * of a Label to handle the various kinds of things it can be. 38 /** What label must be consumed to transition to target */ 39 public Label label; field in class:Transition 44 public Transition(Label label, State target) { 45 this.label = label; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
ColorSuggestion.h | 41 String label; member in struct:WebCore::ColorSuggestion 43 ColorSuggestion(const Color& colorValue, const String& label) 45 , label(label)
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/ |
rdfabs.asm | 2 label 6 global label
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/ |
dy.asm | 2 dw label 5 label:
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/tests/ |
orgsect.asm | 2 label: 7 dw label
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/ |
label.asm | 1 a label byte
|
/external/clang/test/Misc/ |
diag-trailing-null-bytes.cpp | 5 #define NET_ERROR(label, value) ERR_ ## label = value,
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/ |
elfequabs.asm | 1 global label 3 label: 10 jmp label
|
/external/chromium_org/ui/views/examples/ |
label_example.cc | 9 #include "ui/views/controls/label.h" 18 // A Label with a constrained preferred size to demonstrate eliding or wrapping. 19 class PreferredSizeLabel : public Label { 24 // Overridden from Label: 31 PreferredSizeLabel::PreferredSizeLabel() : Label() { 41 LabelExample::LabelExample() : ExampleBase("Label") {} 46 // A very simple label example, followed by additional helpful examples. 48 Label* label = new Label(ASCIIToUTF16("Hello world!")) local [all...] |
/external/chromium_org/ui/base/accelerators/ |
menu_label_accelerator_util_linux.cc | 17 std::string ConvertAmpersandsTo(const std::string& label, 20 ret.reserve(label.length() * 2); 21 for (size_t i = 0; i < label.length(); ++i) { 22 if ('_' == label[i]) { 25 } else if ('&' == label[i]) { 26 if (i + 1 < label.length() && '&' == label[i + 1]) { 33 ret.push_back(label[i]); 44 std::string ConvertAcceleratorsFromWindowsStyle(const std::string& label) { 45 return ConvertAmpersandsTo(label, "_") [all...] |
/cts/tools/dasm/src/java_cup/ |
production_part.java | 4 * production. In this base class it contains only an optional label 29 /** Optional label for referring to the part within an action (null for 30 * no label). 34 /** Optional label for referring to the part within an action (null for 35 * no label). 37 public String label() {return _label;} method in class:production_part 56 if (label() != null) 57 return label().equals(other.label()); 59 return other.label() == null [all...] |
/external/clang/test/CodeGenCXX/ |
2003-11-29-DuplicatedCleanupTest.cpp | 17 label: { 20 if (val == 0) goto label; 21 if (val == 1) goto label; 26 label: { 29 if (val == 0) { doesntThrow(); goto label; } 30 if (val == 1) { doesntThrow(); goto label; } 35 label: { 38 if (val == 0) { F C; goto label; } 39 if (val == 1) { F D; goto label; }
|
/external/chromium/net/base/ |
net_errors.cc | 19 #define NET_ERROR(label, value) \ 20 case ERR_ ## label: \ 21 return "net::" STRINGIZE_NO_EXPANSION(ERR_ ## label);
|
load_flags.h | 15 #define LOAD_FLAG(label, value) LOAD_ ## label = value,
|
/external/chromium_org/content/public/common/ |
color_suggestion.cc | 13 label(suggestion.label) {
|