/external/smack/src/org/jivesoftware/smack/packet/ |
Privacy.java | 34 * <li>Setting, changing, or declining the default list (i.e., the list that is active by default).
46 /** declineDefaultList is true when the user declines the use of the default list **/
48 /** defaultName is the name of the default list that applies to the user as a whole **/
68 * Set the active list based on the default list.
78 * Deletes an existing privacy list. If the privacy list being deleted was the default list
79 * then the user will end up with no default list. Therefore, the user will have to set a new
80 * default list.
88 // Check if deleted list was the default list
100 // Check if we have the default list [all...] |
/hardware/ti/omap4xxx/camera/ |
CameraParameters.cpp | 59 const char CameraProperties::PREVIEW_SIZE[] = "prop-preview-size-default"; 60 const char CameraProperties::PREVIEW_FORMAT[] = "prop-preview-format-default"; 61 const char CameraProperties::PREVIEW_FRAME_RATE[] = "prop-preview-frame-rate-default"; 62 const char CameraProperties::ZOOM[] = "prop-zoom-default"; 63 const char CameraProperties::PICTURE_SIZE[] = "prop-picture-size-default"; 64 const char CameraProperties::PICTURE_FORMAT[] = "prop-picture-format-default"; 65 const char CameraProperties::JPEG_THUMBNAIL_SIZE[] = "prop-jpeg-thumbnail-size-default"; 66 const char CameraProperties::WHITEBALANCE[] = "prop-whitebalance-default"; 67 const char CameraProperties::EFFECT[] = "prop-effect-default"; 68 const char CameraProperties::ANTIBANDING[] = "prop-antibanding-default"; [all...] |
/external/chromium_org/components/test/data/web_database/ |
version_29.sql | 6 INSERT INTO "meta" VALUES('Default Search Provider ID','2'); 8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR); 15 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0) [all...] |
/external/chromium_org/mojo/public/bindings/generators/ |
mojom.py | 56 def __init__(self, name = None, kind = None, ordinal = None, default = None): 60 self.default = default 73 def AddField(self, name, kind, ordinal = None, default = None): 74 field = Field(name, kind, ordinal, default) 89 def __init__(self, name = None, kind = None, ordinal = None, default = None): 93 self.default = default 102 def AddParameter(self, name, kind, ordinal = None, default = None): 103 parameter = Parameter(name, kind, ordinal, default) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/timing/ |
Performance.idl | 40 [MeasureAs=UnprefixedPerformanceTimeline] sequence<PerformanceEntry> getEntriesByName(DOMString name, [Default=NullString] optional DOMString entryType); 43 [DeprecateAs=PrefixedPerformanceTimeline,ImplementedAs=getEntriesByName] sequence<PerformanceEntry> webkitGetEntriesByName(DOMString name, [Default=NullString] optional DOMString entryType); 52 [MeasureAs=UnprefixedUserTiming] void clearMarks([Default=NullString] optional DOMString markName); 54 [RaisesException,MeasureAs=UnprefixedUserTiming] void measure(DOMString measureName, [Default=NullString] optional DOMString startMark, [Default=NullString] optional DOMString endMark); 55 [MeasureAs=UnprefixedUserTiming] void clearMeasures([Default=NullString] optional DOMString measureName); 58 [DeprecateAs=PrefixedUserTiming,ImplementedAs=clearMarks] void webkitClearMarks([Default=NullString] optional DOMString markName); 60 [RaisesException,DeprecateAs=PrefixedUserTiming,ImplementedAs=measure] void webkitMeasure(DOMString measureName, [Default=NullString] optional DOMString startMark, [Default=NullString] optional DOMString endMark); 61 [DeprecateAs=PrefixedUserTiming,ImplementedAs=clearMeasures] void webkitClearMeasures([Default=NullString] optional DOMString measureName) [all...] |
/external/clang/include/clang/Basic/ |
DiagnosticOptions.def | 24 # define VALUE_DIAGOPT(Name, Bits, Default) \ 25 DIAGOPT(Name, Bits, Default) 29 # define ENUM_DIAGOPT(Name, Type, Bits, Default) \ 30 DIAGOPT(Name, Bits, Default) 34 # define SEMANTIC_DIAGOPT(Name, Bits, Default) DIAGOPT(Name, Bits, Default) 38 # define SEMANTIC_VALUE_DIAGOPT(Name, Bits, Default) \ 39 VALUE_DIAGOPT(Name, Bits, Default) 43 # define SEMANTIC_ENUM_DIAGOPT(Name, Type, Bits, Default) \ 44 ENUM_DIAGOPT(Name, Type, Bits, Default) [all...] |
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/ |
p1-0x.cpp | 12 bool &br; // expected-note {{default constructor of 'Aggr' is implicitly deleted because field 'br' of reference type 'bool &' would not be initialized}} 60 struct MaybeAggr5a : BaseList... {}; // expected-note {{default constructor of 'MaybeAggr5a<Aggr>' is implicitly deleted because base class 'Aggr' has a deleted default constructor}} 62 MaybeAggr5a<Aggr> ma5a1 = {}; // expected-error {{call to implicitly-deleted default constructor of 'MaybeAggr5a<Aggr>'}} 74 DefaultedAggr() = default; 75 DefaultedAggr(const DefaultedAggr &) = default; 76 DefaultedAggr(DefaultedAggr &&) = default; 77 DefaultedAggr &operator=(const DefaultedAggr &) = default; 78 DefaultedAggr &operator=(DefaultedAggr &&) = default; 79 ~DefaultedAggr() = default; [all...] |
/external/clang/test/CodeGen/ |
integer-overflow.c | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin %s -emit-llvm -o - | FileCheck %s --check-prefix=DEFAULT 11 // DEFAULT: define void @test1 16 // DEFAULT: add nsw i32 23 // DEFAULT: sub nsw i32 30 // DEFAULT: mul nsw i32 37 // DEFAULT: sub nsw i32 0, 46 // DEFAULT: add nsw i32 {{.*}}, 1 53 // DEFAULT: add nsw i32 {{.*}}, -1 63 // DEFAULT: getelementptr inbounds i32* 70 // DEFAULT: add i8 {{.*}}, [all...] |
/external/clang/test/SemaObjC/ |
default-synthesize-2.m | 1 // RUN: %clang_cc1 -x objective-c -fsyntax-only -fobjc-default-synthesize-properties -verify -Wno-objc-root-class %s 2 // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -fobjc-default-synthesize-properties -verify -Wno-objc-root-class %s 17 // default synthesis allows direct access to property ivars. 34 // default synthesized; thus causing user error. 51 // Oops, forgot to write @synthesize! will be default synthesized 66 // default synthesize property named 'var' 69 return self->_var; // compiles because 'var' is synthesized by default 80 // default synthesis of property 'var' 95 // no default synthesis. So error is expected. 110 // With default synthesis, '_object' is be the synthesized ivar not the globa [all...] |
/external/clang/tools/scan-view/ |
scan-view | 17 # Default server parameters 82 '--host', dest="host", default=kDefaultHost, type="string", 83 help="Host interface to listen on. (default=%s)" % kDefaultHost) 85 '--port', dest="port", default=None, type="int", 86 help="Port to listen on. (default=%s)" % kDefaultPort) 87 parser.add_option("--debug", dest="debug", default=0, 90 parser.add_option("--auto-reload", dest="autoReload", default=False, 93 parser.add_option("--no-browser", dest="startBrowser", default=True, 96 parser.add_option("--allow-all-hosts", dest="onlyServeLocal", default=True, 98 help='Allow connections from any host (access restricted to "127.0.0.1" by default)') [all...] |
/external/iproute2/man/man8/ |
ip-tunnel.8 | 40 .RB "[ " prl-default 86 option. The default is IPv4. 93 .BI name " NAME " (default) 123 The default value for IPv4 tunnels is: 125 The default value for IPv6 tunnels is: 138 The default value is: 152 It is enabled by default. Note that a fixed ttl is incompatible 212 set a fixed encapsulation limit. Default is 4. 226 .BI prl-default " ADDR" 232 as a potential router or default router [all...] |
/external/libvpx/libvpx/examples/includes/geshi/docs/ |
phpdoc.ini | 5 ;; command-line switch -c, as in phpdoc -c default.ini or phpdoc -c myini.ini. The web 8 ;; default.ini is used to generate the online manual at http://www.phpdoc.org/docs 80 ;; legal values: HTML:frames:default,HTML:frames:l0l33t,HTML:frames:phpdoc.de,HTML:frames:phphtmllib, 82 ;; HTML:frames:DOM/default,HTML:frames:DOM/l0l33t,HTML:frames:DOM/phpdoc.de, 84 ;; HTML:Smarty:default,HTML:Smarty:PHP,HTML:Smarty:HandS 85 ;; PDF:default:default,CHM:default:default,XML:DocBook/peardoc2:default [all...] |
/dalvik/tests/052-verifier-fun/src/ |
Main.java | 29 default: return null; 46 default: return null; 63 default: return null; 77 default: return null; 102 default:
|
/device/asus/flo/nfc/ |
libnfc-brcm.conf | 26 # Delay after turning on chip, before writing to transport (default 300) 28 # Delay after deasserting NFC-Wake before turn off chip (default 0) 30 # Delay after turning off chip, before USERIAL_close returns (default 0) 38 # The default is 1000. 44 # If NFA_DM_CFG is not provided, stack default settings are 52 # Default poll duration (in ms) 67 # Configure the default Destination Gate used by HCI (the default is 4, which 72 # Override the stack default for NFA_EE_MAX_EE_SUPPORTED set in nfc_target.h. 73 # The value is set to 3 by default as it assumes we will discover 0xF2 [all...] |
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/ |
usage.apt.vm | 3 The Maven plugin for antlr is simple to use but is at its simplest when you use the default 23 showing the default values of the configuration options, is as follows: 71 default-value="false" 78 default-value = "false" 84 wait for a debug connection on a TCP port (49100 by default). 86 default-value="false" 93 default-value="false" 100 default-value="false" 109 default-value="false" 116 default-value="false [all...] |
/external/chromium_org/chrome/browser/search_engines/ |
default_search_policy_handler.h | 29 // ConfigurationPolicyHandler for the default search policies. 51 // Returns whether any default search policies are specified in |policies|. 54 // Returns whether the default search provider is disabled. 57 // Returns whether the default search URL is set and valid. On success, both 71 // The ConfigurationPolicyHandler handlers for each default search policy.
|
/external/chromium_org/chrome/browser/webdata/ |
web_intents_table.h | 42 // action Intent action for this default. 43 // type Intent type for this default. 44 // url_prefix URL prefix for which the default is invoked. 45 // user_date Epoch time when the user made this default. 46 // suppression Set if the default is (temporarily) suppressed.
|
/external/chromium_org/google_apis/drive/ |
gdata_wapi_url_generator_unittest.cc | 49 EXPECT_EQ("https://docs.google.com/feeds/default/private/full" 59 // With an override URL provided, the base URL is changed, but the default 73 EXPECT_EQ("https://docs.google.com/feeds/default/private/changes" 85 EXPECT_EQ("https://docs.google.com/feeds/default/private/full" 96 // changed, but the default parameters remain. 98 "https://docs.google.com/feeds/default/private/full/XXX/contents" 108 // the default parameters remain. Note that start-index should not be 123 "https://docs.google.com/feeds/default/private/full" 130 "https://docs.google.com/feeds/default/private/full/XXX/contents" 139 "https://docs.google.com/feeds/default/private/full/XXX?v=3&alt=json [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBIndex.idl | 34 [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction); 35 [CallWith=ExecutionContext, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction); 39 [CallWith=ExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
/external/chromium_org/ui/base/models/ |
dialog_model.h | 31 // Returns the default dialog button. This should not be a mask as only 32 // one button should ever be the default button. Return 33 // ui::DIALOG_BUTTON_NONE if there is no default. Default 39 // Returns whether the default dialog button should be colored blue as a call
|
/external/clang/lib/StaticAnalyzer/Core/ |
AnalyzerOptions.cpp | 30 .Default(UMK_NotSet); 39 // Use the User Mode to set the default IPA value. 50 // Lookup the ipa configuration option, use the default from User Mode. 58 .Default(IPAK_NotSet); 87 .Default(CXXInlineableMemberKind()); 103 // "true", "false", or the empty string (meaning the default value), 109 .Default(DefaultVal); 122 /* Default = */ false); 128 /*Default=*/true); 134 /*Default=*/true) [all...] |
/external/clang/test/SemaCXX/ |
default-constructor-initializers.cpp | 3 struct X1 { // has no implicit default constructor 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly initialize the base class 'X2' which does not have a default constructor}} 25 struct Y1 { // has no implicit default constructor 53 // Test default initialization which *requires* a constructor call for non-POD.
|
/external/dropbear/ |
dropbear.8 | 21 before user login (default: none). 27 for the dss host key (default: /etc/dropbear/dropbear_dss_host_key). 35 for the rsa host key (default: /etc/dropbear/dropbear_rsa_host_key). 70 up to 10 can be specified (default 22 if none specified). 81 default is /var/run/dropbear.pid
|
/external/kernel-headers/original/linux/ |
zconf.h | 13 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) 15 the default memory requirements from 256K to 128K, compile with 20 that is, 32K for windowBits=15 (default value) plus a few kilobytes 38 /* default windowBits for decompression. MAX_WBITS is for compression only */ 43 /* default memLevel */
|
/external/libusb-compat/ |
configure.ac | 38 [enable debug logging (default n)])], 47 [build example applications (default n)])], 58 AC_DEFINE([API_EXPORTED], [__attribute__((visibility("default")))], [Default visibility]) 63 AC_CONFIG_COMMANDS([default],[[chmod +x libusb-config]],[[]])
|