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

1 2 3

  /external/llvm/lib/MC/
MCObjectWriter.cpp 32 if (SA.AliasedSymbol().isUndefined() || SB.AliasedSymbol().isUndefined())
MCMachOStreamer.cpp 122 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
276 if (Symbol->isUndefined())
298 if (Symbol->isUndefined())
325 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
352 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
MCNullStreamer.cpp 38 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
MachObjectWriter.cpp 43 if (SD->Symbol->isUndefined())
91 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined())
94 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined())
314 if (Symbol.isUndefined())
327 if (Data.isExternal() || Symbol.isUndefined())
508 if (!it->isExternal() && !Symbol.isUndefined())
522 if (Symbol.isUndefined()) {
544 if (it->isExternal() || Symbol.isUndefined())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
GridTrackSize.h 57 ASSERT(!minTrackBreadth.isLength() || !minTrackBreadth.length().isUndefined());
70 ASSERT(!m_minTrackBreadth.isLength() || !m_minTrackBreadth.length().isUndefined());
80 ASSERT(!m_maxTrackBreadth.isLength() || !m_maxTrackBreadth.length().isUndefined());
BasicShapes.h 84 ASSERT(!radiusX.isUndefined());
89 ASSERT(!radiusY.isUndefined());
202 ASSERT(!radiusX.isUndefined());
207 ASSERT(!radiusY.isUndefined());
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteEarlyExitException.js 4 if (org.antlr.lang.isUndefined(elementDescription)) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Length.h 106 bool operator==(const Length& o) const { return (m_type == o.m_type) && (m_quirk == o.m_quirk) && (isUndefined() || (getFloatValue() == o.getFloatValue()) || isCalculatedEqual(o)); }
189 bool isUndefined() const { return type() == Undefined; }
197 ASSERT(!isUndefined());
205 if (isUndefined())
214 if (isUndefined() || isCalculated())
238 if (isUndefined() || from.isUndefined())
268 ASSERT(!isUndefined());
286 ASSERT(!isUndefined());
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 86 bool isUndefined() const { return getLatticeValue() == undefined; }
113 if (isUndefined()) {
140 assert(isUndefined() && "Can't force a defined value!");
348 if (IV.isOverdefined() || MergeWithV.isUndefined())
352 else if (IV.isUndefined())
529 if (!BCValue.isUndefined())
555 if (!SCValue.isUndefined())
599 return !BCValue.isUndefined();
617 return !SCValue.isUndefined();
674 if (IV.isUndefined()) continue; // Doesn't influence PHI node
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptArguments.cpp 72 if (checkForNullOrUndefined && (value.isNull() || value.isUndefined()))
  /external/llvm/include/llvm/MC/
MCSymbol.h 99 /// isUndefined - Check if this symbol undefined (i.e., implicitly defined).
100 bool isUndefined() const {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 183 if (tx.isUndefined() || ty.isUndefined())
212 if (tx.isUndefined() || ty.isUndefined() || tz.isUndefined())
317 if (p.isUndefined())
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GradControl.java 184 if (isUndefined()) {
197 if (isUndefined()) {
210 if (isUndefined()) {
267 public boolean isUndefined() {
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 129 if (property_mirror.isUndefined()) {
132 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
144 if (!scope.scopeObject().property('arguments').isUndefined()) {
148 if (!scope.scopeObject().property('.catch-var').isUndefined()) {
152 if (!scope.scopeObject().property('').isUndefined()) {
156 if (!scope.scopeObject().property('.block').isUndefined()) {
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 129 if (property_mirror.isUndefined()) {
132 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
144 if (!scope.scopeObject().property('arguments').isUndefined()) {
148 if (!scope.scopeObject().property('.catch-var').isUndefined()) {
152 if (!scope.scopeObject().property('').isUndefined()) {
156 if (!scope.scopeObject().property('.block').isUndefined()) {
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-blockscopes.js 132 if (property_mirror.isUndefined()) {
135 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
147 if (!scope.scopeObject().property('arguments').isUndefined()) {
151 if (!scope.scopeObject().property('.catch-var').isUndefined()) {
155 if (!scope.scopeObject().property('').isUndefined()) {
159 if (!scope.scopeObject().property('.block').isUndefined()) {
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 132 if (property_mirror.isUndefined()) {
135 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
147 if (!scope.scopeObject().property('arguments').isUndefined()) {
151 if (!scope.scopeObject().property('.catch-var').isUndefined()) {
155 if (!scope.scopeObject().property('').isUndefined()) {
159 if (!scope.scopeObject().property('.block').isUndefined()) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptValue.h 122 bool isUndefined() const
126 return !value.IsEmpty() && value->IsUndefined();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 107 int maxWidth = style()->maxWidth().isUndefined() ? w : calcScrollbarThicknessUsing(MaxSize, style()->maxWidth(), visibleSize, renderView);
125 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(MaxSize, style()->maxHeight(), visibleSize, renderView);
  /external/clang/include/clang/Lex/
MacroInfo.h 417 bool isUndefined() const { return UndefLoc.isValid(); }
442 return !Def.isUndefined();
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 105 bool isUndefined() const { return Tag == undefined; }
145 assert(isUndefined());
163 assert(isUndefined() || isConstant());
180 assert(isUndefined());
192 if (RHS.isUndefined() || isOverdefined()) return false;
195 if (isUndefined()) {
278 if (Val.isUndefined())
503 if (!BBLV.isUndefined()) {
    [all...]
  /external/clang/lib/Lex/
MacroInfo.cpp 159 return (!Def.isUndefined() ||
  /external/chromium_org/v8/test/mjsunit/
mirror-undefined.js 41 assertTrue(mirror.isUndefined());
  /external/v8/test/mjsunit/
mirror-undefined.js 41 assertTrue(mirror.isUndefined());
  /external/chromium_org/v8/test/webkit/
typeof-constant-string.js 28 function isUndefined(a)
33 shouldBeTrue("isUndefined(undefined)");
34 shouldBeFalse("isUndefined(1)");

Completed in 752 milliseconds

1 2 3