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

1 2 3 4 5 6 7 8

  /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/org/mockito/internal/matchers/
Null.java 14 public class Null extends ArgumentMatcher<Object> implements Serializable {
17 public static final Null NULL = new Null();
19 private Null() {
23 return actual == null;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMSettableTokenList.idl 26 [TreatReturnedNullStringAs=Null, ImplementedAs=item] getter DOMString (unsigned long index);
DOMStringList.idl 30 [TreatReturnedNullStringAs=Null] getter DOMString item([Default=Undefined] optional unsigned long index);
DOMTokenList.idl 30 [TreatReturnedNullStringAs=Null] getter DOMString item(unsigned long index);
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaList.idl 34 [TreatReturnedNullStringAs=Null] getter DOMString item(unsigned long index);
  /external/chromium_org/ppapi/cpp/
var_array.cc 21 VarArray::VarArray() : Var(Null()) {
33 Var::operator=(Var(Null()));
42 Var::operator=(Var(Null()));
62 Var::operator=(Var(Null()));
var_dictionary.cc 21 VarDictionary::VarDictionary() : Var(Null()) {
33 Var::operator=(Var(Null()));
42 Var::operator=(Var(Null()));
64 Var::operator=(Var(Null()));
var.h 23 /// Special value passed to constructor to make <code>NULL</code>.
24 struct Null {};
30 /// A constructor used to create a <code>Var</code> of type <code>Null</code>.
31 Var(Null);
110 /// This function determines if this <code>Var</code> is a null value.
112 /// @return true if this <code>Var</code> is null, otherwise false.
217 /// it will assert in debug mode, and return a null resource.
253 /// <code>Var</code> as a possible NULL exception. This class will handle
254 /// getting the address of the internal value out if it's non-NULL and
263 /// - If NULL is passed, we return NULL from get() and do nothing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageEvent.idl 30 [InitializedByEventConstructor, TreatReturnedNullStringAs=Null] readonly attribute DOMString oldValue;
31 [InitializedByEventConstructor, TreatReturnedNullStringAs=Null] readonly attribute DOMString newValue;
  /external/chromium_org/gin/test/
file.cc 29 return v8::Null(args->isolate());
34 return v8::Null(args->isolate());
42 return v8::Null(args->isolate());
50 return v8::Null(args->isolate());
54 return v8::Null(args->isolate());
  /external/chromium_org/v8/src/
hydrogen-types.cc 21 if (type->Is(T::Null())) return HType::Null();
44 if (value->IsNull()) return HType::Null();
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8EventTargetCustom.cpp 42 return v8::Null(isolate);
V8WorkerGlobalScopeCustom.cpp 112 return v8::Null(isolate);
116 return v8::Null(isolate);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
TypeConversions.idl 50 [ImplementedAs=testByteString, TreatReturnedNullStringAs=Null] attribute ByteString testByteStringTreatReturnedNullStringAsNullAttribute;
55 [ImplementedAs=setTestByteString] void setTestByteStringDefaultNull(optional ByteString byteString = null);
58 [ImplementedAs=testScalarValueString, TreatReturnedNullStringAs=Null] attribute ScalarValueString testScalarValueStringTreatReturnedNullStringAsNullAttribute;
63 [ImplementedAs=setTestScalarValueString] void setTestScalarValueStringDefaultNull(optional ScalarValueString scalarValueString = null);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
InstallEvent.cpp 63 return ScriptPromise::reject(scriptState, v8::Null(scriptState->isolate()));
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-open-file-private.hh 78 if (unlikely (i >= numTables)) return Null(TableRecord);
168 default:return Null(OpenTypeFontFace);
230 default: return Null(OpenTypeFontFace);
  /external/harfbuzz_ng/src/
hb-open-file-private.hh 78 if (unlikely (i >= numTables)) return Null(TableRecord);
168 default:return Null(OpenTypeFontFace);
230 default: return Null(OpenTypeFontFace);
  /external/chromium_org/ppapi/cpp/private/
var_private.h 24 VarPrivate(Null) : Var(Null()) {}
40 // NULL.
43 bool HasProperty(const Var& name, Var* exception = NULL) const;
44 bool HasMethod(const Var& name, Var* exception = NULL) const;
45 VarPrivate GetProperty(const Var& name, Var* exception = NULL) const;
47 Var* exception = NULL) const;
48 void SetProperty(const Var& name, const Var& value, Var* exception = NULL);
49 void RemoveProperty(const Var& name, Var* exception = NULL);
51 Var* exception = NULL);
    [all...]
host_resolver_private.cc 54 return Var(Var::Null());
  /external/chromium_org/third_party/WebKit/Source/bindings/
IDLExtendedAttributes.txt 99 TreatReturnedNullStringAs=Null|Undefined
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8ErrorHandler.cpp 58 return v8::Null(isolate());
68 error = v8::Null(isolate());
  /external/chromium_org/mojo/bindings/js/
handle.cc 44 return v8::Null(isolate);
  /external/chromium_org/ppapi/tests/
test_console.cc 17 console_interface_(NULL) {
54 TestConsoleSub(interface, pp_instance, source, pp::Var(pp::Var::Null()));
  /external/llvm/unittests/ADT/
PointerUnionTest.cpp 38 TEST_F(PointerUnionTest, Null) {

Completed in 744 milliseconds

1 2 3 4 5 6 7 8