HomeSort by relevance Sort by last modified time
    Searched defs:Target (Results 26 - 50 of 533) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4639204/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);
  /prebuilts/clang/host/linux-x86/clang-4691093/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/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.
  /external/skqp/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/gsi/gsi_util/gsi_util/utils/tests/
cmd_utils_unittest.py 35 class Target(object):
36 """The target handler to store log output."""
41 self._handler = handlers.MemoryHandler(capacity=0, target=Target())
  /development/vndk/tools/definition-tool/tests/
ndk_toolchain.py 61 class Target(object):
97 cmd.extend(['-target', self.target_triple])
117 cmd.extend(['-target', self.target_triple])
137 targets['arm'] = Target(
144 targets['arm64'] = Target(
151 targets['x86'] = Target(
158 targets['x86_64'] = Target(
165 targets['mips'] = Target(
172 targets['mips64'] = Target(
194 for name, target in targets.items()
    [all...]
  /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 */
61 LVM_FLOAT Target; /* The target volume setting */
62 LVM_FLOAT AGC_Target; /* AGC target level */
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixInSoft_D16C31_SAT.c 41 LVM_FLOAT Target = pInstance->Target;
47 if(Current < Target){
51 if (Current > Target)
52 Current = Target;
68 if (Current > Target)
69 Current = Target;
85 if (Current < Target)
86 Current = Target;
101 if (Current < Target)
    [all...]
  /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);
  /development/vndk/tools/header-checker/utils/
create_reference_dumps.py 20 class Target(object):
24 'TARGET{}_ARCH'.format(extra),
25 'TARGET{}_ARCH_VARIANT'.format(extra),
26 'TARGET{}_CPU_VARIANT'.format(extra)]
41 lsdump_paths_file = os.path.join(AOSP_DIR, build_vars[0],'target',
51 def get_lib_arch_str(target):
52 assert(target.primary_arch != '')
56 if target.arch_variant != target.arch:
57 target_arch_variant_str = '_' + target.arch_varian
    [all...]
  /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...]
RuntimeDyldCOFFThumb.h 144 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
152 // The target's 32-bit VA.
165 writeBytesUnaligned(Result, Target, 4);
169 // The target's 32-bit RVA.
181 writeBytesUnaligned(Result, Target, 4);
185 // 16-bit section index of the section that contains the target.
193 writeBytesUnaligned(RE.SectionID, Target, 2);
196 // 32-bit offset of the target from the beginning of its section.
204 writeBytesUnaligned(RE.Addend, Target, 2);
207 // 32-bit VA of the target applied to a contiguous MOVW+MOVT pair
    [all...]
  /external/llvm/tools/llvm-pdbdump/
CompilandDumper.cpp 164 uint64_t Target = Symbol.getTargetVirtualAddress();
167 WithColor(Printer, PDB_ColorItem::Address).get() << format_hex(Target, 10);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
PseudoLoweringEmitter.h 46 CodeGenTarget Target;
57 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {}
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 29 enum Type { Alignment, Fillment, Region, Target, Stub, Null };
  /frameworks/compile/mclinker/include/mcld/Support/
Target.h 1 //===- Target.h -----------------------------------------------------------===//
14 class Target;
31 /** \class Target
32 * \brief Target collects target specific information
34 class Target {
41 typedef MCLDTargetMachine* (*TargetMachineCtorTy)(const llvm::Target&,
42 const mcld::Target&,
55 typedef DiagnosticLineInfo* (*DiagnosticLineInfoCtorTy)(const mcld::Target&,
59 Target();
    [all...]
  /development/vndk/tools/vtable-dumper/tests/
test_vndk_vtable_dumper.py 83 class Target(object):
84 """Class representing a target: for eg: x86, arm64 etc"""
105 cmd.extend(['-target', self.target_triple])
121 cmd.extend(['-target', self.target_triple])
133 Target('arm', 'arm-linux-androideabi', [],[],
139 Target('arm64', 'aarch64-linux-android', [], [],
145 Target('mips', 'mipsel-linux-android', [], [],
151 Target('mips64', 'mips64el-linux-android',
159 Target('x86', 'x86_64-linux-android', ['-m32'], ['-m32'],
165 Target('x86_64', 'x86_64-linux-android', ['-m64'], ['-m64']
    [all...]

Completed in 831 milliseconds

12 3 4 5 6 7 8 91011>>