/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Collections.pas | 89 function GetCurrent: TPair<TKey, TValue>; in GetCurrent() function 96 property Current: TPair<TKey, TValue> read GetCurrent; 280 Result := GetCurrent; 288 function THashList<TKey, TValue>.TPairEnumerator.GetCurrent: TPair<TKey, TValue>; in THashList()
|
D | Antlr.Runtime.Tools.pas | 275 function GetCurrent: TPair<TKey,TValue>; in GetCurrent() function 281 property Current: TPair<TKey,TValue> read GetCurrent; 903 Result := GetCurrent; 911 function TDictionary<TKey,TValue>.TPairEnumerator.GetCurrent: TPair<TKey,TValue>; in TPairEnumerator()
|
D | Antlr.Runtime.Tree.pas | 1082 function GetCurrent: IANTLRInterface; in GetCurrent() function 1092 property Current: IANTLRInterface read GetCurrent; 2051 function GetCurrent: IANTLRInterface; virtual; in GetCurrent() function 4600 function TUnBufferedTreeNodeStream.GetCurrent: IANTLRInterface; in GetCurrent() function
|
/external/v8/test/cctest/ |
D | cctest.h | 340 return v8::Number::New(v8::Isolate::GetCurrent(), x); in v8_num() 345 return v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), x); in v8_str() 364 v8::Isolate::GetCurrent(), &script_source); in CompileWithOrigin() 394 v8::Isolate* isolate = v8::Isolate::GetCurrent(); in ParserCacheCompileRun() 413 v8::Isolate* isolate = v8::Isolate::GetCurrent(); in CompileRunWithOrigin() 426 return v8::ScriptCompiler::Compile(v8::Isolate::GetCurrent(), &script_source) in CompileRunWithOrigin()
|
D | test-heap-profiler.cc | 2469 v8::HandleScope scope(v8::Isolate::GetCurrent()); in TEST() 2516 v8::HandleScope scope(v8::Isolate::GetCurrent()); in TEST() 2573 v8::HandleScope scope(v8::Isolate::GetCurrent()); in TEST()
|
/external/v8/src/ |
D | prototype.h | 62 Object* GetCurrent() const { in GetCurrent() function 66 static Handle<Object> GetCurrent(const PrototypeIterator& iterator) { in GetCurrent() function
|
D | lookup.cc | 64 return Handle<JSGlobalObject>::cast(PrototypeIterator::GetCurrent(iter)); in GetStoreTarget() 215 if (JSReceiver::cast(iter.GetCurrent()) == holder) return true; in HolderIsReceiverOrHiddenPrototype()
|
D | d8-debug.cc | 19 Isolate* isolate = Isolate::GetCurrent(); in HandleDebugEvent()
|
D | string-stream.cc | 515 if (iter.GetCurrent()->IsJSObject()) { in PrintPrototype() 516 Object* key = JSObject::cast(iter.GetCurrent())->SlowReverseLookup(fun); in PrintPrototype()
|
D | builtins.cc | 197 array_proto = JSObject::cast(iter.GetCurrent()); in ArrayPrototypeHasNoElements() 275 return iter.GetCurrent() == array_proto && in IsJSArrayFastElementMovingAllowed() 945 iter.GetCurrent() != array_proto) { in BUILTIN() 1040 if (type->IsTemplateFor(iter.GetCurrent())) { in FindHidden() 1041 return iter.GetCurrent(); in FindHidden()
|
D | objects.cc | 764 if (PrototypeIterator::GetCurrent(iter)->IsJSProxy()) { in GetElementWithReceiver() 766 Handle<JSProxy>::cast(PrototypeIterator::GetCurrent(iter)), receiver, in GetElementWithReceiver() 774 Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter)); in GetElementWithReceiver() 3018 if (PrototypeIterator::GetCurrent(iter)->IsJSProxy()) { in SetElementWithCallbackSetterInPrototypes() 3020 Handle<JSProxy>::cast(PrototypeIterator::GetCurrent(iter)), object, in SetElementWithCallbackSetterInPrototypes() 3025 Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter)); in SetElementWithCallbackSetterInPrototypes() 4031 DCHECK(PrototypeIterator::GetCurrent(iter)->IsJSGlobalObject()); in GetElementAttributeWithReceiver() 4033 Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter)), receiver, in GetElementAttributeWithReceiver() 4099 if (PrototypeIterator::GetCurrent(iter)->IsJSProxy()) { in GetElementAttributeWithoutInterceptor() 4102 Handle<JSProxy>::cast(PrototypeIterator::GetCurrent(iter)), receiver, in GetElementAttributeWithoutInterceptor() [all …]
|
D | runtime.cc | 1857 if (PrototypeIterator::GetCurrent(iter)->IsAccessCheckNeeded() && in RUNTIME_FUNCTION() 1859 Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter)), in RUNTIME_FUNCTION() 1862 Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter)), in RUNTIME_FUNCTION() 1868 if (PrototypeIterator::GetCurrent(iter)->IsJSProxy()) { in RUNTIME_FUNCTION() 1869 return *PrototypeIterator::GetCurrent(iter); in RUNTIME_FUNCTION() 1872 return *PrototypeIterator::GetCurrent(iter); in RUNTIME_FUNCTION() 1880 if (PrototypeIterator::GetCurrent(iter)->IsJSProxy()) { in GetPrototypeSkipHiddenPrototypes() 1881 return PrototypeIterator::GetCurrent(iter); in GetPrototypeSkipHiddenPrototypes() 1885 return PrototypeIterator::GetCurrent(iter); in GetPrototypeSkipHiddenPrototypes() 2098 Handle<Object> proto = PrototypeIterator::GetCurrent(iter); in RUNTIME_FUNCTION() [all …]
|
D | isolate.cc | 998 if (iter.GetCurrent()->IsJSProxy()) return false; in IsErrorObject() 999 if (JSObject::cast(iter.GetCurrent())->map()->constructor() == in IsErrorObject() 2197 if (iter.IsAtEnd() || iter.GetCurrent() != initial_object_proto) { in IsFastArrayConstructorPrototypeChainIntact()
|
D | accessors.cc | 64 if (Is<C>(iter.GetCurrent())) return C::cast(iter.GetCurrent()); in FindInstanceOf()
|
D | objects-printer.cc | 389 << "]\n - prototype = " << reinterpret_cast<void*>(iter.GetCurrent()) in JSObjectPrint()
|
D | deoptimizer.cc | 479 CHECK(iter.GetCurrent()->IsJSGlobalObject()); in DeoptimizeGlobalObject() 481 GlobalObject::cast(iter.GetCurrent())->native_context(); in DeoptimizeGlobalObject()
|
D | api.cc | 3275 return Utils::ToLocal(i::PrototypeIterator::GetCurrent(iter)); in GetPrototype() 3307 while (!tmpl_info->IsTemplateFor(iter.GetCurrent())) { in FindInstanceInPrototypeChain() 3314 i::handle(i::JSObject::cast(iter.GetCurrent()), isolate)); in FindInstanceInPrototypeChain() 3675 i::Handle<i::Object> proto = i::PrototypeIterator::GetCurrent(iter); in GetRealNamedPropertyInPrototypeChain() 6563 Isolate* Isolate::GetCurrent() { in GetCurrent() function in v8::Isolate
|
D | hydrogen.cc | 6908 holder = JSObject::cast(*PrototypeIterator::GetCurrent(iter)); in BuildMonomorphicElementAccess() 7411 !PrototypeIterator::GetCurrent(iter).is_identical_to(holder)) { in BuildCheckPrototypeMaps() 7413 Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter))); in BuildCheckPrototypeMaps() 7420 Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter))); in BuildCheckPrototypeMaps()
|
/external/llvm/include/llvm/Support/ |
D | CrashRecoveryContext.h | 63 static CrashRecoveryContext *GetCurrent(); 137 if (CrashRecoveryContext *context = CrashRecoveryContext::GetCurrent()) in create()
|
/external/llvm/lib/Support/ |
D | CrashRecoveryContext.cpp | 94 CrashRecoveryContext *CrashRecoveryContext::GetCurrent() { in GetCurrent() function in CrashRecoveryContext
|
/external/v8/samples/ |
D | lineprocessor.cc | 372 v8::Isolate* isolate = v8::Isolate::GetCurrent(); in ReadLine()
|
/external/v8/src/ic/ |
D | handler-compiler.cc | 324 last = Handle<JSObject>::cast(PrototypeIterator::GetCurrent(iter)); in CompileStoreTransition()
|
D | ic.cc | 1266 PrototypeIterator::GetCurrent(iter)); in LookupForWrite() 2638 Handle<Object> current = PrototypeIterator::GetCurrent(iter); in RUNTIME_FUNCTION()
|
/external/pdfium/fpdfsdk/src/jsapi/ |
D | fxjs_v8.cpp | 560 if(!pJSRuntime) pJSRuntime = v8::Isolate::GetCurrent(); in WSToJSString() 989 v8::Isolate* pIsolate = v8::Isolate::GetCurrent(); in JS_DateParse()
|
/external/clang/lib/Lex/ |
D | Pragma.cpp | 884 llvm::CrashRecoveryContext *CRC =llvm::CrashRecoveryContext::GetCurrent(); in HandlePragma()
|