HomeSort by relevance Sort by last modified time
    Searched defs:targets (Results 76 - 100 of 114) sorted by null

1 2 34 5

  /dalvik/libcore/security/src/test/java/tests/targets/security/cert/
CertificateTest.java 16 package tests.targets.security.cert;
    [all...]
  /external/webkit/WebCore/platform/gtk/
PasteboardGtk.cpp 105 GtkTargetEntry* targets = gtk_target_table_new_from_list(m_helper->targetList(), &n_targets); local
106 gtk_clipboard_set_with_data(clipboard, targets, n_targets,
108 gtk_target_table_free(targets, n_targets);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AndroidPreferencePage.java 169 l.setText("Note: The list of SDK Targets below is only reloaded once you hit 'Apply' or 'OK'.");
177 IAndroidTarget[] targets = sdk != null ? sdk.getTargets() : null; local
180 targets,
211 IAndroidTarget[] targets = sdk != null ? sdk.getTargets() : null; local
213 mTargetSelector.setTargets(targets);
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 57 * some sort, the list of targets for that instruction
288 IntList targets = null; local
293 targets = targetLists[i];
294 if (targets != null) {
300 if (targets == null) {
301 targets = IntList.makeImmutable(next);
311 new ByteBlock(at, at, next, targets, blockCatches);
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 44 private final CodeAddress[] targets; field in class:SwitchData
57 * @param targets {@code non-null;} corresponding list of code addresses; the
61 IntList cases, CodeAddress[] targets) {
72 if (targets == null) {
73 throw new NullPointerException("targets == null");
78 if (sz != targets.length) {
79 throw new IllegalArgumentException("cases / targets mismatch");
88 this.targets = targets;
104 int sz = targets.length
    [all...]
  /dalvik/libcore/security/src/test/java/tests/targets/security/
CipherHelper.java 16 package tests.targets.security;
MessageDigestTest.java 16 package tests.targets.security;
  /dalvik/libcore/support/src/test/java/targets/
Charsets.java 1 package targets; package
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
AndroidPropertyPage.java 62 // get the targets from the sdk
63 IAndroidTarget[] targets = null; local
65 targets = Sdk.getCurrent().getTargets();
78 mSelector = new SdkTargetSelector(targetGroup, targets);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/layoutRendering/
ApiDemosRenderingTest.java 125 IAndroidTarget[] targets = getSdk().getTargets(); local
127 for (IAndroidTarget target : targets) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
SampleProjectTest.java 60 IAndroidTarget[] targets = getSdk().getTargets(); local
61 for (IAndroidTarget target : targets) {
  /dalvik/libcore/security/src/test/java/tests/security/
AllTests.java 48 suite.addTest(tests.targets.security.AllTests.suite());
  /dalvik/vm/compiler/
Frontend.c 592 s4 *targets = (s4 *) (switchData + 2 + local
602 caseChain->startOffset = lastInsn->offset + targets[i];
  /cts/tools/dasm/src/dasm/
DAsm.java 423 // check jump targets
576 * used for relative branch targets (ie $+5, $-12, ...) Format: relative
846 * used for relative branch targets (ie $+5, $-12, ...) Format: relative 21t
1435 CodeAddress targets[] = new CodeAddress[sz]; local
    [all...]
  /cts/tools/test-progress/src/
TestCoverageDoclet.java 435 if (kv.element().qualifiedName().equals("dalvik.annotation.TestInfo.targets")) {
436 // targets is an [] type
437 AnnotationValue[] targets = (AnnotationValue[]) kv.value().value(); local
438 for (AnnotationValue tval : targets) {
439 // the test targets must be annotations themselves
712 } // else this class has no single test that targets one of its method
  /external/icu4c/i18n/
transreg.cpp 194 * Spec class for sources and targets.
746 Hashtable *targets = (Hashtable*) specDAG.get(source); local
747 return (targets == 0) ? 0 : targets->count();
753 Hashtable *targets = (Hashtable*) specDAG.get(source); local
754 if (targets == 0) {
761 e = targets->nextElement(pos);
776 Hashtable *targets = (Hashtable*) specDAG.get(source); local
777 if (targets == 0) {
780 UVector *variants = (UVector*) targets->get(target)
789 Hashtable *targets = (Hashtable*) specDAG.get(source); local
933 Hashtable *targets = (Hashtable*) specDAG.get(source); local
979 Hashtable *targets = (Hashtable*) specDAG.get(source); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 122 * Classes implementing this interface will receive notification when targets are changed.
131 * Called when the targets are loaded (either the SDK finished loading when Eclipse starts,
180 * Returns the lock object used to synchronize all operations dealing with SDK, targets and
270 * Returns the list of targets that are available in the SDK.
683 IAndroidTarget[] targets = mManager.getTargets(); local
684 for (IAndroidTarget target : targets) {
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java 299 IAndroidTarget[] targets = mSdkManager.getTargets(); local
300 if (targetId == INVALID_TARGET_ID || targetId > targets.length) {
301 errorAndExit("Target id is not valid. Use '%s list targets' to get the target ids.",
304 IAndroidTarget target = targets[targetId - 1]; // target id is 1-based
488 IAndroidTarget[] targets = mSdkManager.getTargets(); local
490 if (targetId == INVALID_TARGET_ID || targetId > targets.length) {
491 errorAndExit("Target id '%1$s' is not valid. Use '%2$s list targets' to get the target ids.",
495 target = targets[targetId - 1]; // target id is 1-based
597 * Displays the list of available Targets (Platforms and Add-ons)
600 mSdkLog.printf("Available Android targets:\n")
750 IAndroidTarget[] targets = mSdkManager.getTargets(); local
1208 IAndroidTarget[] targets = mSdkManager.getTargets(); local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
SdkManager.java 116 // sort the targets/add-ons
121 // load the samples, after the targets have been set.
140 * Returns the targets that are available in the SDK.
149 * Sets the targets that are available in the SDK.
153 private void setTargets(IAndroidTarget[] targets) {
154 assert targets != null;
155 mTargets = targets;
190 IAndroidTarget[] targets = getTargets(); local
191 for (IAndroidTarget target : targets) {
226 // sort the targets/add-on
    [all...]
  /cts/tools/test-progress-new/src/testprogress2/
TestCoverageDoclet.java 222 System.out.println("stage 1 - get targets from all junit test methods");
251 System.out.println("stage 2 - proxy test targets to abstract classes"
630 private void linkTargets(List<TestTargetNew> targets) {
631 for (TestTargetNew ttn : targets) {
665 // list special targets
770 AnnotationValue[] targets = (AnnotationValue[])ev local
772 for (AnnotationValue ttn : targets) {
916 List<TestTargetNew> targets = classToSpecialTargets.get(targetClass); local
955 List<TestTargetNew> targets = ap.getTargets(); local
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 822 final int [] targets = new int [npairs + 1]; local
861 final int [] targets = new int [high - low + 2]; local
1042 final int [] targets = block.m_branch.m_targets; local
1050 $assert.ASSERT (leaderToBlockID.get (targets [t], intHolder), "no mapping for " + targets [t]); local
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 1231 UnicodeString targets[] = {"fu\\\\u00DF", "fu\\\\u00DFball", "1fu\\\\u00DFball", "12fu\\\\u00DFball", "123fu\\\\u00DFball", "1234fu\\\\u00DFball", local
1294 UnicodeString targets[] = {"fu\\\\u00DF", "fu\\\\u00DFball", "1fu\\\\u00DFball", "12fu\\\\u00DFball", "123fu\\\\u00DFball", "1234fu\\\\u00DFball", local
    [all...]
transtst.cpp 3543 int32_t targets = Transliterator::countAvailableTargets(source); local
    [all...]
  /external/v8/src/
ast.h 633 explicit TargetCollector(ZoneList<BreakTarget*>* targets)
634 : targets_(targets) {
646 ZoneList<BreakTarget*>* targets() { return targets_; } function in class:v8::internal::TargetCollector
658 void set_escaping_targets(ZoneList<BreakTarget*>* targets) {
659 escaping_targets_ = targets;
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 2011 HashSet<ApplicationInfo> targets; local
    [all...]

Completed in 1141 milliseconds

1 2 34 5