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

1 2 3 4 5 6 7 8 91011>>

  /external/guice/lib/build/jdiff/
Null.java 2 * This class is used only as a "null" argument for Javadoc when comparing
6 public class Null {
7 public Null() {
  /external/llvm/lib/Fuzzer/test/
NullDerefOnEmptyTest.cpp 10 static volatile int *Null = 0;
14 std::cout << "Found the target, dereferencing NULL\n";
15 *Null = 1;
NullDerefTest.cpp 11 static volatile int *Null = 0;
19 std::cout << "Found the target, dereferencing NULL\n";
20 *Null = 1;
  /external/easymock/src/org/easymock/internal/matchers/
Null.java 22 public class Null implements IArgumentMatcher, Serializable {
26 public static final Null NULL = new Null();
28 private Null() {
32 return actual == null;
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Null.java 12 public class Null implements ArgumentMatcher<Object>, Serializable {
14 public static final Null NULL = new Null();
16 private Null() {
20 return actual == null;
  /frameworks/compile/mclinker/lib/Fragment/
NullFragment.cpp 16 NullFragment::NullFragment(SectionData* pSD) : Fragment(Fragment::Null, pSD) {
FragmentRef.cpp 36 FragmentRef::FragmentRef() : m_pFragment(NULL), m_Offset(0) {
49 /// return NULL.
54 while (frag != NULL) {
60 if ((frag != NULL) && (frag->size() != 0)) {
67 if (frag == NULL)
68 return Null();
77 SectionData* data = NULL;
91 if (data == NULL || data->empty()) {
92 return Null();
102 FragmentRef* FragmentRef::Null() {
    [all...]
  /external/llvm/unittests/ADT/
PostOrderIteratorTest.cpp 22 void *Null = nullptr;
24 PIS.insertEdge(Null, Null);
27 PIS.insertEdge(Null, Null);
  /frameworks/compile/mclinker/include/mcld/Fragment/
NullFragment.h 24 explicit NullFragment(SectionData* pSD = NULL);
30 return F->getKind() == Fragment::Null;
FragmentRef.h 40 /// return NULL.
48 static FragmentRef* Null();
64 bool isNull() const { return (this == Null()); }
Fragment.h 29 enum Type { Alignment, Fillment, Region, Target, Stub, Null };
34 explicit Fragment(Type pKind, SectionData* pParent = NULL);
  /frameworks/compile/mclinker/lib/LD/
LDSymbol.cpp 31 LDSymbol::LDSymbol() : m_pResolveInfo(NULL), m_pFragRef(NULL), m_Value(0) {
60 pSymbol = NULL;
67 LDSymbol* LDSymbol::Null() {
69 if (g_NullSymbol->resolveInfo() == NULL) {
70 g_NullSymbol->setResolveInfo(*ResolveInfo::Null());
72 ResolveInfo::Null()->setSymPtr(&*g_NullSymbol);
86 return (this == Null());
ELFReaderIf.cpp 54 if (pInput.context()->getSection(pShndx) == NULL ||
99 return FragmentRef::Null();
102 return FragmentRef::Null();
105 return FragmentRef::Null();
109 if (sect_hdr == NULL)
114 return FragmentRef::Null();
117 return FragmentRef::Null();
  /frameworks/compile/mclinker/unittests/
SectionDataTest.cpp 39 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
43 s->getSection().kind() == LDFileFormat::Null);
49 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
FragmentTest.cpp 38 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
53 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
  /external/llvm/test/MC/COFF/
seh-section-2.s 68 # CHECK: BaseType: Null (0x0)
69 # CHECK: ComplexType: Null (0x0)
86 # CHECK: BaseType: Null (0x0)
87 # CHECK: ComplexType: Null (0x0)
104 # CHECK: BaseType: Null (0x0)
105 # CHECK: ComplexType: Null (0x0)
122 # CHECK: BaseType: Null (0x0)
123 # CHECK: ComplexType: Null (0x0)
140 # CHECK: BaseType: Null (0x0)
141 # CHECK: ComplexType: Null (0x0
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplewriter/
simplewriter.cpp 20 writer.Null();
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/
CpuGdt.h 40 GDT_ENTRY Null;
53 #define NULL_SEL OFFSET_OF (GDT_ENTRIES, Null)
  /external/harfbuzz_ng/src/
hb-ot-var.cc 42 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::fvar);
49 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::avar);
68 return &_get_fvar (face) != &OT::Null(OT::fvar);
hb-ot-math.cc 35 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::MATH);
58 return &_get_math (face) != &OT::Null(OT::MATH);
  /external/v8/src/crankshaft/
hydrogen-types.cc 21 if (type->Is(AstType::Null())) return HType::Null();
42 if (raw_value->IsNull(isolate)) return HType::Null();
  /cts/hostsidetests/sustainedperf/dhrystone/
dhry.h 402 #define Null 0
403 /* Value of a Null pointer */
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 20 bool Null() { return out_.Null(); }
  /external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DescriptorsTest.cs 70 Assert.Null(file.FindTypeByName<MessageDescriptor>("NoSuchType"));
71 Assert.Null(file.FindTypeByName<MessageDescriptor>("protobuf_unittest.TestAllTypes"));
78 Assert.Null(file.FindTypeByName<EnumDescriptor>("NoSuchType"));
79 Assert.Null(file.FindTypeByName<EnumDescriptor>("protobuf_unittest.ForeignEnum"));
112 Assert.Null(messageType.FindDescriptor<FieldDescriptor>("no_such_field"));
114 Assert.Null(messageType.FindFieldByNumber(571283));
123 Assert.Null(messageType.FindDescriptor<MessageDescriptor>("NoSuchType"));
130 Assert.Null(messageType.FindDescriptor<EnumDescriptor>("NoSuchType"));
185 Assert.Null(enumType.ContainingType);
186 Assert.Null(enumType.Proto.Options)
    [all...]
  /cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
ImeEvent.java 31 Null,
37 if (object == null) {
38 return ReturnType.Null;
95 bundle.putBundle("mExitState", mExitState != null ? mExitState.toBundle() : null);
99 case Null:
128 case Null:
130 result = null;
247 * @throws NullPointerException if the return value is {@code null}
248 * @throws ClassCastException if the return value is non-{@code null} object that is differen
    [all...]

Completed in 1232 milliseconds

1 2 3 4 5 6 7 8 91011>>