HomeSort by relevance Sort by last modified time
    Searched defs:targets (Results 26 - 50 of 67) sorted by null

12 3

  /libcore/luni/src/test/java/tests/targets/security/
KeyStoreTest.java 16 package tests.targets.security;
  /libcore/luni/src/test/java/tests/targets/security/cert/
CertPathBuilderTestPKIX.java 16 package tests.targets.security.cert;
CertPathValidatorTestPKIX.java 16 package 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...]
  /libcore/luni/src/test/java/tests/security/
AllTests.java 41 suite.addTest(tests.targets.security.AllTests.suite());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
AndroidPropertyPage.java 68 // get the targets from the sdk
69 IAndroidTarget[] targets = null; local
71 targets = Sdk.getCurrent().getTargets();
84 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/vm/compiler/
Frontend.c 764 s4 *targets = (s4 *) (switchData + 2 + local
774 caseChain->startOffset = lastInsn->offset + targets[i];
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
SdkManager.java 113 // sort the targets/add-ons
118 // load the samples, after the targets have been set.
137 * Returns the targets that are available in the SDK.
146 * Sets the targets that are available in the SDK.
150 private void setTargets(IAndroidTarget[] targets) {
151 assert targets != null;
152 mTargets = targets;
187 IAndroidTarget[] targets = getTargets(); local
188 for (IAndroidTarget target : targets) {
223 // sort the targets/add-on
    [all...]
  /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...]
  /external/chromium/third_party/icu/source/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...]
  /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/sdkmanager/app/src/com/android/sdkmanager/
Main.java 379 IAndroidTarget[] targets = mSdkManager.getTargets(); local
380 if (targetId == INVALID_TARGET_ID || targetId > targets.length) {
381 errorAndExit("Target id is not valid. Use '%s list targets' to get the target ids.",
384 IAndroidTarget target = targets[targetId - 1]; // target id is 1-based
591 IAndroidTarget[] targets = mSdkManager.getTargets(); local
593 if (targetId == INVALID_TARGET_ID || targetId > targets.length) {
594 errorAndExit("Target id '%1$s' is not valid. Use '%2$s list targets' to get the target ids.",
598 target = targets[targetId - 1]; // target id is 1-based
712 * Displays the list of available Targets (Platforms and Add-ons)
715 mSdkLog.printf("Available Android targets:\n")
865 IAndroidTarget[] targets = mSdkManager.getTargets(); local
1323 IAndroidTarget[] targets = mSdkManager.getTargets(); local
    [all...]
  /external/chromium/third_party/icu/source/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/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 1228 UnicodeString targets[] = {"fu\\\\u00DF", "fu\\\\u00DFball", "1fu\\\\u00DFball", "12fu\\\\u00DFball", "123fu\\\\u00DFball", "1234fu\\\\u00DFball", local
1376 UnicodeString targets[] = {"fu\\\\u00DF", "fu\\\\u00DFball", "1fu\\\\u00DFball", "12fu\\\\u00DFball", "123fu\\\\u00DFball", "1234fu\\\\u00DFball", local
    [all...]
transtst.cpp 3549 int32_t targets = Transliterator::countAvailableTargets(source); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 129 * Classes implementing this interface will receive notification when targets are changed.
138 * Called when the targets are loaded (either the SDK finished loading when Eclipse starts,
187 * Returns the lock object used to synchronize all operations dealing with SDK, targets and
277 * Returns the list of targets that are available in the SDK.
694 IAndroidTarget[] targets = mManager.getTargets(); local
695 for (IAndroidTarget target : targets) {
    [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...]

Completed in 5457 milliseconds

12 3