Searched defs:Undefined (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dmethods.cpp166 {# Dictionaries must have type Undefined, Null or Object: variable
/external/chromium_org/third_party/jinja2/
H A Dtests.py12 from jinja2.runtime import Undefined namespace
52 return not isinstance(value, Undefined)
57 return isinstance(value, Undefined)
H A D__init__.py45 from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined namespace
63 'MemcachedBytecodeCache', 'Undefined', 'DebugUndefined',
H A Dfilters.py19 from jinja2.runtime import Undefined namespace
165 if value is not None and not isinstance(value, Undefined)
285 if isinstance(value, Undefined) or (boolean and not value):
H A Druntime.py107 :class:`Undefined` object for missing variables.
148 :class:`Undefined` object with the name of the name looked up.
233 if isinstance(item, Undefined):
442 class Undefined(object): class in inherits:object
446 >>> foo = Undefined(name='foo')
523 return 'Undefined'
527 class DebugUndefined(Undefined):
554 class StrictUndefined(Undefined):
576 Undefined._fail_with_undefined_error
581 del Undefined
[all...]
H A Dutils.py87 performing an instance check against :class:`Undefined` but looks nicer.
97 from jinja2.runtime import Undefined namespace
98 return isinstance(obj, Undefined)
H A Denvironment.py25 from jinja2.runtime import Undefined, new_context namespace
92 assert issubclass(environment.undefined, Undefined), 'undefined must ' \
173 :class:`Undefined` or a subclass of it that is used to represent
253 undefined=Undefined,
580 Undefined
896 undefined=Undefined,
1102 if self._undefined_to_none and isinstance(rv, Undefined):
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCryptoAlgorithm.h90 static const ParamsTypeOrUndefined Undefined = -1; member in struct:blink::WebCryptoAlgorithmInfo
97 // If an operation is not applicable for the algorithm, set to Undefined.
/external/kernel-headers/original/uapi/sound/
H A Dhdsp.h32 Undefined, enumerator in enum:HDSP_IO_Type
/external/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp203 llvm::DenseMap<NamedDecl*, SourceLocation> &Undefined){
205 Sources[i]->ReadUndefinedButUsed(Undefined);
202 ReadUndefinedButUsed( llvm::DenseMap<NamedDecl*, SourceLocation> &Undefined) argument
H A DSema.cpp424 SmallVectorImpl<std::pair<NamedDecl *, SourceLocation> > &Undefined) {
449 Undefined.push_back(std::make_pair(ND, I->second));
455 std::sort(Undefined.begin(), Undefined.end(),
475 SmallVector<std::pair<NamedDecl *, SourceLocation>, 16> Undefined;
476 S.getUndefinedButUsed(Undefined);
477 if (Undefined.empty()) return;
480 I = Undefined.begin(), E = Undefined.end(); I != E; ++I) {
1196 llvm::DenseMap<NamedDecl *, SourceLocation> &Undefined) {
423 getUndefinedButUsed( SmallVectorImpl<std::pair<NamedDecl *, SourceLocation> > &Undefined) argument
1195 ReadUndefinedButUsed( llvm::DenseMap<NamedDecl *, SourceLocation> &Undefined) argument
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebInputEvent.h87 Undefined = -1, enumerator in enum:blink::WebInputEvent::Type
88 TypeFirst = Undefined,
216 type = Undefined;
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h563 class Undefined : public SExpr { class in namespace:clang::threadSafety
567 Undefined(const clang::Stmt *S = nullptr) : SExpr(COP_Undefined), Cstmt(S) {} function in class:clang::threadSafety::Undefined
568 Undefined(const Undefined &U) : SExpr(U), Cstmt(U.Cstmt) {} function in class:clang::threadSafety::Undefined
575 template <class C> typename C::CType compare(Undefined* E, C& Cmp) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp268 enum { Overdefined = -3, Undefined = -2 }; enumerator in enum:__anon26244
277 int FirstTrueElement = Undefined, SecondTrueElement = Undefined;
281 int FirstFalseElement = Undefined, SecondFalseElement = Undefined;
289 int TrueRangeEnd = Undefined, FalseRangeEnd = Undefined;
335 if (FirstTrueElement == Undefined)
339 if (SecondTrueElement == Undefined)
352 if (FirstFalseElement == Undefined)
[all...]
/external/clang/lib/Serialization/
H A DASTWriter.cpp4175 SmallVector<std::pair<NamedDecl *, SourceLocation>, 16> Undefined; local
4176 SemaRef.getUndefinedButUsed(Undefined);
4178 I = Undefined.begin(), E = Undefined.end(); I != E; ++I) {
/external/chromium_org/v8/include/
H A Dv8.h307 friend Handle<Primitive> Undefined(Isolate* isolate);
2765 * v8::Undefined.
4039 V8_INLINE Handle<Primitive> Undefined(Isolate* isolate);
6286 if (i < 0 || length_ <= i) return Local<Value>(*Undefined(GetIsolate()));
6812 Handle<Primitive> Undefined(Isolate* isolate) { function in namespace:v8

Completed in 438 milliseconds