OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:baseValue
(Results
1 - 4
of
4
) sorted by null
/external/icu4c/i18n/
nfrule.h
56
ERuleType getType() const { return (ERuleType)(
baseValue
<= kNoBase ? (ERuleType)
baseValue
: kOtherRule); }
57
void setType(ERuleType ruleType) {
baseValue
= (int32_t)ruleType; }
59
int64_t getBaseValue() const { return
baseValue
; }
84
double matchToDelimiter(const UnicodeString& text, int32_t startPos, double
baseValue
,
95
int64_t
baseValue
;
/external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.cpp
67
JSValue
baseValue
= JSValue::decode(encodedBase);
70
if (LIKELY(
baseValue
.isCell())) {
71
JSCell* base =
baseValue
.asCell();
89
return JSValue::encode(
baseValue
.get(exec, i));
101
return JSValue::encode(
baseValue
.get(exec, ident));
106
JSValue
baseValue
= JSValue::decode(encodedBase);
107
PropertySlot slot(
baseValue
);
108
return JSValue::encode(
baseValue
.get(exec, *identifier, slot));
116
JSValue
baseValue
= JSValue::decode(encodedBase);
123
if (isJSArray(globalData,
baseValue
)) {
[
all
...]
/external/webkit/Source/WebCore/svg/animation/
SMILTimeContainer.cpp
203
String
baseValue
;
205
baseValue
= computedStyle(targetElement)->getPropertyValue(cssPropertyID(attributeName.localName()));
207
baseValue
= targetElement->getAttribute(attributeName);
208
m_savedBaseValues.add(key,
baseValue
);
209
return
baseValue
;
/external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp
806
NEVER_INLINE void JITThunks::tryCachePutByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue
baseValue
, const PutPropertySlot& slot, StructureStubInfo* stubInfo, bool direct)
810
if (!
baseValue
.isCell())
819
JSCell* baseCell =
baseValue
.asCell();
856
NEVER_INLINE void JITThunks::tryCacheGetByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue
baseValue
, const Identifier& propertyName, const PropertySlot& slot, StructureStubInfo* stubInfo)
862
if (!
baseValue
.isCell()) {
869
if (isJSArray(globalData,
baseValue
) && propertyName == callFrame->propertyNames().length) {
874
if (isJSString(globalData,
baseValue
) && propertyName == callFrame->propertyNames().length) {
887
JSCell* baseCell =
baseValue
.asCell();
897
if (slot.slotBase() ==
baseValue
) {
934
size_t count = normalizePrototypeChain(callFrame,
baseValue
, slot.slotBase(), propertyName, offset)
[
all
...]
Completed in 93 milliseconds