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

  /external/opencv3/samples/winrt/ImageManipulations/common/
suspensionmanager.h 22 namespace Common
LayoutAwarePage.h 17 namespace Common
  /external/clang/test/CodeGen/
pr19841.cpp 3 namespace Common {
18 Common::RenderMode _configRenderMode;
22 0 == Common::kRenderCGA || _vm->_configRenderMode == Common::kRenderEGA
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
objclass.py 25 """Factory function for creating common permission set objects."""
27 if isinstance(name, Common):
31 return Common(policy, name)
34 return Common(policy, qpol.qpol_common_t(policy, str(name)))
36 raise exception.InvalidCommon("{0} is not a valid common".format(name))
54 class Common(symbol.PolicySymbol):
56 """A common permission set."""
63 """The list of the common's permissions."""
67 return "common {0}\n{{\n\t{1}\n}}".format(self, '\n\t'.join(self.perms))
70 class ObjClass(Common)
84 def common(self): member in class:ObjClass
    [all...]
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
Common.java 21 public final class Common {
  /external/libvorbis/doc/
04-codec.tex 26 \subsubsection{Common header decode}
543 One point is worth mentioning about this dot product; a common mistake
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 126 enum Type { File, Local, LocalDyn, Common, Dynamic, Regular };
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Common.java 10 * This class stores common constants and methods.
12 public class Common {
98 double[] randomFrequencies = new double[Common.REPETITIONS * originalFrequencies.length];
111 double frequency = Common.MIN_FREQUENCY_HZ;
112 while (frequency <= Common.MAX_FREQUENCY_HZ) {
115 frequency += Common.FREQUENCY_STEP_HZ;
117 frequency += Common.FREQUENCY_STEP_HZ * 10;
HifiUltrasoundTestActivity.java 160 + Common.PREFIX_LENGTH_S
161 + Common.PAUSE_BEFORE_PREFIX_DURATION_S
162 + Common.PAUSE_AFTER_PREFIX_DURATION_S
163 + Common.PIP_NUM * (Common.PIP_DURATION_S + Common.PAUSE_DURATION_S)
164 * Common.REPETITIONS));
220 Double[] frequencies = new Double[Common.PIP_NUM];
221 for (int i = 0; i < Common.PIP_NUM; i++) {
222 frequencies[i] = new Double(Common.FREQUENCIES_ORIGINAL[i])
    [all...]
HifiUltrasoundSpeakerTestActivity.java 178 + Common.PREFIX_LENGTH_S
179 + Common.PAUSE_BEFORE_PREFIX_DURATION_S
180 + Common.PAUSE_AFTER_PREFIX_DURATION_S
181 + Common.PIP_NUM * (Common.PIP_DURATION_S + Common.PAUSE_DURATION_S)
182 * Common.REPETITIONS));
259 Double[] frequencies = new Double[Common.PIP_NUM];
260 for (int i = 0; i < Common.PIP_NUM; i++) {
261 frequencies[i] = new Double(Common.FREQUENCIES_ORIGINAL[i])
    [all...]
  /external/clang/lib/Driver/
Tools.h 147 class LLVM_LIBRARY_VISIBILITY Common : public GnuTool {
149 Common(const char *Name, const char *ShortName, const ToolChain &TC)
163 class LLVM_LIBRARY_VISIBILITY Preprocessor : public Common {
166 : Common("gcc::Preprocessor", "gcc preprocessor", TC) {}
175 class LLVM_LIBRARY_VISIBILITY Compiler : public Common {
177 Compiler(const ToolChain &TC) : Common("gcc::Compiler", "gcc frontend", TC) {}
186 class LLVM_LIBRARY_VISIBILITY Linker : public Common {
188 Linker(const ToolChain &TC) : Common("gcc::Linker", "linker (via gcc)", TC) {}
    [all...]
  /external/llvm/include/llvm/MC/
SectionKind.h 10 // This file implements classes used to handle lowerings specific to common
97 /// Common - Data with common linkage. These represent tentative
100 Common,
158 bool isCommon() const { return K == Common; }
193 static SectionKind getCommon() { return get(Common); }
  /external/llvm/lib/CodeGen/
LiveRangeCalc.cpp 78 // A Mask for subregs common to the existing subrange and current def.
79 LaneBitmask Common = S.LaneMask & Mask;
80 if (Common == 0)
86 // Split current subrange into Common and LRest ranges.
88 CommonRange = LI.createSubRangeFrom(*Alloc, Common, S);
90 assert(Common == S.LaneMask);
95 Mask &= ~Common;
RegisterCoalescer.cpp 11 // is used as the common interface used by all clients and
807 LaneBitmask Common = BMask & AMask;
808 if (Common == 0)
812 << " into " << PrintLaneMask(Common) << '\n');
819 // Duplicate SubRange for newly merged common stuff.
820 CommonRange = IntB.createSubRangeFrom(Allocator, Common, SB);
823 SB.LaneMask = Common;
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 577 /// DCA(A,B) is the deepest common ancestor of A and B.
748 unsigned Common = GetDeepestCommonScope(JumpScope, TargetScope);
751 // Walk out the scope chain until we reach the common ancestor.
752 for (unsigned I = JumpScope; I != Common; I = Scopes[I].ParentScope)
761 for (unsigned I = TargetScope; I != Common; I = Scopes[I].ParentScope)
791 // Common case: exactly the same scope, which is fine.
    [all...]
SemaLookup.cpp 78 // Sort by the pointer value of the common ancestor.
182 // Find the common ancestor between the effective context and
184 DeclContext *Common = UD->getNominatedNamespace();
185 while (!Common->Encloses(EffectiveDC))
186 Common = Common->getParent();
187 Common = Common->getPrimaryContext();
189 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common));
    [all...]
  /external/skia/src/core/
SkImageFilter.cpp 107 SkImageFilter::Common::~Common() {
113 void SkImageFilter::Common::allocInputs(int count) {
119 void SkImageFilter::Common::detachInputs(SkImageFilter** inputs) {
125 bool SkImageFilter::Common::unflatten(SkReadBuffer& buffer, int expectedCount) {
186 Common common; local
187 if (common.unflatten(buffer, inputCount)) {
188 fCropRect = common.cropRect();
189 fInputCount = common.inputCount()
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 24 * - Desc - Defined, Reference, Common or Indirect
68 enum Desc { Undefined = 0, Define = 1, Common = 2, Indirect = 3, NoneDesc };
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 185 /// Get the list of partial specializations from a template's common ptr.
187 decltype(T::PartialSpecializations) &getPartialSpecializations(T *Common) {
188 return Common->PartialSpecializations;
190 ArrayRef<Decl> getPartialSpecializations(FunctionTemplateDecl::Common *) {
196 auto *Common = D->getCommonPtr();
202 Common->LazySpecializations) {
204 assert(!Common->LazySpecializations);
207 auto &Specializations = Common->Specializations;
208 auto &&PartialSpecializations = getPartialSpecializations(Common);
210 if (auto *LS = Common->LazySpecializations
    [all...]
  /external/clang/include/clang/AST/
DeclTemplate.h 696 /// \brief Pointer to the common data shared by all declarations of this
698 mutable CommonBase *Common;
700 /// \brief Retrieves the "common" pointer shared by all (re-)declarations of
702 /// for the common pointer.
712 Common() {}
837 /// \brief Data that is common to all of the declarations of a given
839 struct Common : CommonBase {
840 Common() : InjectedArgs(), LazySpecializations() { }
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 57 | Common
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ksmedia.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h     [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 899 milliseconds