/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...] |
/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);
|
/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...] |
/dalvik/libcore/nio/src/main/java/java/nio/channels/ |
SocketChannel.java | 275 * length} byte buffers, in order, starting at {@code targets[offset]}. The 281 * @param targets 299 * offset + length} is greater than the size of {@code targets}. 307 public abstract long read(ByteBuffer[] targets, int offset, int length) 319 * Calling this method is equivalent to calling {@code read(targets, 0, 320 * targets.length);} 322 * @param targets 339 public synchronized final long read(ByteBuffer[] targets) 341 return read(targets, 0, targets.length) [all...] |
/frameworks/base/docs/html/guide/developing/tools/ |
avd.jd | 21 <li><a href="#listingtargets">Listing targets</a></li> 140 <h3 id="listingtargets">Listing targets</h3> 142 <p>To generate a list of system image targets, use this command: </p> 144 <pre>android list targets</pre> 148 then generates the list of targets. Here's an example of the command output: 151 <pre>Available Android targets: 175 <p>Once you have generated the list of targets available, you can look at the 404 <p>If, for any reason, the platform/add-on root folder has its name changed (maybe because the user has installed an update of the platform/add-on) then the AVD will not be able to load the system image that it is mapped to. In this case, the <code>android list targets</code> command will produce this output: 453 <td>Required. To obtain a list of available targets, use <code>android list 454 targets</code>.</td [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...] |
/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/guava/src/com/google/common/collect/ |
ImmutableSet.java | 334 @Override public boolean containsAll(Collection<?> targets) { 335 if (targets == this) { 338 if (!(targets instanceof ArrayImmutableSet)) { 339 return super.containsAll(targets); 341 if (targets.size() > size()) { 344 for (Object target : ((ArrayImmutableSet<?>) targets).elements) {
|
/external/icu4c/ |
Makefile.org | 57 ## List of phony targets 67 ## List of standard targets 96 ## Recursive targets
|
/external/v8/src/ia32/ |
codegen-ia32.h | 117 // A control destination encapsulates a pair of jump targets and a 122 // The true and false targets may be jumped to unconditionally or 146 // Accessors for the jump targets. Directly jumping or branching to 147 // or binding the targets will not update the destination's state. 152 // control has been split to both targets. This predicate does not 153 // test whether the targets have been extracted and manipulated as 154 // raw jump targets. 168 // Emit a branch to one of the true or false targets, and bind the 212 // Swap the true and false targets but keep the same actual label as 214 // expressions, where we want to swap the targets but preserve th [all...] |
/frameworks/base/docs/html/intl/ja/guide/developing/ |
other-ide.jd | 81 <li><code>target</code> ??????????????? ????????????????????????? Android ???????? ??????Google API ???????????????????????????????????????? ID ???????????<code>android list targets</code> ???????</li> 127 <li><code>target</code> ??????????????? ????????????????????????? Android ???????? ??????Google API ???????????????????????????????????????? ID ???????????<code>android list targets</code> ???????</li> 210 <pre>android list targets</pre>
|
/sdk/files/ |
ant_lib_rules_r2.xml | 128 <target name="clean" description="Removes output files created by other targets."> 136 <echo>Android Ant Build. Available targets:</echo> 138 <echo> clean: Removes output files created by other targets.</echo>
|
/dalvik/docs/opcodes/ |
opcode-2b-packed-switch.html | 83 PC' = PC + table.targets[vA - table.firstKey].
|
opcode-2c-sparse-switch.html | 83 PC' = PC + table.targets[I].
|
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/ |
CipherAesTest.java | 24 import targets.Cipher;
|
CipherPBETest.java | 25 import targets.Cipher;
|
CipherRSATest.java | 25 import targets.Cipher;
|
KeyGeneratorFunctionalTest.java | 24 import targets.KeyGenerator;
|
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/ |
SocketChannelImpl.java | 404 public long read(ByteBuffer[] targets, int offset, int length) 406 if (!isIndexValid(targets, offset, length)) { 411 int totalCount = calculateByteBufferArray(targets, offset, length); 419 // targets. 424 // transfer data from readArray to targets 426 int putLength = Math.min(targets[index].remaining(), left); 427 targets[index].put(readArray, readCount - left, putLength); 435 private boolean isIndexValid(ByteBuffer[] targets, int offset, int length) { 437 && ((long) length + (long) offset <= targets.length); [all...] |
/dalvik/libcore/security/src/test/java/tests/security/ |
AllTests.java | 48 suite.addTest(tests.targets.security.AllTests.suite());
|
/dalvik/libcore/security/src/test/java/tests/targets/security/ |
KeyFactoryTest.java | 16 package tests.targets.security;
|
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
Notation.java | 18 * used for formal declaration of processing instruction targets (see <a href='http://www.w3.org/TR/2004/REC-xml-20040204#sec-pi'>section 2.6</a> of the XML 1.0 specification [<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>]). The
|
/dalvik/vm/analysis/ |
VerifySubs.h | 47 /* check switch targets and set the "branch target" flag for destinations */
|
/dalvik/vm/arch/arm/ |
HintsEABI.c | 32 * are the same for all targets, while the lower 28 are used for hints to
|
/dalvik/vm/arch/x86/ |
Hints386ABI.c | 32 * are the same for all targets, while the lower 28 are used for hints to
|