HomeSort by relevance Sort by last modified time
    Searched refs:NONE (Results 651 - 675 of 2229) sorted by null

<<21222324252627282930>>

  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
Calendar.java     [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 184 mFlushingAudio(NONE),
185 mFlushingVideo(NONE),
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 356 this.SSID = (wifiSsid != null) ? wifiSsid.toString() : WifiSsid.NONE;
382 this.SSID = (wifiSsid != null) ? wifiSsid.toString() : WifiSsid.NONE;
472 String none = "<none>"; local
475 append(wifiSsid == null ? WifiSsid.NONE : wifiSsid).
477 append(BSSID == null ? none : BSSID).
479 append(capabilities == null ? none : capabilities).
WifiInfo.java 324 return (hex != null) ? hex : WifiSsid.NONE;
327 return WifiSsid.NONE;
552 String none = "<none>"; local
554 sb.append("SSID: ").append(mWifiSsid == null ? WifiSsid.NONE : mWifiSsid).
555 append(", BSSID: ").append(mBSSID == null ? none : mBSSID).
556 append(", MAC: ").append(mMacAddress == null ? none : mMacAddress).
558 append(mSupplicantState == null ? none : mSupplicantState).
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
MainLaunchConfigTab.java 125 Composite comp = new Composite(parent, SWT.NONE);
135 Group group = new Group(comp, SWT.NONE);
253 Group group = new Group(parent, SWT.NONE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 110 private RenderPreviewMode mPreviewMode = RenderPreviewMode.NONE;
272 mPreviewMode = RenderPreviewMode.NONE;
278 // Ignore: Leave it as RenderPreviewMode.NONE
591 if (previewMode != RenderPreviewMode.NONE) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLTraceOptionsDialog.java 166 Composite c = new Composite(parent, SWT.NONE);
216 Composite c = new Composite(parent, SWT.NONE);
315 Label l = new Label(parent, SWT.NONE);
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 83 {NEARESTMV, {LAST_FRAME, NONE}},
84 {NEARESTMV, {ALTREF_FRAME, NONE}},
85 {NEARESTMV, {GOLDEN_FRAME, NONE}},
87 {DC_PRED, {INTRA_FRAME, NONE}},
89 {NEWMV, {LAST_FRAME, NONE}},
90 {NEWMV, {ALTREF_FRAME, NONE}},
91 {NEWMV, {GOLDEN_FRAME, NONE}},
93 {NEARMV, {LAST_FRAME, NONE}},
94 {NEARMV, {ALTREF_FRAME, NONE}},
95 {NEARMV, {GOLDEN_FRAME, NONE}},
    [all...]
  /bootable/recovery/
screen_ui.cpp 54 currentIcon(NONE),
98 case NONE: abort();
152 if (currentIcon != NONE) {
177 if (currentIcon != NONE) {
  /cts/tests/filesystem/src/android/filesystem/cts/
SequentialRWTest.java 99 report.addValue("file_size", fileSize, ResultType.NEUTRAL, ResultUnit.NONE);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
SetValues002Test.java 144 if ( errorCode == JDWPConstants.Error.NONE ) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
ThreadEndTest.java 59 byte suspendPolicy = JDWPConstants.SuspendPolicy.NONE;
ThreadStartTest.java 60 byte suspendPolicy = JDWPConstants.SuspendPolicy.NONE;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
SetValues002Test.java 130 if ( errorCode != JDWPConstants.Error.NONE ) {
SetValues003Test.java 128 if ( errorCode == JDWPConstants.Error.NONE ) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues004Test.java 122 if ( errorCode != JDWPConstants.Error.NONE ) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
OwnedMonitorsStackDepthInfoTest.java 169 if (errorCode != JDWPConstants.Error.NONE) {
SuspendTest.java 165 if (resumeErr != JDWPConstants.Error.NONE) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPInvokeMethodWithSuspensionTestCase.java 120 anotherInvokeMethodReply.getErrorCode() != JDWPConstants.Error.NONE);
JDWPTestCase.java 646 * error code does not equal NONE.
654 checkReplyPacket(reply, message, JDWPConstants.Error.NONE);
677 * equal NONE.
688 new int[] { JDWPConstants.Error.NONE }, false /* failSign */);
726 if (expected.length == 1 && JDWPConstants.Error.NONE == expected[0]) {
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
rrset.py 35 def __init__(self, name, rdclass, rdtype, covers=dns.rdatatype.NONE,
36 deleting=None):
54 if not self.deleting is None:
76 def match(self, name, rdclass, rdtype, covers, deleting=None):
86 def to_text(self, origin=None, relativize=True, **kw):
96 @param origin: The origin for relative names, or None.
104 def to_wire(self, file, compress=None, origin=None, **kw):
126 name = dns.name.from_text(name, None)
155 name = dns.name.from_text(name, None)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractComboBoxPropertyEditor.java 52 m_combo = new CComboBox(propertyTable, SWT.NONE);
AbstractComboPropertyEditor.java 49 m_combo = new CCombo3(propertyTable, SWT.NONE);
  /external/elfutils/backends/
common-reloc.c 137 return reloc == R_TYPE (NONE);
  /external/guice/core/src/com/google/inject/internal/
State.java 46 static final State NONE = new State() {
158 /** Returns the matching converter for {@code type}, or null if none match. */

Completed in 856 milliseconds

<<21222324252627282930>>