HomeSort by relevance Sort by last modified time
    Searched defs:domain (Results 76 - 100 of 344) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/gpu/effects/
GrBicubicEffect.cpp 29 const GrTextureDomain& domain = drawEffect.castEffect<GrBicubicEffect>().domain(); local
30 return GrTextureDomain::GLDomain::DomainKey(domain);
54 const GrTextureDomain& domain = drawEffect.castEffect<GrBicubicEffect>().domain(); local
98 fDomain.sampleTexture(builder, domain, sampleVar.c_str(), coord, samplers[0]);
116 fDomain.setData(uman, effect.domain(), texture.origin());
140 const SkRect& domain)
143 , fDomain(domain, GrTextureDomain::kClamp_Mode) {
GrTextureDomain.cpp 15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index)
19 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
27 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
29 SkASSERT(domain.fLeft <= domain.fRight);
30 SkASSERT(domain.fTop <= domain.fBottom);
31 fDomain.fLeft = SkMaxScalar(domain.fLeft, kFullRect.fLeft);
32 fDomain.fRight = SkMinScalar(domain.fRight, kFullRect.fRight);
33 fDomain.fTop = SkMaxScalar(domain.fTop, kFullRect.fTop)
82 const char* domain = fDomainName.c_str(); local
177 const GrTextureDomain& domain = effect.textureDomain(); local
186 const GrTextureDomain& domain = effect.textureDomain(); local
192 const GrTextureDomain& domain = drawEffect.castEffect<GrTextureDomainEffect>().textureDomain(); local
264 SkRect domain; local
    [all...]
GrTextureDomain.h 18 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped
19 * the edge of the domain or result in a vec4 of zeros (decal mode). The domain is clipped to
21 * domain to affect the read value unless the caller considers this when calculating the domain.
26 kIgnore_Mode, // Ignore the texture domain rectangle.
27 kClamp_Mode, // Clamp texture coords to the domain rectangle.
28 kDecal_Mode, // Treat the area outside the domain rectangle as fully transparent.
44 GrTextureDomain(const SkRect& domain, Mode, int index = -1)
46 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
    [all...]
  /external/chromium_org/third_party/skia/tests/
ResourceCacheTest.cpp 109 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
114 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
144 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
150 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
190 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
196 GrResourceKey key1(GrCacheID(domain, key1Data), t, 0);
201 GrResourceKey key2(GrCacheID(domain, key2Data), t, 0)
    [all...]
  /external/dnsmasq/src/
dbus.c 105 char *domain; local
175 dbus_message_iter_get_basic(&iter, &domain);
179 domain = NULL;
188 if (!(serv->flags & SERV_HAS_DOMAIN) && !domain)
194 domain &&
195 hostname_isequal(domain, serv->domain))
207 if (domain)
208 serv->domain = whine_malloc(strlen(domain)+1)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularContiguousSet.java 37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
38 super(domain);
45 .asSet(domain);
50 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
57 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
63 .asSet(domain);
72 return equalsOrThrow(previous, last) ? null : domain.next(previous);
86 return range.lowerBound.leastValueAbove(domain);
90 return range.upperBound.greatestValueBelow(domain);
94 long distance = domain.distance(first(), last())
    [all...]
  /external/javassist/src/main/javassist/
Loader.java 140 private ProtectionDomain domain; field in class:Loader
188 domain = null;
208 * Sets the protection domain for the classes handled by this class
209 * loader. Without registering an appropriate protection domain,
214 domain = d;
378 if (domain == null)
381 return defineClass(name, classfile, 0, classfile.length, domain);
  /external/libvorbis/doc/
