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

1 2 3 4 5 6 7 8

  /external/chromium_org/tools/gyp/test/mac/postbuild-defaults/
postbuild-defaults.sh 10 echo $(defaults read "${PLIST}" "CFBundleName") > "${BUILT_PRODUCTS_DIR}/result"
14 echo $(defaults read "${PLIST}" "CFBundleName") \
  /external/apache-http/src/org/apache/http/params/
DefaultedHttpParams.java 54 private final HttpParams defaults; field in class:DefaultedHttpParams
56 public DefaultedHttpParams(final HttpParams local, final HttpParams defaults) {
62 this.defaults = defaults;
70 return new DefaultedHttpParams(clone, this.defaults);
80 if (obj == null && this.defaults != null) {
81 obj = this.defaults.getParameter(name);
103 return this.defaults;
  /external/apache-http/src/org/apache/http/protocol/
DefaultedHttpContext.java 52 private final HttpContext defaults; field in class:DefaultedHttpContext
54 public DefaultedHttpContext(final HttpContext local, final HttpContext defaults) {
60 this.defaults = defaults;
66 return this.defaults.getAttribute(id);
81 return this.defaults;
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/
gonacl.py 7 webapp2.Route('/', webapp2.RedirectHandler, defaults={
  /external/chromium_org/third_party/skia/gm/
system_preferences_mac.mm 24 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
25 [defaults setInteger:MediumFontSmoothing forKey:@"AppleFontSmoothing"];
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
in_file_unittest.py 41 defaults = {
45 in_file = InFile(lines, defaults, None)
60 defaults = {
68 in_file = InFile(lines, defaults, default_parameters=default_parameters)
make_qualified_names.py 48 defaults = { variable in class:MakeQualifiedNamesWriter
68 self.tags_in_file = InFile.load_from_files([in_file_paths.pop(0)], self.defaults, self.valid_values, self.default_parameters)
72 self.attrs_in_file = InFile.load_from_files([in_file_paths.pop()], self.defaults, self.valid_values, self.default_parameters)
in_file.py 56 def __init__(self, lines, defaults, valid_values=None, default_parameters=None):
59 self._defaults = defaults
64 def load_from_files(self, file_paths, defaults, valid_values, default_parameters):
70 return InFile(lines, defaults, valid_values, default_parameters)
  /bionic/libc/dns/net/
nsdispatch.c 100 const char *method, const ns_src defaults[], ...)
113 assert(defaults != NULL);
114 if (database == NULL || method == NULL || defaults == NULL)
117 srclist = defaults;
129 va_start(ap, defaults);
132 if (defaults[0].flags & NS_FORCEALL)
  /external/chromium_org/third_party/WebKit/Source/core/animation/
TimingInput.cpp 18 timing.startDelay = Timing::defaults().startDelay;
26 timing.endDelay = Timing::defaults().endDelay;
40 timing.fillMode = Timing::defaults().fillMode;
49 timing.iterationStart = Timing::defaults().iterationStart;
57 timing.iterationCount = Timing::defaults().iterationCount;
65 timing.iterationDuration = Timing::defaults().iterationDuration;
73 timing.playbackRate = Timing::defaults().playbackRate;
85 timing.direction = Timing::defaults().direction;
94 timing.timingFunction = Timing::defaults().timingFunction;
104 double startDelay = Timing::defaults().startDelay
    [all...]
  /external/chromium_org/chrome/installer/mac/
keystone_install_test.sh 75 defaults write "${DEST}/Contents/Info" KSVersion 0
97 defaults write "${DEST}/Contents/Info" CFBundleShortVersionString 0
98 defaults write "${DEST}/Contents/Info" KSVersion 0
121 defaults write "${TEMPDIR}/${APPNAME}/Contents/Info" \
123 defaults write "${TEMPDIR}/${APPNAME}/Contents/Info" \
125 defaults write "${TEMPDIR}/${APPNAME}/Contents/Info" \
147 defaults write "${TEMPDIR}/${APPNAME}/Contents/Info" KSUpdateURL "http://foobar"
154 defaults write "${TEMPDIR}/${APPNAME}/Contents/Info" KSUpdateURL "http://foobar"
158 defaults write "${TEMPDIR}/${APPNAME}/Contents/Info" KSUpdateURL "http://foobar"
  /external/chromium_org/build/mac/
make_more_helpers.sh 59 defaults write "${feature_info}" "CFBundleDisplayName" "${helper_feature}"
60 defaults write "${feature_info}" "CFBundleExecutable" "${helper_feature}"
62 cfbundleid="$(defaults read "${feature_info}" "CFBundleIdentifier")"
64 defaults write "${feature_info}" "CFBundleIdentifier" "${feature_cfbundleid}"
66 cfbundlename="$(defaults read "${feature_info}" "CFBundleName")"
68 defaults write "${feature_info}" "CFBundleName" "${feature_cfbundlename}"
70 # As usual, defaults might have put the plist into whatever format excites
74 # `defaults` also changes the file permissions, so make the file
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
model.js 26 // operator. In either case, clear the operand and the defaults.
32 // operator and operands used as defaults, or if there is no current
36 var operator = this.operator || this.defaults.operator;
37 var operand = this.operator ? this.operand : this.defaults.operand;
39 var defaults = {operator: operator, operand: this.operand};
40 return this.reset_({accumulator: result, defaults: defaults});
74 this.defaults = {operator: null, operand: null};
90 this.defaults = ifDefined(state && state.defaults, this.defaults)
    [all...]
  /external/dhcpcd/mk/
sys.mk 1 # Simple defaults
  /external/chromium_org/base/prefs/
pref_registry.h 34 // Gets the registered defaults.
35 scoped_refptr<PrefStore> defaults();
37 // Allows iteration over defaults.
pref_service_factory.cc 56 pref_registry->defaults().get(),
testing_pref_service.cc 30 pref_registry->defaults().get(),
  /external/chromium_org/mojo/public/cpp/bindings/tests/
sample_service_unittest.cc 349 DefaultsTestPtr defaults(DefaultsTest::New());
350 EXPECT_EQ(-12, defaults->a0);
351 EXPECT_EQ(kTwelve, defaults->a1);
352 EXPECT_EQ(1234, defaults->a2);
353 EXPECT_EQ(34567U, defaults->a3);
354 EXPECT_EQ(123456, defaults->a4);
355 EXPECT_EQ(3456789012U, defaults->a5);
356 EXPECT_EQ(-111111111111LL, defaults->a6);
357 EXPECT_EQ(9999999999999999999ULL, defaults->a7);
358 EXPECT_EQ(0x12345, defaults->a8)
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 133 void defaults(int x = []{ return T(); }()) { }; // expected-error{{cannot initialize a parameter of type 'int' with an rvalue of type 'int *'}} \ function in namespace:NonLocalLambdaInstantation
137 defaults<int>();
138 defaults<float>();
139 defaults<int*>(); // expected-note{{in instantiation of default function argument expression for 'defaults<int *>' required here}}
  /external/clang/test/Sema/
invalid-struct-init.c 6 expected-warning {{type specifier missing, defaults to 'int'}}
  /external/e2fsprogs/tests/
test_one.in 57 default_script=$SRCDIR/defaults/${test_base}_script
59 . $SRCDIR/defaults/${test_base}_script
  /external/e2fsprogs/misc/
mke2fs-hurd.conf 0 [defaults]
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_controller_android.cc 360 const base::DictionaryValue* defaults = local
362 if (defaults) {
363 defaults->GetString(kLastUsedAccountName, &last_used_account_name);
364 defaults->GetBoolean(kLastUsedChoiceIsAutofill,
366 defaults->GetString(kLastUsedBillingAddressGuid, &last_used_billing);
367 defaults->GetString(kLastUsedShippingAddressGuid, &last_used_shipping);
368 defaults->GetString(kLastUsedCreditCardGuid, &last_used_credit_card);
476 base::DictionaryValue* defaults = updater.Get(); local
477 if (defaults) {
479 defaults->SetString(kLastUsedAccountName, last_used_account_name)
    [all...]
  /external/chromium_org/chrome/browser/prefs/
pref_service_syncable_factory.cc 66 pref_registry->defaults().get(),
  /external/chromium_org/mojo/tools/
mojosh.sh 15 DIRECTORY defaults to $DIRECTORY.

Completed in 557 milliseconds

1 2 3 4 5 6 7 8