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

  /external/chromium/chrome/common/
launchd_mac.h 22 enum Domain {
54 virtual bool RestartJob(Domain domain,
61 virtual CFMutableDictionaryRef CreatePlistFromFile(Domain domain,
66 virtual bool WritePlistToFile(Domain domain,
73 virtual bool DeletePlist(Domain domain, Type type, CFStringRef name);
  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 23 unsigned Domain = MCID.TSFlags & ARMII::DomainMask;
29 if ((Domain & ARMII::DomainVFP) || (Domain & ARMII::DomainNEON))
MLxExpansionPass.cpp 187 unsigned Domain = MCID.TSFlags & ARMII::DomainMask;
193 if ((Domain & ARMII::DomainVFP) || (Domain & ARMII::DomainNEON))
351 unsigned Domain = MCID.TSFlags & ARMII::DomainMask;
352 if (Domain == ARMII::DomainGeneral) {
ARMBaseInstrInfo.cpp     [all...]
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 25 * <li>&lt;servicedomain&gt;.&lt;parentdomain&gt;: This is the domain scope of the service typically "local.", but this can also be something similar to "in-addr.arpa." or "ip6.arpa."</li>
45 * Domain Field.
47 Domain,
382 * dictionary of values to build the fully qualified service name. Mandatory keys are Application and Instance. The Domain default is local, the Protocol default is tcp and the subtype default is none.
679 * Returns the domain of the service info suitable for printing.
681 * @return service domain
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 19 // This pass changes the variant instructions to minimize domain crossings.
39 /// execution domain. Multiple registers may refer to the same open
41 /// domain.
47 /// domain, but if we were forced to pay the penalty of a domain crossing, we
72 // Is domain available?
73 bool hasDomain(unsigned domain) const {
74 return AvailableDomains & (1u << domain);
77 // Mark domain as available.
78 void addDomain(unsigned domain) {
567 unsigned domain = CountTrailingZeros_32(available); local
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
unroll1.cpp 38 class Domain : public DomainBase<DT>
101 class Interval : public Domain<DomainTraits<Interval> >
104 Interval(const Interval &a) : Domain<DomainTraits<Interval> >() {
110 Interval(int a) : Domain<DomainTraits<Interval> >()
145 class Loc : public Domain<DomainTraits<Loc> >
148 explicit Loc(const int &a) : Domain<DomainTraits<Loc> >() {
365 const Interval &domain() const function in class:DomainLayout
377 explicit BrickBase(const Interval &domain);
390 firsts_m = layout_m.domain()[0].first();
  /ndk/tests/device/test-stlport_static-exception/jni/
unroll1.cpp 38 class Domain : public DomainBase<DT>
101 class Interval : public Domain<DomainTraits<Interval> >
104 Interval(const Interval &a) : Domain<DomainTraits<Interval> >() {
110 Interval(int a) : Domain<DomainTraits<Interval> >()
145 class Loc : public Domain<DomainTraits<Loc> >
148 explicit Loc(const int &a) : Domain<DomainTraits<Loc> >() {
365 const Interval &domain() const function in class:DomainLayout
377 explicit BrickBase(const Interval &domain);
390 firsts_m = layout_m.domain()[0].first();
  /external/chromium/net/base/
cookie_monster.h 44 // - Verify that our domain enforcement and non-dotted handling is correct
53 // * The 'top level domain' (TLD) of an internet domain name is
56 // * The 'effective top level domain' (eTLD) is the longest
57 // "." initiated terminal substring of an internet domain name
58 // that is controlled by a general domain registrar.
60 // * The 'effective top level domain plus one' (eTLD+1) is the
62 // domain name that is not controlled by a general domain
77 // (default), then the key is based on the effective domain of th
    [all...]
  /external/skia/include/gpu/
GrTypes.h 474 * the domain and the key. Domains simply allow multiple clients to use 0-based indices as their
475 * cache key without colliding. The key uniquely identifies a GrResource within the domain.
476 * Users of the cache must obtain a domain via GenerateDomain().
480 typedef uint8_t Domain;
496 * Initialize the cache ID to a domain and key.
498 GrCacheID(Domain domain, const Key& key) {
499 GrAssert(kInvalid_Domain != domain);
500 this->reset(domain, key);
503 void reset(Domain domain, const Key& key)
    [all...]

Completed in 829 milliseconds