HomeSort by relevance Sort by last modified time
    Searched refs:ConvertTo (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMEventTarget.cpp 93 #define ConvertTo(type) \
100 ConvertTo(Node)
101 ConvertTo(DOMWindow)
102 ConvertTo(XMLHttpRequest)
103 ConvertTo(XMLHttpRequestUpload)
104 ConvertTo(MessagePort)
107 ConvertTo(EventSource)
111 ConvertTo(DOMApplicationCache)
115 ConvertTo(Worker)
116 ConvertTo(DedicatedWorkerContext
    [all...]
  /external/v8/src/
lithium.h 65 void ConvertTo(Kind kind, int index) {
75 LOperand(Kind kind, int index) { ConvertTo(kind, index); }
lithium-allocator.cc 54 cache[i].ConvertTo(type, i); \
195 spill_operand_->ConvertTo(operand->kind(), operand->index());
482 use_pos->operand()->ConvertTo(op->kind(), op->index());
625 operand->ConvertTo(LOperand::STACK_SLOT, operand->fixed_index());
628 operand->ConvertTo(LOperand::REGISTER, reg_index);
631 operand->ConvertTo(LOperand::DOUBLE_REGISTER, reg_index);
    [all...]
  /external/skia/src/animator/
SkScript.h 84 bool convertTo(SkDisplayTypes , SkScriptValue* );
99 static bool ConvertTo(SkScriptEngine* , SkDisplayTypes toType, SkScriptValue* value);
206 convertTo(SkType_String, &scriptValue);
SkScript2.h 34 bool convertTo(SkOperand2::OpType , SkScriptValue2* );
46 static bool ConvertTo(SkScriptEngine2* , SkOperand2::OpType toType, SkScriptValue2* value);
223 convertTo(SkOperand2::kString, &scriptValue);
SkScript.cpp 344 if (convertTo((SkDisplayTypes) paramTypes[index], &params[index]) == false)
350 bool SkScriptEngine::convertTo(SkDisplayTypes toType, SkScriptValue* value ) {
371 return convertTo(toType, value);
373 return ConvertTo(this, toType, value);
566 if (convertTo(tokenInfo->getType(), &tokenValue) == false)
602 if (convertTo(type, &tokenValue) == false)
853 if (convertTo(ToDisplayType(fReturnType), value) == false)
    [all...]
SkScriptTokenizer.cpp 148 if (value->fIsConstant == SkScriptValue2::kConstant && convertTo(toType, value))
334 convertTo(paramTypes[index], &(*params)[index]);
338 bool SkScriptEngine2::convertTo(SkOperand2::OpType toType, SkScriptValue2* value ) {
345 return convertTo(toType, value);
347 return ConvertTo(this, toType, value);
495 convertTo(type, &tokenValue);
755 convertTo(fReturnType, value);
773 success = convertTo(SkOperand2::kS32, &scriptValue);
    [all...]

Completed in 1029 milliseconds