HomeSort by relevance Sort by last modified time
    Searched refs:DEFAULT (Results 51 - 75 of 269) sorted by null

1 23 4 5 6 7 8 91011

  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/spec/
PSourceTest.java 39 * DEFAULT field, and that input p array is copied to protect against
50 assertEquals("The PSource.PSpecified DEFAULT value should be byte[0]",
51 0, PSource.PSpecified.DEFAULT.getValue().length);
  /external/apache-http/src/org/apache/http/impl/auth/
RFC2617Scheme.java 59 * Default constructor for RFC2617 compliant authetication schemes.
68 HeaderValueParser parser = BasicHeaderValueParser.DEFAULT;
  /external/apache-http/src/org/apache/http/impl/io/
AbstractMessageWriter.java 63 formatter : BasicLineFormatter.DEFAULT;
AbstractMessageParser.java 80 this.lineParser = (parser != null) ? parser : BasicLineParser.DEFAULT;
110 parser = BasicLineParser.DEFAULT;
  /external/apache-http/src/org/apache/http/message/
BufferedHeader.java 111 return BasicHeaderValueParser.DEFAULT
BasicLineParser.java 68 * A default instance of this class, for use as default or fallback.
71 * The instance here provides non-customized, default behavior.
73 public final static BasicLineParser DEFAULT = new BasicLineParser();
118 parser = BasicLineParser.DEFAULT;
283 parser = BasicLineParser.DEFAULT;
383 parser = BasicLineParser.DEFAULT;
474 parser = BasicLineParser.DEFAULT;
  /external/chromium/chrome/browser/diagnostics/
diagnostics_main.cc 33 DEFAULT,
107 case DEFAULT:
109 default:
175 case DEFAULT:
177 default:
218 console_->SetColor(SimpleConsole::DEFAULT);
  /external/javassist/src/main/javassist/compiler/
TokenId.java 29 int DEFAULT = 310;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PSourceTest.java 39 * DEFAULT field, and that input p array is copied to protect against
50 assertEquals("The PSource.PSpecified DEFAULT value should be byte[0]",
51 0, PSource.PSpecified.DEFAULT.getValue().length);
  /packages/apps/Contacts/src/com/android/contacts/list/
DefaultContactListAdapter.java 80 if (directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE) {
117 if (directoryId == Directory.DEFAULT && isSectionHeaderDisplayEnabled()) {
121 // The "All accounts" filter is the same as the entire contents of Directory.DEFAULT
127 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT));
143 if (directoryId != Directory.DEFAULT) {
ContactEntryListAdapter.java 89 /** Resource used to provide header-text for default filter. */
134 partition.setDirectoryId(Directory.DEFAULT);
142 * Remove all directories after the default directory. This is typically used when contacts
146 * This code assumes that the default directory and directories before that should not be
147 * deleted (e.g. Join screen has "suggested contacts" directory before the default director,
155 && ((DirectoryPartition) partition).getDirectoryId() == Directory.DEFAULT) {
505 * Changes visibility parameters for the default directory partition.
513 ((DirectoryPartition)partition).getDirectoryId() == Directory.DEFAULT) {
542 if (directoryId == Directory.DEFAULT || directoryId == Directory.LOCAL_INVISIBLE) {
559 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:
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
LogWindow.java 66 DEFAULT,
228 appendLine(TextStyle.DEFAULT, log);
269 appendLine(TextStyle.DEFAULT, " " + log); //$NON-NLS-1$
320 if (style == TextStyle.DEFAULT) {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCERSACipher.java 207 initFromSpec(new OAEPParameterSpec("MD5", "MGF1", new MGF1ParameterSpec("MD5"), PSource.PSpecified.DEFAULT));
211 initFromSpec(OAEPParameterSpec.DEFAULT);
215 initFromSpec(OAEPParameterSpec.DEFAULT);
219 initFromSpec(new OAEPParameterSpec("SHA-224", "MGF1", new MGF1ParameterSpec("SHA-224"), PSource.PSpecified.DEFAULT));
223 initFromSpec(new OAEPParameterSpec("SHA-256", "MGF1", MGF1ParameterSpec.SHA256, PSource.PSpecified.DEFAULT));
227 initFromSpec(new OAEPParameterSpec("SHA-384", "MGF1", MGF1ParameterSpec.SHA384, PSource.PSpecified.DEFAULT));
231 initFromSpec(new OAEPParameterSpec("SHA-512", "MGF1", MGF1ParameterSpec.SHA512, PSource.PSpecified.DEFAULT));
336 default:
571 // super(OAEPParameterSpec.DEFAULT);
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp     [all...]
  /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));
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DirectoryTest.java 47 ContentUris.withAppendedId(Directory.CONTENT_URI, Directory.DEFAULT);
80 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)).build();
112 // Hide by removing from the default group
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
CoordinateControls.java 180 * Creates a {@link Text} with a given parent, default string and a {@link ModifyListener}
182 * @param defaultString the default string to be used to compute the {@link Text} control
199 Point size = text.computeSize(SWT.DEFAULT, SWT.DEFAULT);
  /cts/tests/tests/media/src/android/media/cts/
AudioRecord_BufferSizeTest.java 82 mAudioRecord = new AudioRecord(AudioSource.DEFAULT, sampleRateInHz,
  /frameworks/base/core/java/android/content/pm/
ManifestDigest.java 55 final byte[] digest = Base64.decode(encodedDigest, Base64.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;
  /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/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
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java 67 DEFAULT("Default"),
113 DeviceType.DEFAULT, DeviceType.ADDON, DeviceType.CUSTOM
129 if (DeviceType.DEFAULT.equals(parentElement)) {
153 if (DeviceType.DEFAULT.equals(element)) {
384 // is the source a default/add-on device, or are we copying a full device?
387 if (selection.type == DeviceType.DEFAULT || selection.type == DeviceType.ADDON ||
406 // in default/addon by editing the version in the new device.
512 case DEFAULT:

Completed in 975 milliseconds

1 23 4 5 6 7 8 91011