HomeSort by relevance Sort by last modified time
    Searched full:targets (Results 476 - 500 of 3570) sorted by null

<<11121314151617181920>>

  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
isacfix.gypi 10 'targets': [
91 'targets': [
  /external/webrtc/src/modules/audio_processing/
apm_tests.gypi 10 'targets': [
50 'targets': [
audio_processing.gypi 10 'targets': [
74 'targets': [
  /frameworks/compile/mclinker/include/mcld/Config/
Linkers.def.cmake 13 // generated); including this file will then enumerate all of the targets with
16 // The set of targets supported by MCLD is generated at configuration
Linkers.def.in 13 // generated); including this file will then enumerate all of the targets with
16 // The set of targets supported by MCLD is generated at configuration
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AvdCompatibility.java 49 // for platform targets, we only need to check the min api version
55 // for add-on targets, delegate to the add on target to check for compatibility
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportedProject.java 194 IAndroidTarget[] targets = Sdk.getCurrent().getTargets(); local
211 for (IAndroidTarget t : targets) {
222 IAndroidTarget target = targets[targets.length - 1];
224 for (IAndroidTarget t : targets) {
240 IAndroidTarget target = targets[targets.length - 1];
245 for (IAndroidTarget t : targets) {
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...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
LanguageTestRoot.java 232 String[] targets = data.getFullPluralizedFormTargets(); local
253 xAssertEquals(u.toString() + c, targets, n++, string); local
260 String[] targets = data.getMediumFormTargets(); local
275 xAssertEquals(u.toString(), targets, n++, string); local
281 String[] targets = data.getShortFormTargets(); local
296 xAssertEquals(u.toString(), targets, n++, string); local
302 String[] targets = data.getCustomMinuteTargets(); local
316 xAssertEquals(targets, n++, pf.format(p));
318 xAssertEquals(targets, n++, pf.format(p));
324 String[] targets = data.getLimitedUnitTargets() local
415 String[] targets = data.getHalfUnitTargets(); local
437 xAssertEquals(u.toString(), targets, n++, string); local
445 String[] targets = data.getFractionalUnitTargets(); local
467 xAssertEquals(u.toString(), targets, n++, string); local
474 String[] targets = data.getMultipleUnitTargets(); local
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestUtil.java 185 public static void runUntilDone(Runnable[] targets) {
186 if (targets == null) {
187 throw new IllegalArgumentException("targets is null");
189 if (targets.length == 0) {
194 for (int i = 0; i < targets.length; ++i) {
195 new TestThread(lock, targets[i]).start();
  /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/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 33 * This AttributeVisitor finds all instruction offsets, branch targets, and
34 * exception targets in the CodeAttribute objects that it visits.
164 // Mark the branch targets of the default jump offset.
170 // Mark the branch targets of the jump offsets.
199 * Marks the branch targets of the given jump offsets for the instruction
247 // Mark the branch targets, if any.
  /external/skia/platform_tools/android/gyp_gen/
gypd_parser.py 121 Open a file that consists of python dictionaries representing build targets.
131 desired_targets: List of targets to be parsed from this file. If empty,
132 parse all targets.
140 # named 'targets'
141 for target in d['targets']:
149 # Add it to our known targets so we don't parse it again
  /frameworks/compile/mclinker/lib/Target/X86/
X86Emulation.cpp 22 pConfig.targets().setEndian(TargetOptions::Little);
24 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
27 pConfig.targets().triple().getEnvironment() == llvm::Triple::GNUX32) {
32 pConfig.targets().setBitClass(bitclass);
50 if (pConfig.targets().triple().isOSDarwin()) {
54 if (pConfig.targets().triple().isOSWindows()) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_with.py 604 targets = {1: [0, 1, 2]}
605 with mock_contextmanager_generator() as targets[1][0]:
606 self.assertEqual(targets.keys(), [1])
607 self.assertEqual(targets[1][0].__class__, MockResource)
608 with mock_contextmanager_generator() as targets.values()[0][1]:
609 self.assertEqual(targets.keys(), [1])
610 self.assertEqual(targets[1][1].__class__, MockResource)
611 with mock_contextmanager_generator() as targets[2]:
612 keys = targets.keys()
624 targets = {1: [0, 1, 2]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_with.py 604 targets = {1: [0, 1, 2]}
605 with mock_contextmanager_generator() as targets[1][0]:
606 self.assertEqual(targets.keys(), [1])
607 self.assertEqual(targets[1][0].__class__, MockResource)
608 with mock_contextmanager_generator() as targets.values()[0][1]:
609 self.assertEqual(targets.keys(), [1])
610 self.assertEqual(targets[1][1].__class__, MockResource)
611 with mock_contextmanager_generator() as targets[2]:
612 keys = targets.keys()
624 targets = {1: [0, 1, 2]
    [all...]
  /external/lldb/www/python_reference/
lldb-pysrc.html 95 </div><div id="swig_import_helper-collapsed" style="display:none;" pad="+++++" indent="++++++++"></div><div id="swig_import_helper-expanded"><a name="L36"></a><tt class="py-lineno"> 36</tt> <tt class="py-line"> <tt class="py-keyword">from</tt> <tt class="py-name">os</tt><tt class="py-op">.</tt><tt id="link-0" class="py-name" targets="Variable lldb.SBValue.path=lldb.SBValue-class.html#path"><a title="lldb.SBValue.path" class="py-name" href="#" onclick="return doclink('link-0', 'path', 'link-0');">path</a></tt> <tt class="py-keyword">import</tt> <tt id="link-1" class="py-name" targets="Variable lldb.SBFileSpec.dirname=lldb.SBFileSpec-class.html#dirname"><a title="lldb.SBFileSpec.dirname" class="py-name" href="#" onclick="return doclink('link-1', 'dirname', 'link-1');">dirname</a></tt> </tt>
97 <a name="L38"></a><tt class="py-lineno"> 38</tt> <tt class="py-line"> <tt id="link-2" class="py-name" targets="Variable lldb.SBFrame.fp=lldb.SBFrame-class.html#fp"><a title="lldb.SBFrame.fp" class="py-name" href="#" onclick="return doclink('link-2', 'fp', 'link-2');">fp</a></tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
99 <a name="L40"></a><tt class="py-lineno"> 40</tt> <tt class="py-line"> <tt id="link-3" class="py-name"><a title="lldb.SBFrame.fp" class="py-name" href="#" onclick="return doclink('link-3', 'fp', 'link-2');">fp</a></tt><tt class="py-op">,</tt> <tt class="py-name">pathname</tt><tt class="py-op">,</tt> <tt id="link-4" class="py-name" targets="Variable lldb.SBError.description=lldb.SBError-class.html#description,Variable lldb.SBValue.description=lldb.SBValue-class.html#description"><a title="lldb.SBError.description
106 <a name="L46"></a><tt class="py-lineno"> 46</tt> <tt class="py-line"> <tt class="py-name">_mod</tt> <tt class="py-op">=</tt> <tt class="py-name">imp</tt><tt class="py-op">.</tt><tt id="link-7" class="py-name" targets="Method lldb.utils.symbolication.Image.load_module()=lldb.utils.symbolication.Image-class.html#load_module"><a title="lldb.utils.symbolication.Image.load_module" class="py-name" href="#" onclick="return doclink('link-7', 'load_module', 'link-7');">load_module</a></tt><tt class="py-op">(</tt><tt class="py-string">'_lldb'</tt><tt class="py-op">,</tt> <tt id="link-8" class="py-name"><a title="lldb.SBFrame.fp" class="py-name" href="#" onclick="return doclink('link-8', 'fp', 'link-2');">fp</a></tt><tt class="py-op">,</tt> <tt class="py-name">pathname</tt><tt class="py-op">,</tt> <tt id="link-9" class="py-name"><a title="lldb.SBError.description
109 <a name="L48"></a><tt class="py-lineno"> 48</tt> <tt class="py-line"> <tt id="link-10" class="py-name"><a title="lldb.SBFrame.fp" class="py-name" href="#" onclick="return doclink('link-10', 'fp', 'link-2');">fp</a></tt><tt class="py-op">.</tt><tt id="link-11" class="py-name" targets="Method lldb.formatters.Logger.FileLogger.close()=lldb.formatters.Logger.FileLogger-class.html#close,Method lldb.formatters.Logger.Logger.close()=lldb.formatters.Logger.Logger-class.html#close,Method lldb.formatters.Logger.NopLogger.close()=lldb.formatters.Logger.NopLogger-class.html#close,Method lldb.formatters.Logger.StdoutLogger.close()=lldb.formatters.Logger.StdoutLogger-class.html#close"><a title="lldb.formatters.Logger.FileLogger.close
124 </div><div id="_swig_setattr_nondynamic-collapsed" style="display:none;" pad="+++++" indent="++++"></div><div id="_swig_setattr_nondynamic-expanded"><a name="L60"></a><tt class="py-lineno"> 60</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt id="link-12" class="py-name" targets="Variable lldb.SBBlock.name=lldb.SBBlock-class.html#name,Variable lldb.SBFrame.name=lldb.SBFrame-class.html#name,Variable lldb.SBFunction.name=lldb.SBFunction-class.html#name,Variable lldb.SBSection.name=lldb.SBSection-class.html#name,Variable lldb.SBSymbol.name=lldb.SBSymbol-class.html#name,Variable lldb.SBThread.name=lldb.SBThread-class.html#name,Variable lldb.SBType.name=lldb.SBType-class.html#name,Variable lldb.SBTypeCategory.name=lldb.SBTypeCategory-class.html#name,Variable lldb.SBTypeMember.name=lldb.SBTypeMember-class.html#name,Variable lldb.SBTypeNameSpecifier.name=lldb.SBTypeNameSpecifier-class.html#name,Variable lldb.SBValue.name=lldb.SBValue-class.html#name"><a title="lldb.SBBlock.name
134 lldb.SBValue.name" class="py-name" href="#" onclick="return doclink('link-12', 'name', 'link-12');">name</a></tt> <tt class="py-op">==</tt> <tt class="py-string">"thisown"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">this</tt><tt class="py-op">.</tt><tt class="py-name">own</tt><tt class="py-op">(</tt><tt id="link-13" class="py-name" targets="Variable lldb.SBError.value=lldb.SBError-class.html#value,Variable lldb.SBValue.value=lldb.SBValue-class.html#value,Method lldb.formatters.cpp.gnu_libstdcpp.StdListSynthProvider.value()=lldb.formatters.cpp.gnu_libstdcpp.StdListSynthProvider-class.html#value,Method lldb.formatters.cpp.libcxx.stdlist_SynthProvider.value()=lldb.formatters.cpp.libcxx.stdlist_SynthProvider-class.html#value,Variable lldb.formatters.cpp.libcxx.stdlist_entry.value=lldb.formatters.cpp.libcxx.stdlist_entry-class.html#value,Method lldb.formatters.cpp.libcxx.stdlist_iterator.value()=lldb.formatters.cpp.libcxx.stdlist_iterator-class.html#value,Method lldb.formatters.cpp.libcxx.stdmap_iterator.value()=lldb.formatters.cpp.libcxx.stdmap_iterator-class.html#value,Variable lldb.formatters.cpp.libcxx.stdmap_iterator_node.value=lldb.formatters.cpp.libcxx.stdmap_iterator_node-class.html#value,Class lldb.value=lldb.value-class.html"><a title="lldb.SBError.value
154 <a name="L62"></a><tt class="py-lineno"> 62</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-15" class="py-name" targets="Variable lldb.SBError.type=lldb.SBError-class.html#type,Variable lldb.SBFunction.type=lldb.SBFunction-class.html#type,Variable lldb.SBSection.type=lldb.SBSection-class.html#type,Variable lldb.SBSymbol.type=lldb.SBSymbol-class.html#type,Variable lldb.SBType.type=lldb.SBType-class.html#type,Variable lldb.SBTypeMember.type=lldb.SBTypeMember-class.html#type,Variable lldb.SBValue.type=lldb.SBValue-class.html#type"><a title="lldb.SBError.type
189 <a name="L65"></a><tt class="py-lineno"> 65</tt> <tt class="py-line"> <tt class="py-name">method</tt> <tt class="py-op">=</tt> <tt class="py-name">class_type</tt><tt class="py-op">.</tt><tt id="link-19" class="py-name" targets="Variable lldb.SBAddress.__swig_setmethods__=lldb.SBAddress-class.html#__swig_setmethods__,Variabl (…)
    [all...]
  /external/clang/lib/Frontend/
DependencyFile.cpp 147 std::vector<std::string> Targets;
160 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets),
206 if (Opts.Targets.empty()) {
318 // Write out the dependency targets, trying to avoid overly long
326 I = Targets.begin(), E = Targets.end(); I != E; ++I) {
337 // Targets already quoted as needed.
362 // Create phony targets if requested.
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
SwitchBranchShifter.java 112 // Pick a random one of its targets.
113 int switchTargetIdx = rng.nextInt(switchInsn.targets.size());
116 MInsn oldTargetInsn = switchInsn.targets.get(switchTargetIdx);
164 switchInsn.targets.remove(mutation.switchTargetIdx);
165 switchInsn.targets.add(mutation.switchTargetIdx, newTargetInsn);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
MachineProbe.java 154 // targets) {
157 // // targets can reach themselves
158 // for (final DFAState d : targets) {
173 // // add all reaches from all edge targets
175 // //if ( targets.contains(e.target) ) r.add(e.target);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathBuilderSpi.java 89 Collection targets; local
100 targets = CertPathValidatorUtilities.findCertificates(certSelect, paramsPKIX.getBaseParameters().getCertificateStores());
101 targets.addAll(CertPathValidatorUtilities.findCertificates(certSelect, paramsPKIX.getBaseParameters().getCertStores()));
109 if (targets.isEmpty())
119 targetIter = targets.iterator();
  /external/clang/patches/
0003-Add-support-for-RenderScript-specific-options.patch 13 lib/Basic/Targets.cpp | 2 ++
65 diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp
67 --- a/lib/Basic/Targets.cpp
68 +++ b/lib/Basic/Targets.cpp
  /external/mesa3d/src/gallium/docs/source/cso/
blend.rst 27 performed on all render targets.
30 The blend_enable flag is ignored for all render targets when logical
62 These members affect all render targets.
71 drivers for any reason, and some render targets may always or never be
87 If disabled, blend state is the same for all render targets, and only
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 84 std::vector<std::pair<unsigned, unsigned> > targets; // first is normal, second shadow/comparison member in struct:sm4_to_tgsi_converter
199 unsigned target = shadow ? targets[resource].second : targets[resource].first;
716 if(targets.size() <= (unsigned)idx)
717 targets.resize(idx + 1);
721 targets[idx].first = TGSI_TEXTURE_1D;
722 targets[idx].second = TGSI_TEXTURE_SHADOW1D;
725 targets[idx].first = TGSI_TEXTURE_1D_ARRAY;
726 targets[idx].second = TGSI_TEXTURE_SHADOW1D_ARRAY;
729 targets[idx].first = TGSI_TEXTURE_2D
    [all...]
  /external/webrtc/src/system_wrappers/source/
system_wrappers.gyp 11 'targets': [
156 ], # targets
159 'targets': [
178 'targets': [
212 ], # targets

Completed in 490 milliseconds

<<11121314151617181920>>