HomeSort by relevance Sort by last modified time
    Searched defs:Null (Results 1 - 14 of 14) sorted by null

  /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/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.h 46 Null,
  /external/webkit/Source/WebKit2/Shared/cf/
ArgumentCodersCF.cpp 54 Null,
63 return Null;
125 case Null:
202 case Null:
  /external/clang/include/clang/AST/
TemplateBase.h 44 Null = 0,
92 TemplateArgument() : Kind(Null), TypeOrValue(0) { }
234 bool isNull() const { return Kind == Null; }
  /external/llvm/lib/Analysis/
DIBuilder.cpp 65 /// getNonCompileUnitScope - If N is compile unit return NULL otherwise return
69 return NULL;
133 NULL // TheCU
156 NULL, //TheCU,
158 NULL, // Filename
179 NULL, //TheCU,
181 NULL, // Filename
198 NULL, //TheCU,
200 NULL, // Filename
217 NULL, //TheCU
    [all...]
ConstantFolding.cpp 44 /// TargetData. This always returns a non-null constant, but it may be a
426 /// return null.
469 // Append NULL at the end.
514 /// otherwise TD is null.
728 /// If successful, the constant result is returned, if not, null is returned.
789 /// result is returned, if not, null is returned.
810 /// returned, if not, null is returned. Note that this function can fail when
    [all...]
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview_p.h 152 enum Status { Null, Ready, Loading, Error };
  /bionic/libc/netbsd/isc/
eventlib_p.h 50 #define OK(x) if ((x) < 0) EV_ERR(errno); else (void)NULL
54 #define NEW(p) if (((p) = memget(sizeof *(p))) != NULL) \
57 (void)NULL;
172 enum { Accept, File, Stream, Timer, Wait, Free, Null } type;
180 struct { const void *placeholder; } null; member in union:evEvent_p::__anon552
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 193 llvm::Constant *Null = llvm::Constant::getNullValue(CGF.ConvertType(Elem));
194 return ComplexPairTy(Null, Null);
199 llvm::Constant *Null =
201 return ComplexPairTy(Null, Null);
753 // Empty init list intializes to null
ItaniumCXXABI.cpp 183 return llvm::StructType::get(getPtrDiffTy(), getPtrDiffTy(), NULL);
305 // Apply the offset, which we assume is non-null.
333 /// This is why -1 is a reasonable choice for null data member
370 // offset if the source is non-null.
378 // Null check.
379 llvm::Value *Null = llvm::Constant::getAllOnesValue(Src->getType());
380 llvm::Value *IsNull = Builder.CreateICmpEQ(Src, Null, "memptr.isnull");
426 // If the source is a member data pointer, we have to do a null
436 // Null converts to null
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 133 /// null/false. When the first accessing function is noticed, it is recorded.
638 /// value will trap if the value is dynamically null. PHIs keeps track of any
674 // Ignore icmp X, null
684 /// from GV will trap if the loaded value is null. Note that this also permits
685 /// comparisons of the loaded value against null, as a special case.
769 /// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
771 /// if the loaded value is dynamically null, then we know that they cannot be
772 /// reachable with a null optimize away the load.
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 105 Null,
114 "RegExp", "Array", "RTObject", "Object", "Null", "RTArray"};
162 return Null;
622 } else if (type == Null) {
646 } else if (type == Null) {
814 // Variants with QObject * can be isNull but not a null pointer
815 // An empty QString variant is also null
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 339 // Comparing a pointer with null, or any other constant, isn't an
405 /// nothing if passed a null pointer.
    [all...]
  /external/v8/src/
api.cc 93 i::V8::FatalProcessOutOfMemory(NULL); \
128 if (isolate->exception_behavior() == NULL) {
283 return i::V8::Initialize(NULL);
290 if (isolate != NULL) {
305 if (isolate != NULL)
355 RegisteredExtension* RegisteredExtension::first_extension_ = NULL;
395 v8::Handle<Primitive> Null() {
397 if (!EnsureInitializedForIsolate(isolate, "v8::Null()")) {
429 stack_limit_(NULL) { }
446 if (constraints->stack_limit() != NULL) {
    [all...]

Completed in 551 milliseconds