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

1 2 3 4 5 6 7 8 91011>>

  /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/toolchain-utils/binary_search_tool/
bisect.py 26 def __init__(self, options, overrides=None):
31 overrides: optional dict of overrides for argument defaults
34 self.overrides = overrides
35 if not overrides:
36 self.overrides = {}
40 def _PrettyPrintArgs(self, args, overrides):
67 overrides: The dict of overriden arguments provided by the user. This is
93 changed_str = '*' if key in overrides else '
    [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
  /external/skia/tools/gpu/
GrContextFactory.cpp 102 GrContext* GrContextFactory::get(ContextType type, ContextOverrides overrides) {
103 return this->getContextInfo(type, overrides).grContext();
106 ContextInfo GrContextFactory::getContextInfoInternal(ContextType type, ContextOverrides overrides,
114 context.fOverrides == overrides &&
185 ContextOverrides::kRequireNVPRSupport & overrides, glShareContext);
206 if (ContextOverrides::kRequireNVPRSupport & overrides) {
240 if (ContextOverrides::kRequireNVPRSupport & overrides) {
256 if (ContextOverrides::kDisableNVPR & overrides) {
259 if (ContextOverrides::kUseInstanced & overrides) {
262 if (ContextOverrides::kAllowSRGBWithoutDecodeControl & overrides) {
    [all...]
GrContextFactory.h 54 * Overrides for the initial GrContextOptions provided at construction time, and required
140 ContextOverrides overrides = ContextOverrides::kNone);
144 * overrides. To get multiple contexts in a single share group, pass the same shareContext,
152 GrContext* get(ContextType type, ContextOverrides overrides = ContextOverrides::kNone);
156 ContextInfo getContextInfoInternal(ContextType type, ContextOverrides 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 319 AString overrides; local
320 overrides.append(getProfilingVersionString());
321 overrides.append("\n");
322 overrides.append("<MediaCodecs>\n");
324 overrides.append(" <Settings>\n");
325 overrides.append(globalResultsToXml(global_results));
326 overrides.append(" </Settings>\n");
329 overrides.append(" <Encoders>\n");
330 overrides.append(codecResultsToXml(encoder_results));
331 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/skia/dm/
DMGpuSupport.h 34 sk_gpu_test::GrContextFactory::ContextOverrides overrides,
40 return SkSurface::MakeRenderTarget(grFactory->get(type, overrides), SkBudgeted::kNo,
  /external/libmojo/base/
path_service.cc 115 PathMap overrides; // Track path overrides. member in struct:base::__anon23660::PathData
151 // Tries to find |key| in the overrides map. |path_data| should be locked by the
155 PathMap::const_iterator it = path_data->overrides.find(key);
156 if (it != path_data->overrides.end()) {
265 path_data->overrides[key] = file_path;
277 if (path_data->overrides.find(key) == path_data->overrides.end())
284 path_data->overrides.erase(key);
  /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
radiotap.c 121 iterator->overrides = NULL;
193 if (!iterator->overrides)
197 if (iterator->_arg_index == iterator->overrides[i].field) {
198 *align = iterator->overrides[i].align;
199 *size = iterator->overrides[i].size;
  /prebuilts/go/darwin-x86/src/net/
hook.go 10 // if non-nil, overrides dialTCP.
  /prebuilts/go/linux-x86/src/net/
hook.go 10 // if non-nil, overrides dialTCP.
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ICUJDKCompare.java 423 MorC[] overrides; field in class:ICUJDKCompare.MethodRecord
426 overrides = new MorC[] { m };
430 overrides = ms;
434 return new MethodRecord((MorC[])overrides.clone());
438 for (int i = 0; i < overrides.length; ++i) {
439 if (overrides[i] == null) {
443 return overrides.length;
447 MorC[] temp = new MorC[overrides.length + 1];
448 for (int i = 0; i < overrides.length; ++i) {
449 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);
  /frameworks/av/media/libstagefright/tests/
MediaCodecListOverrides_test.cpp 142 AString overrides; local
151 overrides.setTo(buf, size);
159 EXPECT_TRUE(overrides == expected);
  /external/emma/core/java12/com/vladium/util/
Property.java 48 * independently from 'overrides' or 'base', so this method
51 * @param overrides [null is equivalent to empty]
56 public static Properties combine (final Properties overrides, final Properties base)
62 if (overrides == null)
65 return overrides;
70 if (overrides == null) return base;
72 // [assertion: both 'overrides' and 'base' are not null]
77 // into possible bases inside 'overrides'
79 for (Enumeration overrideNames = overrides.propertyNames (); overrideNames.hasMoreElements (); )
82 final String v = overrides.getProperty (n)
    [all...]
  /art/test/968-default-partial-compile-gen/util-src/
generate_java.py 100 overrides = functools.reduce(operator.or_, map(lambda i: i.get_super_types(), tops), set())
101 for overridden in overrides:
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
b.go 31 type uint struct{} // overrides a predeclared type uint

Completed in 3130 milliseconds

1 2 3 4 5 6 7 8 91011>>