HomeSort by relevance Sort by last modified time
    Searched defs:NONE (Results 1 - 25 of 1215) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/kati/
fileutil.h 32 NONE,
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapElementTest.java 28 /** Test for {@link ImapElement#NONE} */
30 assertFalse(ImapElement.NONE.isList());
31 assertFalse(ImapElement.NONE.isString());
33 assertTrue(ImapElement.NONE.equalsForTest(ImapElement.NONE));
34 assertFalse(ImapElement.NONE.equalsForTest(null));
35 assertFalse(ImapElement.NONE.equalsForTest(ImapTestUtils.STRING_1));
36 assertFalse(ImapElement.NONE.equalsForTest(ImapTestUtils.LIST_1));
  /external/easymock/src/org/easymock/
CaptureType.java 27 NONE,
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ValidationType.java 28 NONE;
  /external/v8/test/cctest/compiler/
test-operator.cc 14 #define NONE Operator::kNoProperties
19 Operator op1(10, NONE, "ThisOne", 0, 0, 0, 0, 0, 0);
22 Operator op2(11, NONE, "ThatOne", 0, 0, 0, 0, 0, 0);
25 Operator1<int> op3(12, NONE, "Mnemonic1", 0, 0, 0, 1, 0, 0, 12333);
28 Operator1<double> op4(13, NONE, "TheOther", 0, 0, 0, 1, 0, 0, 99.9);
34 Operator op1(17, NONE, "Another", 0, 0, 0, 0, 0, 0);
37 Operator op2(18, NONE, "Falsch", 0, 0, 0, 0, 0, 0);
43 Operator op1a(19, NONE, "Another1", 0, 0, 0, 0, 0, 0);
51 Operator op2a(20, NONE, "Falsch1", 0, 0, 0, 0, 0, 0);
79 Operator op1a(19, NONE, "Another1", 0, 0, 0, 0, 0, 0)
    [all...]
  /dalvik/dx/src/com/android/dx/io/
IndexType.java 27 NONE,
  /external/dexmaker/src/dx/java/com/android/dx/io/
IndexType.java 27 NONE,
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DiskCacheStrategy.java 10 NONE(false, false),
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
NodeShape.java 29 NONE("none");
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/text/
DateFormatProviderICU.java 19 private static final int NONE = -1;
23 return getInstance(style, NONE, locale);
33 return getInstance(NONE, style, locale);
44 if (dstyle == NONE) {
46 } else if (tstyle == NONE) {
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_info.c 32 #define NONE TGSI_OUTPUT_NONE
60 { 0, 0, 0, 0, 0, 0, NONE, "", 20 }, /* removed */
62 { 0, 0, 0, 0, 0, 0, NONE, "", 22 }, /* removed */
63 { 0, 0, 0, 0, 0, 0, NONE, "", 23 }, /* removed */
72 { 0, 0, 0, 0, 0, 0, NONE, "", 32 }, /* removed */
79 { 0, 0, 0, 0, 0, 0, NONE, "KILP", TGSI_OPCODE_KILP },
102 { 0, 1, 0, 0, 0, 0, NONE, "BRA", TGSI_OPCODE_BRA },
103 { 0, 0, 0, 1, 0, 0, NONE, "CAL", TGSI_OPCODE_CAL },
104 { 0, 0, 0, 0, 0, 0, NONE, "RET", TGSI_OPCODE_RET },
113 { 0, 0, 0, 0, 0, 0, NONE, "BRK", TGSI_OPCODE_BRK }
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
Timeout.java 48 public static final Timeout NONE = new Timeout() {
  /external/skia/gm/
blurs.cpp 14 SkBlurStyle NONE = SkBlurStyle(-999);
19 { NONE, 0, 0 },
37 if (gRecs[i].fStyle != NONE) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ReferenceType.java 42 public static final int NONE = 4;
74 * Validate a specific reference type. Note that the NONE placeholder is specifically not considered valid here.
  /frameworks/base/graphics/java/android/graphics/
Insets.java 29 public static final Insets NONE = new Insets(0, 0, 0, 0);
57 return NONE;
70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom);
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapElement.java 26 * |-- ImapElement.NONE (for 'index out of range')
50 public static final ImapElement NONE = new ImapElement() {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WifiSecurity.java 34 NONE(R.string.wifi_security_type_none);
44 return NONE;
55 return (config.wepKeys[0] != null) ? WEP : NONE;
63 case AccessPoint.SECURITY_NONE: return NONE;
80 return this == NONE;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
SpaceState.java 28 // None: the state where all the keyboard behavior is the most "standard" and no automatic
31 public static final int NONE = 0;
43 // strip inserts it before the space (while it inserts it after the space in the NONE state).
  /bionic/tools/relocation_packer/src/
elf_file.h 11 // NONE-type entries rather than cutting a hole out of the shared object
39 relocations_type_(NONE), has_android_relocations_(false) {}
44 // NONE-type entries.
60 NONE = 0, REL, RELA
  /cts/common/util/src/com/android/compatibility/common/util/
ResultUnit.java 24 NONE,
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
rdataclass.py 34 NONE = 254
42 'NONE' : NONE,
62 NONE : True,
82 if value is None:
84 if match == None:
102 if text is None:
  /external/libavc/encoder/
ime_defs.h 30 * None
45 #define NONE 0
  /external/mesa3d/src/glx/
vertarr.c 107 #define NONE {0, 0, 0}
139 {NONE, NONE, NONE, F(2)}, /* GL_V2F */
140 {NONE, NONE, NONE, F(3)}, /* GL_V3F */
141 {NONE, UB4, NONE, F(2)}, /* GL_C4UB_V2F */
142 {NONE, UB4, NONE, F(3)}, /* GL_C4UB_V3F *
    [all...]
  /external/regex-re2/re2/
prefilter.h 25 NONE, // Nothing matches
  /frameworks/av/media/libstagefright/codecs/mp3dec/
SoftMP3.h 68 NONE,

Completed in 1119 milliseconds

1 2 3 4 5 6 7 8 91011>>