HomeSort by relevance Sort by last modified time
    Searched refs:isPresent (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderEdge.cpp 14 , isPresent(edgeIsPresent)
24 , isPresent(false)
34 bool BorderEdge::shouldRender() const { return isPresent && width && hasVisibleColorAndStyle(); }
38 if (!isPresent || isTransparent || (width * scale) < 2 || color.hasAlpha() || style == BHIDDEN)
51 if (!isPresent || isTransparent || color.hasAlpha() || style == BHIDDEN)
62 return isPresent ? width : 0;
BorderEdge.h 33 bool isPresent;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallWaitingNotification.java 35 public int isPresent = 0;
50 + " isPresent: " + isPresent
CdmaInformationRecords.java 106 public boolean isPresent; /* non-zero if signal information record is present */
113 public CdmaSignalInfoRec(int isPresent, int signalType, int alertPitch, int signal) {
114 this.isPresent = isPresent != 0;
123 " isPresent: " + isPresent +
  /frameworks/base/core/java/android/nfc/
INfcTag.aidl 33 boolean isPresent(int nativeHandle);
  /external/guava/guava/src/com/google/common/base/
Optional.java 102 public abstract boolean isPresent();
108 * @throws IllegalStateException if the instance is absent ({@link #isPresent} returns
185 if (optional.isPresent()) {
205 @Override public boolean isPresent() {
258 @Override public boolean isPresent() {
  /frameworks/base/core/java/android/nfc/tech/
Ndef.java 276 if (msg == null && !tagService.isPresent(serviceHandle)) {
280 } else if (!tagService.isPresent(serviceHandle)) {
BasicTagTechnology.java 63 return mTag.getTagService().isPresent(mTag.getServiceHandle());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/location/
CountryDetector.java 94 if (!Geocoder.isPresent()) {
161 if (!Geocoder.isPresent()) {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
options.js 166 var isPresent = false;
170 isPresent = true;
175 if (!isPresent) {
  /external/guava/guava-tests/test/com/google/common/base/
OptionalTest.java 42 assertFalse(optionalName.isPresent());
68 assertFalse(Optional.absent().isPresent());
72 assertTrue(Optional.of("training").isPresent());
  /external/guava/guava/src/com/google/common/collect/
BstInOrderPath.java 104 return nextInOrder(side).isPresent();
  /frameworks/base/location/java/android/location/
Geocoder.java 44 * isPresent() method to determine whether a Geocoder implementation
59 public static boolean isPresent() {
65 Log.e(TAG, "isPresent: got RemoteException", e);
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 58 boolean isPresent();
NfcService.java     [all...]
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 78 private boolean isPresent = true;
113 while (isPresent && !isStopped) {
120 isPresent = doPresenceCheck();
244 public synchronized boolean isPresent() {
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 76 private boolean isPresent = true;
110 while (isPresent && !isStopped) {
117 isPresent = doPresenceCheck();
232 public synchronized boolean isPresent() {
  /packages/apps/Nfc/nci/jni/
NativeNfcTag.cpp     [all...]
  /packages/services/Telephony/src/com/android/phone/
CallNotifier.java     [all...]
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 96 // The isPresent() helper method is only available on Gingerbread or above.
98 Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && Geocoder.isPresent();
  /frameworks/base/services/core/java/com/android/server/location/
ComprehensiveCountryDetector.java 463 return Geocoder.isPresent();
  /hardware/ril/include/telephony/
ril.h 283 char isPresent; /* non-zero if signal information record is present */
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
metadata_cache.js 866 present: data.isPresent,
886 if (data.isPresent) {
901 result.media = data.isPresent ? null : {};
  /external/chromium_org/net/third_party/nss/ssl/
sslimpl.h 293 unsigned int isPresent : 1;
298 unsigned char isPresent : 1;
    [all...]
  /hardware/ril/libril/
ril.cpp     [all...]

Completed in 607 milliseconds

1 2 3