/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
MethodWriter.java | 271 * same format as the one used in {@link Label}, but limited to BASE types.
341 * node (i.e., each basic block) is represented by the Label object that
358 * i.e. a list of Label objects linked to each other by their
359 * {@link Label#successor} field, in the order they are visited by
362 private Label labels;
367 private Label previousBlock;
372 private Label currentBlock;
378 * {@link Label#inputStackTop beginStackSize} of the current basic block
387 * to the {@link Label#inputStackTop beginStackSize} of the current basic
453 // creates and visits the label for the first basic block 2070 int u, v, label; \/\/ indexes in b local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
NewProjectPage.java | 61 import org.eclipse.swt.widgets.Label; 92 private Label mHelpIcon; 93 private Label mTipLabel; 120 Label applicationLabel = new Label(container, SWT.NONE); 134 Label projectLabel = new Label(container, SWT.NONE); 147 Label packageLabel = new Label(container, SWT.NONE); 165 new Label(container, SWT.NONE) 319 Label label = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL); local [all...] |
NewTemplatePage.java | 79 import org.eclipse.swt.widgets.Label; 112 private Label mHelpIcon; 113 private Label mTipLabel; 160 Label label = new Label(parent, SWT.NONE); local 163 label.setLayoutData(data); 196 Label projectLabel = new Label(container, SWT.NONE); 208 //Label projectSeparator = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL) 272 Label label = new Label(container, SWT.NONE); local 324 Label label = new Label(container, SWT.NONE); local 356 Label label = new Label(container, SWT.NONE); local [all...] |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.1.201405082137/ |
org.jacoco.core-0.7.1.201405082137.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/ |
org.jacoco.core-0.7.3.201501221555.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/ |
org.jacoco.core-0.7.4.201502262128.jar | |
/prebuilts/tools/common/offline-m2/org/jacoco/org.jacoco.core/0.7.4.201502262128/ |
org.jacoco.core-0.7.4.201502262128.jar | |
/external/jacoco/ |
asm-debug-all-5.0.1.jar | |
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/5.0.1/ |
asm-debug-all-5.0.1.jar | |
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/5.0.2/ |
asm-debug-all-5.0.2.jar | |
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/5.0.4/ |
asm-debug-all-5.0.4.jar | |
/prebuilts/tools/common/offline-m2/org/ow2/asm/asm-debug-all/5.0.1/ |
asm-debug-all-5.0.1.jar | |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/ow2/asm/asm-debug-all/4.0/ |
asm-debug-all-4.0.jar | |
/prebuilts/tools/common/asm-tools/ |
asm-debug-all-4.0.jar | |
/packages/providers/ContactsProvider/tests/assets/test1/ |
legacy_contacts.sql | 14 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); 51 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id)); 78 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),type INTEGER NOT NULL,number TEXT,number_key TEXT,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); 123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 136 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'ex (…) [all...] |
/packages/providers/ContactsProvider/tests/assets/testSynced/ |
legacy_contacts.sql | 12 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); 42 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id)); 100 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),type INTEGER NOT NULL,number TEXT,number_key TEXT,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); 147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 160 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'ex (…) [all...] |
/packages/providers/ContactsProvider/tests/assets/testUnsynced/ |
legacy_contacts.sql | 11 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); 32 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id)); 55 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),type INTEGER NOT NULL,number TEXT,number_key TEXT,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); 91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 104 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'ex (…) [all...] |
/art/compiler/optimizing/ |
code_generator.h | 34 #include "utils/label.h" 106 Label* GetEntryLabel() { return &entry_label_; } 107 Label* GetExitLabel() { return &exit_label_; } 126 Label entry_label_; 127 Label exit_label_; 473 explicit MethodPatchInfo(MethodReference m) : target_method(m), label() { } 476 LabelType label; member in struct:art::CodeGenerator::MethodPatchInfo 484 : dex_file(df), string_index(index), label() { } 488 LabelType label; member in struct:art::CodeGenerator::StringPatchInfo 556 // Arm64 has its own type for a label, so we need to templatize these method [all...] |
/cts/hostsidetests/security/src/android/security/cts/ |
SELinuxHostTest.java | 521 assertEquals(msg, domain, exeProcs.get(0).label); 556 assertEquals(msg, domain, exeProcs.get(0).label); 590 assertEquals(msg, domain, p.label); 625 assertEquals(msg, domain, p.label); 764 public String label; field in class:SELinuxHostTest.ProcessDetails 774 ProcessDetails(String label, String user, int pid, int ppid, String procTitle) { 775 this.label = label; 784 return "label: " + label [all...] |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
AuthorizationList.java | 512 String label = "\nRSA exponent: "; local 514 s.append(label).append(rsaPublicExponent);
|
/development/apps/GestureBuilder/src/com/android/gesture/builder/ |
GestureBuilderActivity.java | 243 ((TextView) layout.findViewById(R.id.label)).setText(R.string.gestures_rename_label); 428 final TextView label = (TextView) convertView; local 430 label.setTag(gesture); 431 label.setText(gesture.name); 432 label.setCompoundDrawablesWithIntrinsicBounds(mThumbnails.get(gesture.gesture.getID()),
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceScript.java | 764 String label = args[1]; local 765 MonkeyGetAppFrameRateEvent e = new MonkeyGetAppFrameRateEvent("end", app, label); [all...] |
/external/autotest/frontend/tko/ |
models.py | 174 label = dbmodels.CharField(max_length=300) variable in class:Job 286 """Models a test label.""" 553 * test_label_fields: list of label names. Each label will be available 554 as a column label_<name>.id, non-null iff the label is present. 561 * machine_label_fields: list of machine label names. Each will be 563 label is present on the machine used in the test. 676 """Queries for test label IDs. 680 @return A list of test label IDs.
|
/external/avahi/avahi-ui/ |
avahi-ui.c | 916 gchar label[AVAHI_LABEL_MAX]; local [all...] |
/external/deqp/modules/egl/ |
teglImageFormatTests.cpp | 1046 string label; member in struct:deqp::egl::Image::LabeledAction [all...] |