/system/core/toolbox/ |
start.c | 13 /* defaults to starting the common services stopped by stop.c */
|
/external/chromium_org/base/prefs/ |
pref_registry.h | 34 // Gets the registered defaults. 35 scoped_refptr<PrefStore> defaults(); 37 // Allows iteration over defaults.
|
/external/chromium_org/chrome/installer/linux/debian/ |
postrm | 22 # Only remove the defaults file if it is not empty. An empty file was probably 26 # Make sure the package defaults are removed before the repository config, 28 # package defaults remain and are set to not recreate the repository config.
|
/external/chromium_org/remoting/host/installer/linux/debian/ |
postrm | 22 # Only remove the defaults file if it is not empty. An empty file was probably 27 # Make sure the package defaults are removed before the repository config, 29 # package defaults remain and are set to not recreate the repository config.
|
/external/clang/test/SemaObjC/ |
protocol-archane.m | 11 bar((<SomeProtocol>)x); // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}} 13 [(<SomeProtocol>)x bar]; // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}} 40 - (void)crashWith:(<Broken>)a { // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}}
|
call-super-2.m | 38 int i = (size_t)[self class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id'); did you mean '+class_func}} 39 return i + (size_t)[super class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id')}} 58 int i = (size_t)[Derived class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id')}} 59 return i + (size_t)[Object class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id')}} 71 int i = (size_t)[self instance_func0]; // expected-warning {{instance method '-instance_func0' not found (return type defaults to 'id'); did you mean}} 88 int i = (size_t)[Derived instance_func1]; // expected-warning {{class method '+instance_func1' not found (return type defaults to 'id')}} 89 return i + (size_t)[Object instance_func1]; // expected-warning {{class method '+instance_func1' not found (return type defaults to 'id')}}
|
/external/llvm/include/llvm/MC/ |
MCAsmInfo.h | 101 /// compute the size of an inline asm. Defaults to 4. 105 /// out in .debug_frame and .debug_line. Defaults to 1. 109 /// the current PC. Defaults to false. 113 /// other when on the same line. Defaults to ';' 116 /// This indicates the comment character used by the assembler. Defaults to 120 /// This is appended to emitted labels. Defaults to ":" 123 // Print the EH begin symbol with an assignment. Defaults to false. 128 /// file. Defaults to "L" 134 /// a plain private symbol should be used. Defaults to "". 138 /// an inline assembly statement. Defaults to "#APP\n", "#NO_APP\n [all...] |
/external/clang/test/Parser/ |
attributes.c | 10 __attribute__(()) y; // expected-warning {{defaults to 'int'}} 22 void f3(__attribute__(()) x, // expected-warning {{defaults to 'int'}} 23 y); // expected-warning {{defaults to 'int'}} 33 void g3(void (*f3)(__attribute__(()) x, int y)); // expected-warning {{defaults to 'int'}} 40 void (*h3)(void (*f3)(__attribute__(()) x)); // expected-warning {{defaults to 'int'}}
|
placeholder-recovery.m | 8 // expected-warning{{protocol has no object type specified; defaults to qualified 'id'}}
|
/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...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
MagnitudeVerification.java | 39 private static Map<Integer, Float[]> DEFAULTS = new HashMap<Integer, Float[]>(3); 70 if (!DEFAULTS.containsKey(sensorType)) { 73 Float expected = DEFAULTS.get(sensorType)[0]; 74 Float threshold = DEFAULTS.get(sensorType)[1]; 129 DEFAULTS.put(Sensor.TYPE_ACCELEROMETER, new Float[]{SensorManager.STANDARD_GRAVITY, 1.5f}); 130 DEFAULTS.put(Sensor.TYPE_GYROSCOPE, new Float[]{0.0f, 1.5f}); 132 DEFAULTS.put(Sensor.TYPE_GRAVITY,
|
MeanVerification.java | 36 private static final Map<Integer, Object[]> DEFAULTS = new HashMap<Integer, Object[]>(5); 64 if (!DEFAULTS.containsKey(sensorType)) { 67 float[] expected = (float[]) DEFAULTS.get(sensorType)[0]; 68 float[] threshold = (float[]) DEFAULTS.get(sensorType)[1]; 134 DEFAULTS.put(Sensor.TYPE_GYROSCOPE, new Object[]{ 139 DEFAULTS.put(Sensor.TYPE_PRESSURE, new Object[]{ 143 DEFAULTS.put(Sensor.TYPE_LINEAR_ACCELERATION, new Object[]{ 147 DEFAULTS.put(Sensor.TYPE_GAME_ROTATION_VECTOR, new Object[]{ 152 DEFAULTS.put(Sensor.TYPE_GYROSCOPE_UNCALIBRATED, new Object[]{
|
/external/chromium_org/content/shell/app/ |
webkit_test_platform_support_mac.mm | 25 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; 31 [defaults setInteger:kBlueTintedAppearance 33 [defaults setObject:@"0.709800 0.835300 1.000000" 35 [defaults setObject:@"0.500000 0.500000 0.500000" 37 [defaults setObject:[NSArray arrayWithObject:@"en"] 39 [defaults setBool:NO 41 [defaults setObject:@"Always"
|
/external/chromium_org/mojo/public/cpp/bindings/tests/ |
sample_service_unittest.cc | 337 DefaultsTestPtr defaults(DefaultsTest::New()); 338 EXPECT_EQ(-12, defaults->a0); 339 EXPECT_EQ(kTwelve, defaults->a1); 340 EXPECT_EQ(1234, defaults->a2); 341 EXPECT_EQ(34567U, defaults->a3); 342 EXPECT_EQ(123456, defaults->a4); 344 // EXPECT_EQ(3456789012U, defaults->a5); 345 EXPECT_EQ(111111111111LL, defaults->a6); 347 // EXPECT_EQ(9999999999999999999ULL, defaults->a7); 348 EXPECT_EQ(0x12345, defaults->a8) [all...] |
/external/chromium_org/base/ios/ |
device_util.mm | 38 NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults]; 41 NSString* client_id = [defaults stringForKey:kLegacyClientIdPreferenceKey]; 136 NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults]; 139 [defaults stringForKey:kHardwareTypePreferenceKey]; 143 [defaults setObject:current_hardware forKey:kHardwareTypePreferenceKey]; 144 [defaults synchronize]; 147 NSString* client_id = [defaults stringForKey:kClientIdPreferenceKey]; 151 [defaults setObject:client_id forKey:kClientIdPreferenceKey]; 152 [defaults setObject:current_hardware forKey:kHardwareTypePreferenceKey]; 153 [defaults synchronize] [all...] |
/external/clang/test/Driver/ |
darwin-objc-defaults.m | 1 // Check non-fragile ABI and dispatch method defaults. 12 // CHECK-CHECK-I386_OSX10_5: darwin-objc-defaults 21 // CHECK-CHECK-I386_OSX10_6: darwin-objc-defaults 30 // CHECK-CHECK-I386_IPHONE3_0: darwin-objc-defaults 49 // CHECK-CHECK-X86_64_OSX10_5: darwin-objc-defaults 57 // CHECK-CHECK-X86_64_OSX10_6: darwin-objc-defaults 65 // CHECK-CHECK-X86_64_IPHONE3_0: darwin-objc-defaults 76 // CHECK-CHECK-ARMV7_OSX10_5: darwin-objc-defaults 85 // CHECK-CHECK-ARMV7_OSX10_6: darwin-objc-defaults 94 // CHECK-CHECK-ARMV7_IPHONE3_0: darwin-objc-defaults [all...] |
/external/apache-http/src/org/apache/http/protocol/ |
DefaultedHttpContext.java | 47 private final HttpContext defaults; field in class:DefaultedHttpContext 49 public DefaultedHttpContext(final HttpContext local, final HttpContext defaults) { 55 this.defaults = defaults; 61 return this.defaults.getAttribute(id); 76 return this.defaults;
|
/external/chromium_org/content/public/common/ |
pepper_plugin_info.h | 41 // Defaults to false. 44 // True when this plugin should be run out of process. Defaults to false. 48 // Defaults to true.
|
/external/clang/test/Analysis/ |
rdar-6540084.m | 25 NSPredicate *isSearchablePredicate = [NSPredicate predicateWithFormat:@"isSearchable == YES"]; // expected-warning{{receiver 'NSPredicate' is a forward class and corresponding}} // expected-warning{{return type defaults to 'id'}} 27 NSArray *GuttenbergNodes = [Guttenberg nodes]; // expected-warning{{return type defaults to 'id'}} 28 NSArray *searchableNodes = [GuttenbergNodes filteredArrayUsingPredicate:isSearchablePredicate]; // expected-warning{{return type defaults to 'id'}}
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
styled_text_field_cell.h | 38 // Offset from the top of the cell frame to the text frame. Defaults to 0. 42 // Offset from the bottom of the cell frame to the text frame. Defaults to 0. 46 // Radius of the corners of the field. Defaults to square corners (0.0). 49 // Which corners of the field to round. Defaults to RoundedAll.
|
/external/chromium_org/chrome/common/extensions/docs/templates/articles/manifest/ |
homepage_url.html | 8 the homepage URL defaults to the extension's own page.
|
/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/extensions/browser/api/storage/ |
storage_frontend_unittest.cc | 28 // To save typing ValueStore::DEFAULTS everywhere. 29 const ValueStore::WriteOptions DEFAULTS = ValueStore::DEFAULTS; 120 ValueStore::WriteResult result = storage->Set(DEFAULTS, "foo", bar); 149 ValueStore::WriteResult result = storage->Set(DEFAULTS, "foo", bar); 175 ValueStore::WriteResult result = storage->Set(DEFAULTS, "foo", bar); 212 ValueStore::DEFAULTS, base::StringPrintf("%d", i), *kilobyte); 216 ValueStore::DEFAULTS, "WillError", *kilobyte)->HasError()); 221 ValueStore::DEFAULTS, base::StringPrintf("%d", i), *kilobyte); 225 ValueStore::DEFAULTS, "WontError", *kilobyte)->HasError()) [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
getdents_helper.h | 17 // Initialize the helper without any defaults.
|
/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)
|