Searched defs:addCase (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
H A D15.4.5.2-2.js47 addCase( new Array(), 0, Math.pow(2,14), Math.pow(2,14) );
49 addCase( new Array(), 0, 1, 1 );
51 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), 0, 0 );
52 addCase( new Array(Math.pow(2,13)), Math.pow(2,13), Math.pow(2,12), Math.pow(2,12) );
53 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), Math.pow(2,12), Math.pow(2,12) );
54 addCase( new Array(Math.pow(2,14)), Math.pow(2,14), Math.pow(2,12), Math.pow(2,12) )
66 addCase( a, i, i, i );
67 addCase( a, i, Math.pow(2,12)+i+1, Math.pow(2,12)+i+1, true );
68 addCase( a, Math.pow(2,12)+5, 0, 0, true );
72 function addCase( objec function
[all...]
/external/llvm/lib/VMCore/
H A DInstructions.cpp3176 /// addCase - Add an entry to the switch instruction...
3178 void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) { function in class:SwitchInst
3185 addCase(CaseRanges, Dest);
3188 void SwitchInst::addCase(IntegersSubset& OnVal, BasicBlock *Dest) { function in class:SwitchInst

Completed in 80 milliseconds