04-codec.tex 102 codebook configurations, time-domain transform configurations
120 \paragraph{Time domain transforms}
570 domain PCM audio via an inverse Modified Discrete Cosine Transform
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_dma.c 334 uint32_t domain; local
335 int ret = radeon_bo_is_busy(bo, &domain);
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
UrlTextExample.java 45 * Uses a custom event receiver to emit the domain of a link or inline image
50 /** An event receiver that emits the domain of a link or image after it. */
83 String domain = domainOf(url); local
84 if (domain != null) {
85 trailingText = " - " + domain;
140 // The domain appender forwards events to the HTML renderer,
162 * The domain (actually authority component) of an HTML5 URL.
  /external/skia/src/effects/
SkGpuBlurUtils.cpp 173 SkRect domain; local
174 matrix.mapRect(&domain, rect);
175 domain.inset(i < scaleFactorX ? SK_ScalarHalf / srcTexture->width() : 0.0f,
180 domain,
  /external/skia/src/gpu/effects/
GrBicubicEffect.cpp 29 const GrTextureDomain& domain = drawEffect.castEffect<GrBicubicEffect>().domain(); local
30 return GrTextureDomain::GLDomain::DomainKey(domain);
54 const GrTextureDomain& domain = drawEffect.castEffect<GrBicubicEffect>().domain(); local
98 fDomain.sampleTexture(builder, domain, sampleVar.c_str(), coord, samplers[0]);
116 fDomain.setData(uman, effect.domain(), texture.origin());
140 const SkRect& domain)
143 , fDomain(domain, GrTextureDomain::kClamp_Mode) {
GrTextureDomain.cpp 15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index)
19 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
27 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
29 SkASSERT(domain.fLeft <= domain.fRight);
30 SkASSERT(domain.fTop <= domain.fBottom);
31 fDomain.fLeft = SkMaxScalar(domain.fLeft, kFullRect.fLeft);
32 fDomain.fRight = SkMinScalar(domain.fRight, kFullRect.fRight);
33 fDomain.fTop = SkMaxScalar(domain.fTop, kFullRect.fTop)
82 const char* domain = fDomainName.c_str(); local
177 const GrTextureDomain& domain = effect.textureDomain(); local
186 const GrTextureDomain& domain = effect.textureDomain(); local
192 const GrTextureDomain& domain = drawEffect.castEffect<GrTextureDomainEffect>().textureDomain(); local
264 SkRect domain; local
    [all...]
GrTextureDomain.h 18 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped
19 * the edge of the domain or result in a vec4 of zeros (decal mode). The domain is clipped to
21 * domain to affect the read value unless the caller considers this when calculating the domain.
26 kIgnore_Mode, // Ignore the texture domain rectangle.
27 kClamp_Mode, // Clamp texture coords to the domain rectangle.
28 kDecal_Mode, // Treat the area outside the domain rectangle as fully transparent.
44 GrTextureDomain(const SkRect& domain, Mode, int index = -1)
46 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
    [all...]
  /external/skia/tests/
ResourceCacheTest.cpp 109 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
114 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
144 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
150 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
190 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
196 GrResourceKey key1(GrCacheID(domain, key1Data), t, 0);
201 GrResourceKey key2(GrCacheID(domain, key2Data), t, 0)
    [all...]
  /external/smack/src/org/xbill/DNS/spi/
DNSJavaNameService.java 40 private static final String domainProperty = "sun.net.spi.nameservice.domain";
50 * <b>sun.net.spi.nameservice.domain</b>, and
56 String domain = System.getProperty(domainProperty); local
75 if (domain != null) {
77 Lookup.setDefaultSearchPath(new String[] {domain});
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
SharedStorageAgent.java 55 String domain = FullBackup.SHARED_PREFIX + i; local
56 fullBackupFileTree(null, domain, v.getPath(), externalFilesDirFilter, output);
66 int type, String domain, String relpath, long mode, long mtime)
68 if (DEBUG) Slog.d(TAG, "Shared restore: [ " + domain + " : " + relpath + "]");
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
SearchBaseUrlHelper.java 40 "https://www.google.com/searchdomaincheck?format=domain";
98 * @return the search domain. This is of the form "google.co.xx" or "google.com",
102 String domain = mSearchSettings.getSearchBaseDomain(); local
104 if (domain == null) {
106 Log.w(TAG, "Search base domain was null, last apply time=" +
113 // option is unchecked. In other cases, the previously set domain (or
116 // We have no choice in this case but to use the default search domain.
117 domain = getDefaultBaseDomain();
120 if (domain.startsWith(".")) {
121 if (DBG) Log.d(TAG, "Prepending www to " + domain);
138 String domain; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
cciss_ioctl.h 31 unsigned short domain; member in struct:_cciss_pci_info_struct
  /cts/tests/tests/mediastress/jni/
native-media-jni.cpp 215 XAuint32 domain; local
216 res = (*caller)->QueryStreamType(caller, streamIndex, &domain);
218 switch (domain) {
228 ALOGE("Unexpected domain %u\n", domain);
  /cts/tests/tests/security/src/android/security/cts/
SELinuxDomainTest.java 38 * Verify that the processes running within an SELinux domain are sane.
46 * Asserts that no processes are running in a domain.
48 * @param domain
49 * The domain or SELinux context to check.
51 private void assertDomainEmpty(String domain) throws FileNotFoundException {
52 List<ProcessDetails> procs = ProcessDetails.getProcessMap().get(domain);
53 String msg = "Expected no processes in SELinux domain \"" + domain + "\""
59 * Asserts that a domain exists and that only one, well defined, process is
60 * running in that domain
272 String domain = "u:r:kernel:s0"; local
    [all...]
  /development/ndk/platforms/android-14/samples/native-media/jni/
native-media-jni.c 220 XAuint32 domain; local
221 res = (*caller)->QueryStreamType(caller, streamIndex, &domain);
223 switch (domain) {
233 fprintf(stderr, "Unexpected domain %u\n", domain);
  /development/ndk/platforms/android-L/include/linux/
cciss_ioctl.h 31 unsigned short domain; member in struct:_cciss_pci_info_struct
  /external/aac/libSBRdec/src/
env_dec.cpp 644 \brief Convert each envelope value from logarithmic to linear domain
745 int i, domain, no_of_bands, band, freqRes; local
753 domain = h_sbr_data->domain_vec[i];
762 if (domain == 0)
  /external/chromium_org/base/win/
win_util.cc 353 // domain will only kick in on a restart.
355 LPWSTR domain; local
357 if(::NetGetJoinInformation(NULL, &domain, &join_status) != NERR_Success)
359 ::NetApiBufferFree(domain);

Completed in 1595 milliseconds

1 2 34 5 6 7 8 91011>>