HomeSort by relevance Sort by last modified time
    Searched refs:targets (Results 201 - 225 of 1131) sorted by null

1 2 3 4 5 6 7 891011>>

  /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);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
DragAndDrop.java 30 /** Manages drag and drop operations through registered drag sources and drop targets.
39 Array<Target> targets = new Array(); field in class:DragAndDrop
87 for (int i = 0, n = targets.size; i < n; i++) {
88 Target target = targets.get(i);
100 //with any reset out of the way, notify new targets of drag.
160 targets.add(target);
164 targets.removeValue(target, true);
167 /** Removes all targets and sources. */
169 targets.clear();
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterGraph.java 303 LinkedList<InputPort> targets; local
304 targets = mPreconnections.get(outPort);
305 if (targets == null) {
306 targets = new LinkedList<InputPort>();
307 mPreconnections.put(outPort, targets);
309 targets.add(inPort);
  /toolchain/binutils/binutils-2.25/bfd/doc/
Makefile.am 27 syms.texi targets.texi init.texi hash.texi linker.texi \
35 section.p syms.p targets.p \
51 $(srcdir)/../syms.c $(srcdir)/../targets.c \
61 $(srcdir)/../targets.c $(srcdir)/../init.c
207 targets.texi: targets.stamp ; @true
208 targets.stamp: $(srcdir)/../targets.c $(srcdir)/doc.str $(MKDOC)
209 ./$(MKDOC) -f $(srcdir)/doc.str < $< >targets.tmp
210 $(SHELL) $(srcdir)/../../move-if-change targets.tmp targets.tex
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 17 known ANTLR language targets.
326 targets = [ tokens_file ]
330 targets << file
336 targets.concat( grammar.target_files )
340 return targets
450 targets = [ tokens_file ]
451 targets.concat( @owner.delegate_files( @name ) )
452 return( targets )
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
AttributeCertificateIssuer.java 65 private boolean matchesDN(X500Name subject, GeneralNames targets)
67 GeneralName[] names = targets.getNames();
  /external/deqp/modules/gles31/functional/
es31fSampleShadingTests.cpp 475 } targets[] =
488 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(targets); ++ndx)
490 minSamplesGroup->addChild(new SampleShadingRenderingCase(m_context, (std::string(targets[ndx].name) + "_color").c_str(), "Test multiple samples per pixel with color", targets[ndx].target, targets[ndx].numSamples, SampleShadingRenderingCase::TEST_COLOR));
491 minSamplesGroup->addChild(new SampleShadingRenderingCase(m_context, (std::string(targets[ndx].name) + "_discard").c_str(), "Test multiple samples per pixel with", targets[ndx].target, targets[ndx].numSamples, SampleShadingRenderingCase::TEST_DISCARD));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
DataReadWriteTest.java 89 String[] targets = { local
99 String target = targets[j];
143 String[] targets = { local
153 String target = targets[j];
200 String[] targets = { local
210 String target = targets[j];
266 String[] targets = { local
280 String target = targets[j];
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
DataReadWriteTest.java 85 String[] targets = { local
95 String target = targets[j];
139 String[] targets = { local
149 String target = targets[j];
196 String[] targets = { local
206 String target = targets[j];
262 String[] targets = { local
276 String target = targets[j];
  /external/llvm/tools/llvm-c-test/
Android.mk 19 targets.c \
  /external/llvm/utils/buildit/
GNUmakefile 7 # You can specify TARGETS=ppc (or i386) on the buildit command line to limit the
10 # in TARGETS.
23 targets = echo $(RC_ARCHS) macro
24 TARGETS := $(shell $(targets))
64 $(SRC)/utils/buildit/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \
  /external/opencv3/samples/python2/
feature_homography.py 61 if len(self.tracker.targets) > 0:
62 target = self.tracker.targets[0]
  /frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
Camera2RequestSettingsSet.java 222 * @param targets The location(s) to draw the resulting image onto.
228 public CaptureRequest createRequest(CameraDevice camera, int template, Surface... targets)
238 for (Surface target : targets) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestContentAssist.java 67 IAndroidTarget[] targets = sdk.getTargets(); local
68 for (IAndroidTarget target : targets) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ApplicationInfoPage.java 245 protected void setSdkTargets(IAndroidTarget[] targets, IAndroidTarget target) {
246 if (targets == null) {
247 targets = new IAndroidTarget[0];
250 String[] items = new String[targets.length];
251 for (int i = 0, n = targets.length; i < n; i++) {
252 items[i] = targetLabel(targets[i]);
253 if (targets[i] == target) {
260 mSdkCombo.setData(targets);
270 // In the minimum SDK chooser, show the targets with api number and description,
306 IAndroidTarget[] targets = (IAndroidTarget[]) mSdkCombo.getData() local
384 IAndroidTarget[] targets = (IAndroidTarget[]) mSdkCombo.getData(); local
763 IAndroidTarget[] targets = null; local
    [all...]
SdkSelectionPage.java 90 // The selector is created without targets. They are added below in the change listener.
435 // Update the sdk target selector with the new targets
437 // get the targets from the sdk
438 IAndroidTarget[] targets = null; local
440 targets = Sdk.getCurrent().getTargets();
442 mSdkTargetSelector.setTargets(targets);
446 if (targets != null && targets.length == 1) {
447 mValues.target = targets[0];
450 } else if (targets != null)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
weakref1u.d 5 # see weakref1.d for comments on the other not-targets
weakref1w.d 4 # see weakref1.d for comments on the not-targets
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
flags1.d 9 # and all NaCl targets,
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-at3.d 8 # FAILs on NaCl targets because the linker extends the first segment
rgn-over8-ok.d 8 # FAILs on NaCl targets because the linker extends the first segment
  /build/kati/
bootstrap.go 25 func bootstrapMakefile(targets []string) (makefile, error) {
46 bootstrap += fmt.Sprintf("MAKECMDGOALS:=%s\n", strings.Join(targets, " "))
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
Target01.java 12 package org.jacoco.core.test.perf.targets;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
BooleanExpressionsTest.java 15 import org.jacoco.core.test.validation.targets.Target02;
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 328 llvm::Triple triple(m_pConfig->targets().triple());
331 m_pConfig->targets().getArch(), triple, error);
332 m_pConfig->targets().setTriple(triple);
346 << m_pConfig->targets().triple().str();

Completed in 3107 milliseconds

1 2 3 4 5 6 7 891011>>