/external/v8/test/webkit/ |
D | reserved-words-expected.txt | 30 PASS isReserved('break') is true 31 PASS isReserved('case') is true 32 PASS isReserved('catch') is true 33 PASS isReserved('class') is true 34 PASS isReserved('const') is true 35 PASS isReserved('continue') is true 36 PASS isReserved('debugger') is true 37 PASS isReserved('default') is true 38 PASS isReserved('delete') is true 39 PASS isReserved('do') is true [all …]
|
D | reserved-words.js | 24 function isReserved(word) function
|
/external/v8/test/webkit/fast/js/ |
D | reserved-words-strict-expected.txt | 30 FAIL isReserved('implements') should be true. Was false. 31 FAIL isReserved('interface') should be true. Was false. 32 FAIL isReserved('let') should be true. Was false. 33 FAIL isReserved('package') should be true. Was false. 34 FAIL isReserved('private') should be true. Was false. 35 FAIL isReserved('protected') should be true. Was false. 36 FAIL isReserved('public') should be true. Was false. 37 FAIL isReserved('static') should be true. Was false. 38 FAIL isReserved('yield') should be true. Was false. 41 PASS isReserved('abstract') is false [all …]
|
D | reserved-words-strict.js | 24 function isReserved(word) function
|
/external/llvm/lib/CodeGen/ |
D | MachineCopyPropagation.cpp | 162 if (!MRI->isReserved(Def) && in CopyPropagateBlock() 163 (!MRI->isReserved(Src) || NoInterveningSideEffect(CopyMI, MI)) && in CopyPropagateBlock() 282 if (MRI->isReserved(Reg) || !MaskMO.clobbersPhysReg(Reg)) in CopyPropagateBlock() 321 if (!MRI->isReserved((*DI)->getOperand(0).getReg())) { in CopyPropagateBlock()
|
D | RegisterScavenging.cpp | 131 if (!Reg || TargetRegisterInfo::isVirtualRegister(Reg) || isReserved(Reg)) in determineKillsAndDefs() 203 if (!Reg || TargetRegisterInfo::isVirtualRegister(Reg) || isReserved(Reg)) in forward() 256 if (includeReserved && isReserved(Reg)) in isRegUsed()
|
D | DeadMachineInstructionElim.cpp | 78 if (LivePhysRegs.test(Reg) || MRI->isReserved(Reg)) in isDead()
|
D | TargetRegisterInfo.cpp | 286 if (MRI.isReserved(Phys)) in getRegAllocationHints()
|
D | LiveVariables.cpp | 540 else if (!MRI->isReserved(MOReg)) in runOnInstr() 553 else if (!MRI->isReserved(MOReg)) in runOnInstr()
|
D | LiveRangeEdit.cpp | 257 if (Reg && MOI->readsReg() && !MRI.isReserved(Reg)) in eliminateDeadDef()
|
D | VirtRegMap.cpp | 364 assert(!MRI->isReserved(PhysReg) && "Reserved register assignment"); in rewrite()
|
D | MachineVerifier.cpp | 183 bool isReserved(unsigned Reg) { in isReserved() function 1006 if (TargetRegisterInfo::isPhysicalRegister(Reg) && !isReserved(Reg)) { in checkLiveness() 1048 bool Bad = !isReserved(Reg); in checkLiveness()
|
D | MachineCSE.cpp | 285 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i])) in PhysRegDefsReach()
|
D | ScheduleDAGInstrs.cpp | 1167 if ((Reg == 0) || MRI.isReserved(Reg)) continue; in fixupKills() 1202 if ((Reg == 0) || MRI.isReserved(Reg)) continue; in fixupKills()
|
D | RegAllocPBQP.cpp | 580 if (MRI.isReserved(PReg)) in initializeGraph()
|
/external/llvm/include/llvm/CodeGen/ |
D | RegisterScavenging.h | 162 bool isReserved(unsigned Reg) const { return MRI->isReserved(Reg); } in isReserved() function
|
D | MachineRegisterInfo.h | 745 bool isReserved(unsigned PhysReg) const { in isReserved() function 757 !isReserved(PhysReg); in isAllocatable()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | URLParser.java | 176 protected static boolean isReserved(char next) { in isReserved() method in URLParser 196 if (isReserved(next)) { in reserved() 262 } else if (isReserved(la)) { in uric()
|
/external/jetty/src/java/org/eclipse/jetty/client/ |
D | BlockingHttpConnection.java | 285 … if (_exchange==null && !isReserved()) // TODO how do we return switched connections? in handle()
|
D | AsyncHttpConnection.java | 237 … if (_exchange==null && !isReserved()) // TODO how do we return switched connections? in handle()
|
D | AbstractHttpConnection.java | 85 public boolean isReserved() in isReserved() method in AbstractHttpConnection
|
D | HttpDestination.java | 407 if (connection.isReserved()) in returnConnection()
|
/external/llvm/lib/Target/R600/ |
D | R600OptimizeVectorRegisters.cpp | 55 if (MRI.isReserved(Reg)) { in isImplicitlyDef()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFrameLowering.cpp | 1695 if (!MRI.isReserved(Reg)) in processFunctionBeforeCalleeSavedScan() 1703 if (!MRI.isReserved(Reg)) in processFunctionBeforeCalleeSavedScan() 1721 if (!MRI.isReserved(Reg) && in processFunctionBeforeCalleeSavedScan() 1733 if (!MRI.isReserved(Reg)) { in processFunctionBeforeCalleeSavedScan()
|
D | ARMBaseRegisterInfo.cpp | 271 if (!Paired || MRI.isReserved(Paired)) in getRegAllocationHints()
|