HomeSort by relevance Sort by last modified time
    Searched defs:Target (Results 1 - 25 of 297) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/annotation/
Target.java 34 * <p>If an {@code @Target} meta-annotation is not present on an annotation type
38 * <p>If an {@code @Target} meta-annotation is present, the compiler will enforce
42 * <p>For example, this {@code @Target} meta-annotation indicates that the
46 * &#064;Target(ElementType.ANNOTATION_TYPE)
52 * <p>This {@code @Target} meta-annotation indicates that the declared type is
56 * &#064;Target({})
63 * appear more than once in an {@code @Target} annotation. For example, the
64 * following {@code @Target} meta-annotation is illegal:
66 * &#064;Target({ElementType.FIELD, ElementType.METHOD, ElementType.FIELD})
73 * @jls 9.6.4.1 @Target
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
TargetSelect.cpp 1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
20 #include "llvm/Target/TargetMachine.h"
27 /// selectTarget - Pick a target either via -march or by guessing the native
41 const Target *TheTarget = 0;
73 errs() << "WARNING: This target JIT is not designed for the host you are"
78 // Package up features to be passed to target/subtarget
87 // Allocate a target...
88 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
91 assert(Target && "Could not allocate target machine!")
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SubtargetEmitter.h 29 std::string Target;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_VarSlope_SetTimeConstant.c 67 LVM_INT32 Target;
73 Target = LVC_Mixer_GetTarget( pStream );
75 if (Current != Target)
77 Tc_millisec = Tc_millisec * 32767 / (Current - Target);
LVC_Core_MixSoft_1St_D16C31_WRA.c 42 LVM_INT32 Target=pInstance->Target;
48 if(Current<Target){
52 if (Current > Target)
53 Current = Target;
65 if (Current > Target)
66 Current = Target;
79 if (Current < Target)
80 Current = Target;
91 if (Current < Target)
    [all...]
LVC_Mixer_Private.h 32 LVM_INT32 Target; /* 32 bit number specifying fractional value of Target Gain */
LVC_Core_MixInSoft_D16C31_SAT.c 42 LVM_INT32 Target=pInstance->Target;
48 if(Current<Target){
52 if (Current > Target)
53 Current = Target;
71 if (Current > Target)
72 Current = Target;
90 if (Current < Target)
91 Current = Target;
108 if (Current < Target)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
TargetTxtClassObject.py 2 # This file is used to define each component of Target.txt file
24 gDefaultTargetTxtFile = "target.txt"
28 # This class defined content used in file target.txt
31 # @param Filename: Input value for full path of target.txt
33 # @var TargetTxtDictionary: To store keys and values defined in target.txt
53 # Load target.txt file and parse it, return a set structure to store keys and values
55 # @param Filename: Input value for full path of target.txt
64 EdkLogger.error("Target.txt Parser", FILE_NOT_FOUND, ExtraData=Filename)
169 # Load target.txt in input Conf dir
173 # @retval Target An instance of TargetTxtClassObject() with loaded target.txt
    [all...]
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
36 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;
66 void resetTarget(Target &targ);
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
10 // This just asks the TargetRegistry for the appropriate target to use, and
23 #include "llvm/Target/TargetMachine.h"
38 /// selectTarget - Pick a target either via -march or by guessing the native
49 const Target *TheTarget = nullptr;
53 [&](const Target &T) { return MArch == T.getName(); });
79 // Package up features to be passed to target/subtarget
95 // Allocate a target...
96 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
101 assert(Target && "Could not allocate target machine!")
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Target.cpp 1 //===- Target.cpp ---------------------------------------------------------===//
9 #include "mcld/Support/Target.h"
16 // Target
18 Target::Target()
27 unsigned int Target::getTripleQuality(const llvm::Triple& pTriple) const {
33 MCLDTargetMachine* Target::createTargetMachine(const std::string& pTriple,
34 const llvm::Target& pTarget,
41 /// createMCLinker - create target-specific MCLinker
42 MCLinker* Target::createMCLinker(const std::string& pTriple
    [all...]
  /libcore/luni/src/test/etc/loading-test-jar/
Target.java 22 public class Target {
26 public Target() {
  /external/skia/bench/
nanobench.h 42 struct Target {
43 explicit Target(const Config& c) : config(c) { }
44 virtual ~Target() { }
49 /** Called once per target, immediately before any timing or drawing. */
71 /** Called once per target, during program initialization.
  /development/vndk/tools/definition-tool/tests/
targets.py 33 class Target(object):
52 cmd.extend(['-target', self.target_triple])
72 cmd.extend(['-target', self.target_triple])
84 'arm': Target('arm', 'arm-linux-androideabi', [],[],
90 'arm64': Target('arm64', 'aarch64-linux-android', [], [],
96 'x86': Target('x86', 'x86_64-linux-android', ['-m32'], ['-m32'],
102 'x86_64': Target('x86_64', 'x86_64-linux-android', ['-m64'], ['-m64'],
108 'mips': Target('mips', 'mipsel-linux-android', [], [],
114 'mips64': Target('mips64', 'mips64el-linux-android',
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
Target.java 1 package com.bumptech.glide.request.target;
23 * null model object. onLoadCleared similarly may never be called if the target is never cleared. See the docs for
27 * @param <R> The type of resource the target can display.
29 public interface Target<R> extends LifecycleListener {
77 * A method to retrieve the size of this target.
79 * @param cb The callback that must be called when the size of the target has been determined
84 * Sets the current request for this target to retain, should not be called outside of Glide.
89 * Retrieves the current request for this target, should not be called outside of Glide.
  /external/llvm/lib/Fuzzer/test/
CustomCrossOverTest.cpp 16 static const char *Target = "012-_^_-abc";
22 if (Str.find(Target) != std::string::npos) {
23 std::cout << "BINGO; Found the target, exiting\n";
  /external/llvm/lib/Support/
Unicode.cpp 352 UTF32 *Target = &buf[0];
353 if (conversionOK != ConvertUTF8toUTF32(&Start, Start + Length, &Target,
354 Target + 1, strictConversion))
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
InMemoryStruct.h 32 /// \brief The smart pointer target.
33 value_type *Target;
35 /// \brief A temporary object which can be used as a target of the smart
42 InMemoryStruct() : Target(0) {}
43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {}
44 InMemoryStruct(pointer Value) : Target(Value) {}
48 if (Value.Target != &Value.Contents) {
49 Target = Value.Target;
51 Target = &Contents
    [all...]
  /external/vogar/src/vogar/
Target.java 30 * A target runtime environment such as a remote device or the local host
32 public abstract class Target {
63 * Create a {@link ScriptBuilder} appropriate for this target.
70 * Responsible for constructing a one line script appropriate for a specific target.
77 * Escape any special shell characters so that the target shell treats them as literal
122 * Set the working directory in the target shell before running the command.
132 * Set inline environment variables on the target shell that will affect the command.
169 * Construct a command line to execute the script in the target shell.
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
AGC.h 46 LVM_INT32 Target; /* The target volume setting */
47 LVM_INT32 AGC_Target; /* AGC target level */
  /frameworks/native/services/surfaceflinger/RenderEngine/
Texture.h 34 enum Target { TEXTURE_2D = 0x0DE1, TEXTURE_EXTERNAL = 0x8D65 };
37 Texture(Target textureTarget, uint32_t textureName);
40 void init(Target textureTarget, uint32_t textureName);
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 105 const TargetInfo &Target = Context.getTargetInfo();
106 TargetInfo::IntType PtrDiff = Target.getPtrDiffType(0);
107 uint64_t Width = Target.getTypeWidth(PtrDiff);
108 unsigned Align = Target.getTypeAlign(PtrDiff);
  /external/clang/test/SemaCXX/
vtable-instantiation.cpp 24 class Target
36 static Target<T> Instance;
40 Target<T> Provider<T>::Instance; // expected-note{{in instantiation of}}
44 Target<int*>* traits = &Provider<int*>::Instance; // expected-note{{requested here}}
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 40 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
50 IntrusiveRefCntPtr<TargetInfo> Target;
97 Target.get());
102 PP.Initialize(*Target);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFI386.h 134 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
141 // The target's 32-bit VA.
155 writeBytesUnaligned(Result, Target, 4);
159 // The target's 32-bit RVA.
172 writeBytesUnaligned(Result, Target, 4);
176 // 32-bit relative displacement to the target.
189 writeBytesUnaligned(Result, Target, 4);
193 // 16-bit section index of the section that contains the target.
201 writeBytesUnaligned(RE.SectionID, Target, 2);
204 // 32-bit offset of the target from the beginning of its section
    [all...]

Completed in 595 milliseconds

1 2 3 4 5 6 7 8 91011>>