OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isUndefined
(Results
1 - 25
of
86
) sorted by null
1
2
3
4
/external/webkit/Source/WebCore/bindings/js/
CallbackFunction.cpp
36
if (value.
isUndefined
() && (acceptedValues & CallbackAllowUndefined))
JSDirectoryEntryCustom.cpp
62
if (!exec->argument(1).isNull() && !exec->argument(1).
isUndefined
() && exec->argument(1).isObject() && !exec->argument(1).inherits(&JSWebKitFlags::s_info)) {
74
if (exec->argumentCount() > 2 && !exec->argument(2).isNull() && !exec->argument(2).
isUndefined
()) {
82
if (exec->argumentCount() > 3 && !exec->argument(3).isNull() && !exec->argument(3).
isUndefined
()) {
108
if (!exec->argument(1).isNull() && !exec->argument(1).
isUndefined
() && exec->argument(1).isObject() && !exec->argument(1).inherits(&JSWebKitFlags::s_info)) {
120
if (exec->argumentCount() > 2 && !exec->argument(2).isNull() && !exec->argument(2).
isUndefined
()) {
128
if (exec->argumentCount() > 3 && !exec->argument(3).isNull() && !exec->argument(3).
isUndefined
()) {
ScriptValue.h
58
bool
isUndefined
() const;
JSOptionConstructor.cpp
54
if ((exec->argumentCount() >= 1) && !exec->argument(0).
isUndefined
())
58
if ((exec->argumentCount() >= 2) && !exec->argument(1).
isUndefined
())
JSGeolocationCustom.cpp
69
if (!enableHighAccuracyValue.
isUndefined
()) {
78
if (!timeoutValue.
isUndefined
()) {
94
if (!maximumAgeValue.
isUndefined
()) {
ScriptValue.cpp
83
bool ScriptValue::
isUndefined
() const
87
return m_value.get().
isUndefined
();
120
if (value.isNull() || value.
isUndefined
())
JSInspectorFrontendHostCustom.cpp
111
if (!enabled.
isUndefined
())
113
if (!checked.
isUndefined
())
JSDirectoryEntrySyncCustom.cpp
50
if (argument.isNull() || argument.
isUndefined
() || !argument.isObject())
/external/webkit/Source/JavaScriptCore/runtime/
ErrorPrototype.cpp
60
if (!name.
isUndefined
()) {
61
if (!message.
isUndefined
())
65
if (!message.
isUndefined
())
NumberPrototype.cpp
76
static ALWAYS_INLINE bool getIntegerArgumentInRange(ExecState* exec, int low, int high, int& result, bool&
isUndefined
)
79
isUndefined
= false;
82
if (argument0.
isUndefined
()) {
83
isUndefined
= true;
108
bool
isUndefined
;
109
if (!getIntegerArgumentInRange(exec, 0, 20, decimalPlacesInExponent,
isUndefined
))
118
unsigned length =
isUndefined
140
bool
isUndefined
; // This is ignored; undefined treated as 0.
141
if (!getIntegerArgumentInRange(exec, 0, 20, decimalPlaces,
isUndefined
))
178
bool
isUndefined
;
[
all
...]
ErrorInstance.cpp
51
if (message.
isUndefined
())
RegExpPrototype.cpp
88
if (!arg1.
isUndefined
())
97
if (!arg1.
isUndefined
()) {
JSValueInlineMethods.h
264
inline bool JSValue::
isUndefined
() const
276
return
isUndefined
() || isNull();
415
inline bool JSValue::
isUndefined
() const
Operations.cpp
63
if (v.
isUndefined
())
/external/llvm/lib/MC/
MCObjectWriter.cpp
58
if (SA.AliasedSymbol().
isUndefined
() || SB.AliasedSymbol().
isUndefined
())
MCSymbol.cpp
57
assert((
isUndefined
() || (isAbsolute() && isa<MCConstantExpr>(Value))) &&
MCMachOStreamer.cpp
118
assert(Symbol->
isUndefined
() && "Cannot define a symbol twice!");
233
if (Symbol->
isUndefined
())
255
if (Symbol->
isUndefined
())
282
assert(Symbol->
isUndefined
() && "Cannot define a symbol twice!");
299
assert(Symbol->
isUndefined
() && "Cannot define a symbol twice!");
MCNullStreamer.cpp
35
assert(Symbol->
isUndefined
() && "Cannot define a symbol twice!");
/external/llvm/lib/Transforms/Scalar/
SCCP.cpp
88
bool
isUndefined
() const { return getLatticeValue() == undefined; }
115
if (
isUndefined
()) {
142
assert(
isUndefined
() && "Can't force a defined value!");
359
if (IV.isOverdefined() || MergeWithV.
isUndefined
())
363
else if (IV.
isUndefined
())
563
if (!BCValue.
isUndefined
())
585
if (!SCValue.
isUndefined
())
629
return !BCValue.
isUndefined
();
644
return !SCValue.
isUndefined
();
722
if (IV.
isUndefined
()) continue; // Doesn't influence PHI node
[
all
...]
/external/llvm/include/llvm/MC/
MCSymbol.h
98
///
isUndefined
- Check if this symbol undefined (i.e., implicitly defined).
99
bool
isUndefined
() const {
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.h
98
void
isUndefined
();
/external/webkit/Source/WebCore/inspector/
ScriptArguments.cpp
70
if (checkForNullOrUndefined && (value.isNull() || value.
isUndefined
()))
/external/webkit/Source/WebCore/rendering/
RenderScrollbarPart.cpp
96
int maxWidth = style()->maxWidth().
isUndefined
() ? w : calcScrollbarThicknessUsing(style()->maxWidth(), visibleSize);
111
int maxHeight = style()->maxHeight().
isUndefined
() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
/external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h
118
bool
isUndefined
() const
120
return m_value->
IsUndefined
();
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp
65
void
isUndefined
();
259
void tst_QScriptValue::
isUndefined
()
263
value.
isUndefined
();
Completed in 6707 milliseconds
1
2
3
4