HomeSort by relevance Sort by last modified time
    Searched refs:overrides (Results 1 - 25 of 215) sorted by null

1 2 3 4 5 6 7 8 9

  /external/skia/src/gpu/batches/
GrTestBatch.h 31 GrBatchToXPOverrides* overrides) const override {
37 void initBatchTracker(const GrXPOverridesForBatch& overrides) override {
38 // Handle any color overrides
39 if (!overrides.readsColor()) {
42 overrides.getOverrideColorIfSet(&this->geoData(0)->fColor);
45 fBatch.fColorIgnored = !overrides.readsColor();
47 fBatch.fUsesLocalCoords = overrides.readsLocalCoords();
48 fBatch.fCoverageIgnored = !overrides.readsCoverage();
GrDrawBatch.cpp 27 GrXPOverridesForBatch overrides; local
29 if (!GrPipeline::CreateAt(location, args, &overrides)) {
33 this->initBatchTracker(overrides);
GrAAFillRectBatch.cpp 49 const GrXPOverridesForBatch& overrides,
58 } else*/ if (overrides.canTweakAlphaForCoverage()) {
70 LocalCoords localCoords(overrides.readsLocalCoords() ? localCoordsType :
82 const GrXPOverridesForBatch& overrides,
143 bool tweakAlphaForCoverage = overrides.canTweakAlphaForCoverage();
230 const GrXPOverridesForBatch& overrides) {
234 return !overrides.readsLocalCoords() || mine.fViewMatrix.cheapEqualTo(theirs.fViewMatrix);
238 const GrXPOverridesForBatch& overrides) {
240 create_fill_rect_gp(geo.fViewMatrix, overrides,
243 SkASSERT(overrides.canTweakAlphaForCoverage()
    [all...]
GrTInstanceBatch.h 35 * const GrXPOverridesForBatch& overrides)
40 * const GrXPOverridesForBatch& overrides)
64 GrBatchToXPOverrides* overrides) const override {
70 void initBatchTracker(const GrXPOverridesForBatch& overrides) override {
71 overrides.getOverrideColorIfSet(&fGeoData[0].fColor);
72 fOverrides = overrides;
GrNonAAStrokeRectBatch.cpp 59 GrBatchToXPOverrides* overrides) const override {
165 void initBatchTracker(const GrXPOverridesForBatch& overrides) override {
166 // Handle any color overrides
167 if (!overrides.readsColor()) {
170 overrides.getOverrideColorIfSet(&fGeoData[0].fColor);
173 fBatch.fColorIgnored = !overrides.readsColor();
175 fBatch.fUsesLocalCoords = overrides.readsLocalCoords();
176 fBatch.fCoverageIgnored = !overrides.readsCoverage();
GrAtlasTextBatch.cpp 48 GrBatchToXPOverrides* overrides) const {
69 void GrAtlasTextBatch::initBatchTracker(const GrXPOverridesForBatch& overrides) {
70 // Handle any color overrides
71 if (!overrides.readsColor()) {
74 overrides.getOverrideColorIfSet(&fGeoData[0].fColor);
77 fBatch.fColorIgnored = !overrides.readsColor();
79 fBatch.fUsesLocalCoords = overrides.readsLocalCoords();
80 fBatch.fCoverageIgnored = !overrides.readsCoverage();
GrDrawPathBatch.h 24 GrBatchToXPOverrides* overrides) const override {
42 const GrXPOverridesForBatch& overrides() const { return fOverrides; } function in class:GrDrawPathBatchBase
47 void initBatchTracker(const GrXPOverridesForBatch& overrides) override {
48 overrides.getOverrideColorIfSet(&fColor);
49 fOverrides = overrides;
  /external/skia/src/gpu/
GrPathProcessor.h 20 const GrXPOverridesForBatch& overrides,
23 return new GrPathProcessor(color, overrides, viewMatrix, localMatrix);
41 const GrXPOverridesForBatch& overrides() const { return fOverrides; } function in class:GrPathProcessor
46 GrPathProcessor(GrColor color, const GrXPOverridesForBatch& overrides,
GrPathProcessor.cpp 24 b->add32(SkToInt(pathProc.overrides().readsColor()) |
25 (SkToInt(pathProc.overrides().readsCoverage()) << 1) |
41 if (pathProc.overrides().readsColor()) {
52 if (pathProc.overrides().readsCoverage()) {
87 if (pathProc.overrides().readsColor() && pathProc.color() != fColor) {
126 const GrXPOverridesForBatch& overrides,
132 , fOverrides(overrides) {
GrPipeline.cpp 20 GrXPOverridesForBatch* overrides) {
119 overrides->fFlags = 0;
121 overrides->fFlags |= GrXPOverridesForBatch::kReadsColor_Flag;
124 overrides->fFlags |= GrXPOverridesForBatch::kUseOverrideColor_Flag;
125 overrides->fOverrideColor = overrideColor;
128 overrides->fFlags |= GrXPOverridesForBatch::kReadsCoverage_Flag;
131 overrides->fFlags |= GrXPOverridesForBatch::kReadsLocalCoords_Flag;
134 overrides->fFlags |= GrXPOverridesForBatch::kCanTweakAlphaForCoverage_Flag;
147 overrides->fFlags |= GrXPOverridesForBatch::kWillColorBlendWithDst_Flag;
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsManager.java 38 // Cached computed overrides for carrier configuration values
79 * Note: if system MMS API is used, this is used to compute the overrides
111 * Note: if system MMS API is used, this is used to compute the overrides
172 * Get carrier configuration values overrides when platform MMS API is called.
177 * @return a Bundle containing the overrides
181 // If MMS API is not present, it is not necessary to compute overrides
184 Bundle overrides = null; local
186 overrides = sConfigOverridesMap.get(subId);
187 if (overrides == null) {
188 overrides = new Bundle()
    [all...]
  /external/autotest/server/cros/faft/config/
config.py 16 by FAFT tests, including device specific overrides.
19 the config package and the overrides come from module files named
30 Attribute requests will first be searched through the overrides (if it
47 # Overrides are optional, and not an error.
50 overrides = __import__(config_name, globals(), locals())
51 overrides = overrides.Values()
52 # Add overrides to the first position in the list
53 self._precedence_list.insert(0, overrides)
55 logging.debug("No config overrides found for platform: %s."
    [all...]
  /external/emma/core/java12/com/vladium/emma/
Processor.java 74 * @param overrides [may be null (unsets the previous overrides)]
76 public synchronized final void setPropertyOverrides (final Properties overrides)
78 m_propertyOverrides = EMMAProperties.wrap (overrides);
83 * @param overrides [may be null (unsets the previous overrides)]
85 public synchronized final void setPropertyOverrides (final IProperties overrides)
87 m_propertyOverrides = overrides;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86-64-segovr.s 1 # 64bit segment overrides
  /build/kati/testcase/
override_export.mk 1 # TODO(c|ninja): it overrides "export A" and exports(?) "override B"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
attr-override-cpu-directive.d 1 # name: EABI attributes .eabi_attribute overrides .cpu
attr-override-mcpu.d 1 # name: EABI attributes .cpu overrides -mcpu
  /frameworks/av/media/libstagefright/
MediaCodecListOverrides.cpp 389 AString overrides; local
390 overrides.append(getProfilingVersionString());
391 overrides.append("\n");
392 overrides.append("<MediaCodecs>\n");
394 overrides.append(" <Settings>\n");
395 overrides.append(globalResultsToXml(global_results));
396 overrides.append(" </Settings>\n");
399 overrides.append(" <Encoders>\n");
400 overrides.append(codecResultsToXml(encoder_results));
401 overrides.append(" </Encoders>\n")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 178 // -- setup the required attributes overrides --
183 // -- setup the various attribute format overrides --
188 Map<String, ITextAttributeCreator> overrides = new HashMap<String, ITextAttributeCreator>(); local
190 overrides.put("*/icon", ReferenceAttributeDescriptor.CREATOR); //$NON-NLS-1$
192 overrides.put("*/theme", ThemeAttributeDescriptor.CREATOR); //$NON-NLS-1$
193 overrides.put("*/permission", ListAttributeDescriptor.CREATOR); //$NON-NLS-1$
194 overrides.put("*/targetPackage", ManifestPkgAttrDescriptor.CREATOR); //$NON-NLS-1$
196 overrides.put("uses-library/name", ListAttributeDescriptor.CREATOR); //$NON-NLS-1$
197 overrides.put("action,category,uses-permission/" + ANDROID_NAME_ATTR, //$NON-NLS-1$
200 overrideClassName(overrides, "application", //$NON-NLS-1
    [all...]
  /external/guice/core/src/com/google/inject/util/
Modules.java 76 * <p>Prefer to write smaller modules that can be reused and tested without overrides.
96 * <p>Prefer to write smaller modules that can be reused and tested without overrides.
141 Module with(Module... overrides);
146 Module with(Iterable<? extends Module> overrides);
156 public Module with(Module... overrides) {
157 return with(Arrays.asList(overrides));
160 public Module with(Iterable<? extends Module> overrides) {
161 return new OverrideModule(overrides, baseModules);
166 private final ImmutableSet<Module> overrides; field in class:Modules.OverrideModule
169 OverrideModule(Iterable<? extends Module> overrides, ImmutableSet<Module> baseModules)
    [all...]
  /external/autotest/client/bin/
kernel_config.py 62 # 2. Apply overrides
75 over_config = '' # config file + overrides
79 overrides, defconfig = False, name = None, make = None):
112 # 2. Apply overrides
113 if overrides:
114 print "kernel_config: using " + overrides + \
118 utils.get_file(overrides, overrides_local)
  /external/chromium-trace/catapult/telemetry/telemetry/wpr/
archive_info_unittest.py 56 self.overrides = system_stub.Override(archive_info, ['cloud_storage'])
60 self.overrides.Restore()
64 cloud_storage.CalculateHash = self.overrides.cloud_storage.CalculateHash
73 cloud_storage_stub = self.overrides.cloud_storage
114 cloud_storage_stub = self.overrides.cloud_storage
133 cloud_storage_stub = self.overrides.cloud_storage
194 self.overrides.cloud_storage.SetCalculatedHashesForTesting(hash_dictionary)
  /external/wpa_supplicant_8/src/utils/
radiotap_iter.h 46 * @overrides: override standard radiotap fields
47 * @n_overrides: number of overrides
74 const struct radiotap_override *overrides; member in struct:ieee80211_radiotap_iterator
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ICUJDKCompare.java 421 MorC[] overrides; field in class:ICUJDKCompare.MethodRecord
424 overrides = new MorC[] { m };
428 overrides = ms;
432 return new MethodRecord((MorC[])overrides.clone());
436 for (int i = 0; i < overrides.length; ++i) {
437 if (overrides[i] == null) {
441 return overrides.length;
445 MorC[] temp = new MorC[overrides.length + 1];
446 for (int i = 0; i < overrides.length; ++i) {
447 temp[i] = overrides[i]
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 367 * @param {Object} [overrides] additional properties/methods to add to the
372 extend: function(subc, superc, overrides) {
386 if (overrides) {
387 for (var i in overrides) {
388 subc.prototype[i]=overrides[i];
391 org.antlr.lang._IEEnumFix(subc.prototype, overrides);

Completed in 2512 milliseconds

1 2 3 4 5 6 7 8 9