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

<<31323334353637383940>>

  /external/clang/tools/clang-format-vs/ClangFormat/
ClangFormat.csproj 218 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
219 <Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
220 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\VSSDK\Microsoft.VsSDK.targets" Condition="false" />
224 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
225 Other similar extension points exist, see Microsoft.Common.targets.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
readme.html 46 All parameters and targets are optional on windows systems. Just running &quot;runtests&quot;
76 test targets. Default is to re-install these between test targets.</td>
94 <p><font size="+1">Test Targets</font></p>
102 <td>Runs all the targets below.</td>
  /external/llvm/include/llvm/Target/
TargetSelectionDAGInfo.h 10 // This file declares the TargetSelectionDAGInfo class, which targets can
26 /// TargetSelectionDAGInfo - Targets can subclass this to parameterize the
43 /// memcpy. This can be used by targets to provide code sequences for cases
67 /// memmove. This can be used by targets to provide code sequences for cases
83 /// memset. This can be used by targets to provide code sequences for cases
  /frameworks/base/core/java/android/service/chooser/
ChooserTarget.java 39 * <p>Creators of chooser targets should consult the relevant design guidelines for the type
40 * of target they are presenting. For example, targets involving people should be presented
83 * to the other targets supplied by the same
86 * Scores for a set of targets do not need to sum to 1.</p>
151 * take this score into account when sorting and merging targets from multiple sources.
  /pdk/apps/TestingCamera2/
README.txt 32 4. Add a request pane, select the desired camera and targets, and the desired use case template.
43 camera characteristics information, for configuring a set of targets, and for stopping or flushing
56 2.2.1. TextureView and SurfaceView targets
68 These are video recording targets, which use the Android device's video encoding APIs to create
81 image output. A given request can send data to any subset of the configured targets, but it
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AndroidPreferencePage.java 191 l.setText("Note: The list of SDK Targets below is only reloaded once you hit 'Apply' or 'OK'.");
199 IAndroidTarget[] targets = sdk != null ? sdk.getTargets() : null; local
202 targets,
238 IAndroidTarget[] targets = sdk != null ? sdk.getTargets() : null; local
240 mTargetSelector.setTargets(targets);
  /external/icu/icu4c/source/i18n/
transreg.cpp 196 * Spec class for sources and targets.
748 Hashtable *targets = (Hashtable*) specDAG.get(source); local
749 return (targets == 0) ? 0 : targets->count();
755 Hashtable *targets = (Hashtable*) specDAG.get(source); local
756 if (targets == 0) {
763 e = targets->nextElement(pos);
778 Hashtable *targets = (Hashtable*) specDAG.get(source); local
779 if (targets == 0) {
782 UVector *variants = (UVector*) targets->get(target)
791 Hashtable *targets = (Hashtable*) specDAG.get(source); local
935 Hashtable *targets = (Hashtable*) specDAG.get(source); local
981 Hashtable *targets = (Hashtable*) specDAG.get(source); local
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/
CodeTranslator.java 380 * the targets of the switch instruction to point to the correct instructions.
401 int[] targets = new int[targetsSize]; local
423 // Now read the targets.
425 targets[i] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes,
433 // Convert our targets[] offsets into pointers to MInsns.
434 for (int target : targets) {
437 switchInsn.targets.add(targetInsn);
446 * targets moved, update all the target offsets in the raw[] form of the instruction.
455 int targetsSize = switchInsn.targets.size();
458 int[] targets = new int[targetsSize] local
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorRegistry.java 77 * Spec class for sources and targets.
438 Map<CaseInsensitiveString, List<CaseInsensitiveString>> targets = specDAG.get(cisrc); local
439 if (targets == null) {
442 return new IDEnumeration(Collections.enumeration(targets.keySet()));
454 Map<CaseInsensitiveString, List<CaseInsensitiveString>> targets = specDAG.get(cisrc); local
455 if (targets == null) {
458 List<CaseInsensitiveString> variants = targets.get(citrg);
543 Map<CaseInsensitiveString, List<CaseInsensitiveString>> targets = specDAG.get(cisrc); local
544 if (targets == null) {
545 targets = Collections.synchronizedMap(new HashMap<CaseInsensitiveString, List<CaseInsensitiveString>>())
576 Map<CaseInsensitiveString, List<CaseInsensitiveString>> targets = specDAG.get(cisrc); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 296 * There can be multiple targets with the same sdk api version, so don't change
308 IAndroidTarget[] targets = sdk.getTargets(); local
309 for (IAndroidTarget t : targets) {
352 IAndroidTarget[] targets = null; local
354 targets = sdk.getTargets();
356 if (targets == null) {
357 targets = new IAndroidTarget[0];
363 for (IAndroidTarget existingTarget : targets) {
375 for (IAndroidTarget existingTarget : targets) {
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 276 // Targets can, or in the case of EmitInstruction, must implement these to
279 /// This virtual method can be overridden by targets that want to emit
283 /// This virtual method can be overridden by targets that want to emit
287 /// Targets can override this to emit stuff before the first basic block in
291 /// Targets can override this to emit stuff after the last basic block in the
295 /// Targets can override this to emit stuff at the start of a basic block.
301 /// Targets can override this to emit stuff at the end of a basic block.
304 /// Targets should implement this to emit instructions.
316 /// Targets can override this to change how global constants that are part of
326 /// Targets can override this to customize the output of IMPLICIT_DE
    [all...]
  /ndk/sources/host-tools/make-3.81/
implicit.c 243 /* The numbers of the rule targets of each rule
325 for (i = 0; rule->targets[i] != 0; ++i)
327 char *target = rule->targets[i];
407 target in MATCHES. If several targets of the same rule match,
423 for (j = 0; tryrules[i]->targets[j] != 0; ++j)
424 if (tryrules[i]->targets[j][1] == '\0')
426 if (tryrules[i]->targets[j] != 0)
469 + (rule->suffixes[matches[i]] - rule->targets[matches[i]]) - 1;
801 file->name = rule->targets[matches[foundrule]];
939 struct file *f = lookup_file (rule->targets[matches[foundrule]])
    [all...]
  /development/ndk/platforms/android-9/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /external/iptables/extensions/
GNUmakefile.in 59 targets := libext.a libext4.a libext6.a matches.man targets.man
64 @ENABLE_STATIC_FALSE@ targets += ${pfx_solibs} ${pf4_solibs} ${pf6_solibs}
71 all: ${targets}
78 rm -f *.o *.oo *.so *.a {matches,targets}.man initext.c initext4.c initext6.c;
225 targets.man: .initext.dd .initext4.dd .initext6.dd $(wildcard ${srcdir}/lib*.man)
  /external/mesa3d/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /external/vixl/
SConstruct 41 Some common build targets are:
235 # The lists of available targets and target names.
236 targets = []
241 targets.append(target)
288 create_alias('all', targets)
290 Help('Available top level targets:\n' + '\t' + '\n\t'.join(target_alias_names) + '\n')
  /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);
  /frameworks/native/opengl/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/EGL/
egl.h 160 /* QueryString targets */
166 /* QuerySurface / SurfaceAttrib / CreatePbufferSurface targets */
183 /* EGL_RENDER_BUFFER values / BindTexImage / ReleaseTexImage buffer targets */
210 /* QueryContext targets */
220 /* BindAPI/QueryAPI targets */
225 /* GetCurrentSurface targets */

Completed in 1134 milliseconds

<<31323334353637383940>>