HomeSort by relevance Sort by last modified time
    Searched refs:DEFAULT (Results 76 - 100 of 318) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 173 m_tooltip.setSize(m_tooltip.computeSize(SWT.DEFAULT, SWT.DEFAULT));
  /frameworks/support/v4/java/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompat.java 168 * If an {@link AccessibilityService} is the default for a given type.
169 * Default service is invoked only if no package specific one exists. In case of
172 public static final int DEFAULT = 0x0000001;
254 * useful for UI test automation. This flag is not set by default.
387 * {@link AccessibilityServiceInfo#DEFAULT} is represented by the
388 * string DEFAULT.
395 case DEFAULT:
396 return "DEFAULT";
407 default:
446 default
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DirectoryTest.java 49 ContentUris.withAppendedId(Directory.CONTENT_URI, Directory.DEFAULT);
83 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)).build();
116 // Hide by removing from the default group
  /cts/tests/tests/media/src/android/media/cts/
AudioRecord_BufferSizeTest.java 82 mAudioRecord = new AudioRecord(AudioSource.DEFAULT, sampleRateInHz,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateView.java 38 public static int DEFAULT = 0;
47 private int mType = DEFAULT;
49 private String mText = "Default";
68 this(context, DEFAULT);
167 if (mType == DEFAULT || mType == END) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
TypefaceUtils.java 75 if (face == Typeface.DEFAULT) {
  /packages/apps/Browser/src/com/android/browser/preferences/
GeneralPreferencesFragment.java 53 static final String DEFAULT = "default";
98 if (DEFAULT.equals(objValue)) {
173 return DEFAULT;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltipManager.java 128 Point size = mTip.computeSize(SWT.DEFAULT, SWT.DEFAULT);
131 size = mTip.computeSize(rect.width, SWT.DEFAULT);
AccordionControl.java 54 * columns of items rather than just the default vertical stack.
61 * default), or allowing multiple categories open (where they share the available space).
82 * overridden to lay out the children with a different layout than the default
116 * Set whether a single category should be enforced or not (default=true)
125 * Returns whether a single category should be enforced or not (default=true)
275 Point minSize = content.computeSize(r.width, SWT.DEFAULT);
345 scrolledComposite.setMinSize(composite.computeSize(SWT.DEFAULT, SWT.DEFAULT));
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 11 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
30 CREATE TABLE groups (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync INTEGER NOT NULL DEFAULT 0,system_id TEXT,UNIQUE(name,system_id,_sync_account));
32 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id));
33 CREATE TABLE people (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT COLLATE LOCALIZED,notes TEXT COLLATE LOCALIZED,times_contacted INTEGER NOT NULL DEFAULT 0,last_time_contacted INTEGER,starred INTEGER NOT NULL DEFAULT 0,primary_phone INTEGER REFERENCES phones(_id),primary_organization INTEGER REFERENCES organizations(_id),primary_email INTEGER REFERENCES contact_methods(_id),photo_version TEXT,custom_ringtone TEXT,send_to_voicemail INTEGER,phonetic_name TEXT COLLATE LOCALIZED);
55 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),type INTEGER NOT NULL,number TEXT,number_key TEXT,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
59 CREATE TABLE photos (_id INTEGER PRIMARY KEY AUTOINCREMENT,exists_on_server INTEGER NOT NULL DEFAULT 0,person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,UNIQUE(person) )
    [all...]
  /external/chromium/chrome/browser/ui/
window_sizer_unittest.cc 156 enum Source { DEFAULT, LAST_ACTIVE, PERSISTED };
180 // where the default window bounds calculation is invoked.
186 false, gfx::Rect(), DEFAULT, &window_bounds, &maximized);
198 gfx::Rect(), false, gfx::Rect(), DEFAULT, &window_bounds,
212 gfx::Rect(), false, gfx::Rect(), DEFAULT, &window_bounds,
225 gfx::Rect(), false, gfx::Rect(), DEFAULT, &window_bounds,
240 gfx::Rect(), false, gfx::Rect(), DEFAULT, &window_bounds,
254 false, gfx::Rect(), DEFAULT, &window_bounds, &maximized);
266 false, gfx::Rect(), DEFAULT, &window_bounds, &maximized);
278 false, gfx::Rect(), DEFAULT, &window_bounds, &maximized)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactEntryListAdapter.java 88 /** Resource used to provide header-text for default filter. */
133 partition.setDirectoryId(Directory.DEFAULT);
141 * Remove all directories after the default directory. This is typically used when contacts
145 * This code assumes that the default directory and directories before that should not be
146 * deleted (e.g. Join screen has "suggested contacts" directory before the default director,
154 && ((DirectoryPartition) partition).getDirectoryId() == Directory.DEFAULT) {
497 * Changes visibility parameters for the default directory partition.
505 ((DirectoryPartition)partition).getDirectoryId() == Directory.DEFAULT) {
534 if (directoryId == Directory.DEFAULT || directoryId == Directory.LOCAL_INVISIBLE) {
551 if (directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBL
    [all...]
ContactListAdapter.java 157 if (directoryId != Directory.DEFAULT) {
181 return directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE
285 if (mSelectedContactId != 0 && (mSelectedContactDirectoryId == Directory.DEFAULT
PhoneNumberListAdapter.java 46 * By default this adapter just handles phone numbers. When {@link #setUseCallableUri(boolean)} is
104 if (directoryId != Directory.DEFAULT) {
105 Log.w(TAG, "PhoneNumberListAdapter is not ready for non-default directory ID ("
125 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT));
156 if (filter == null || directoryId != Directory.DEFAULT) {
178 default:
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 520 < DOMAINLITERAL: "]" > { matchedToken.image = image.toString(); }: DEFAULT
533 < COMMENT: ")" > : DEFAULT
574 < QUOTEDSTRING: "\"" > { matchedToken.image = image.substring(0, image.length() - 1); } : DEFAULT
  /external/smack/src/org/jivesoftware/smackx/pubsub/
PubSubManager.java 95 * Creates a node with default configuration.
245 * Returns the default settings for Node configuration.
247 * @return configuration form containing the default settings.
254 PubSub reply = (PubSub)sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.DEFAULT), PubSubElementType.DEFAULT.getNamespace());
255 return NodeUtils.getFormFromPacket(reply, PubSubElementType.DEFAULT);
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
SecureWebServer.java 62 // Get a key manager factory using the default algorithm
178 return Base64.encodeToString(embeddedImage, Base64.DEFAULT);
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElementIterator.java 78 this(headerIterator, BasicHeaderValueParser.DEFAULT);
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 67 #define DEFAULT 1
wiring_analog.c 30 uint8_t analog_reference = DEFAULT;
34 // can't actually set the register here because the default setting
58 // to 0 (the default).
91 // pins_*.c file. For the rest of the pins, we default
251 default:
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.h 54 DEFAULT,
  /frameworks/av/include/drm/
drm_framework_common.h 158 * Constant field signifies that the default action
160 static const int DEFAULT = 0x00;
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
TypefaceTest.java 41 assertTrue("basic", Typeface.DEFAULT != null);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 104 * Allocates initial buffer of default size
367 default:
548 // sets default value
549 if (sequence.DEFAULT[i] != null) {
550 values[i] = sequence.DEFAULT[i];
562 if (sequence.DEFAULT[i] != null) {
563 values[i] = sequence.DEFAULT[i];
  /packages/apps/Contacts/src/com/android/contacts/
GroupMemberLoader.java 108 String.valueOf(Directory.DEFAULT)).build();

Completed in 1004 milliseconds

1 2 34 5 6 7 8 91011>>