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

  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 166 {# Dictionaries must have type Undefined, Null or Object:
  /external/chromium_org/third_party/jinja2/
tests.py 12 from jinja2.runtime import Undefined
49 See the :func:`default` filter for a simple way to set undefined
52 return not isinstance(value, Undefined)
57 return isinstance(value, Undefined)
137 'undefined': test_undefined,
__init__.py 44 # undefined types
45 from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined
63 'MemcachedBytecodeCache', 'Undefined', 'DebugUndefined',
filters.py 19 from jinja2.runtime import Undefined
141 All values that are neither `none` nor `undefined` are automatically
165 if value is not None and not isinstance(value, Undefined)
269 """If the value is undefined it will return the passed default value,
285 if isinstance(value, Undefined) or (boolean and not value):
351 return environment.undefined('No first item, sequence was empty.')
360 return environment.undefined('No last item, sequence was empty.')
369 return environment.undefined('No random item, sequence was empty.')
794 return environment.undefined(obj=obj, name=name)
runtime.py 107 :class:`Undefined` object for missing variables.
132 return self.environment.undefined('there is no parent block '
148 :class:`Undefined` object with the name of the name looked up.
154 return self.environment.undefined(name=key)
195 return __self.environment.undefined('value was undefined because '
230 undefined.
233 if isinstance(item, Undefined):
267 undefined('there is no parent block called %r.' %
409 value = self._environment.undefined(
    [all...]
utils.py 86 """Check if the object passed is undefined. This does nothing more than
87 performing an instance check against :class:`Undefined` but looks nicer.
89 undefined variables. For example a custom default filter can look like
97 from jinja2.runtime import Undefined
98 return isinstance(obj, Undefined)
environment.py 25 from jinja2.runtime import Undefined, new_context
92 assert issubclass(environment.undefined, Undefined), 'undefined must ' \
93 'be a subclass of undefined because filters depend on it.'
109 will lead to surprising effects and undefined behavior.
172 `undefined`
173 :class:`Undefined` or a subclass of it that is used to represent
174 undefined values in the template.
253 undefined=Undefined
    [all...]
  /bionic/libc/kernel/uapi/sound/
hdsp.h 31 Undefined,
  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoAlgorithm.h 90 static const ParamsTypeOrUndefined Undefined = -1;
97 // If an operation is not applicable for the algorithm, set to Undefined.
  /external/kernel-headers/original/uapi/sound/
hdsp.h 32 Undefined,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/sound/
hdsp.h 31 Undefined,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sound/
hdsp.h 31 Undefined,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/sound/
hdsp.h 31 Undefined,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
hdsp.h 31 Undefined,
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 68 Undefined = 0,
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 87 Undefined = -1,
88 TypeFirst = Undefined,
216 type = Undefined;
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 563 class Undefined : public SExpr {
567 Undefined(const clang::Stmt *S = nullptr) : SExpr(COP_Undefined), Cstmt(S) {}
568 Undefined(const Undefined &U) : SExpr(U), Cstmt(U.Cstmt) {}
575 template <class C> typename C::CType compare(Undefined* E, C& Cmp) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 268 enum { Overdefined = -3, Undefined = -2 };
275 // undefined, otherwise set to the first true element. SecondTrueElement is
276 // -2 when undefined, -3 when overdefined and >= 0 when that index is true.
277 int FirstTrueElement = Undefined, SecondTrueElement = Undefined;
281 int FirstFalseElement = Undefined, SecondFalseElement = Undefined;
286 /// This is -2 when undefined, -3 when overdefined, and otherwise the last
287 /// index in the range (inclusive). We use -2 for undefined here because we
289 int TrueRangeEnd = Undefined, FalseRangeEnd = Undefined
    [all...]
  /external/chromium_org/v8/include/
v8.h 307 friend Handle<Primitive> Undefined(Isolate* isolate);
800 * for which the handle scope has been deleted is undefined.
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddk.h 727 ULONG Undefined:3;
807 USHORT Undefined:1;
    [all...]
wdm.h     [all...]

Completed in 712 milliseconds