/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
ast.ml | 8 | Number of float 26 * its name, and its argument names (thus implicitly the number of arguments the
|
token.ml | 12 | Ident of string | Number of float
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
ast.ml | 8 | Number of float 29 * its name, and its argument names (thus implicitly the number of arguments the
|
token.ml | 12 | Ident of string | Number of float
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
ast.ml | 8 | Number of float 32 * its name, and its argument names (thus implicitly the number of arguments the
|
token.ml | 12 | Ident of string | Number of float
|
/external/v8/src/arm/ |
constants-arm.cc | 110 int VFPRegisters::Number(const char* name, bool* is_double) { 128 int Registers::Number(const char* name) {
|
/external/v8/src/mips/ |
constants-mips.cc | 81 int Registers::Number(const char* name) { 125 int FPURegisters::Number(const char* name) {
|
/external/v8/test/mjsunit/ |
array-tostring.js | 108 Object.defineProperty(Number.prototype, "join", {get: function() { 114 Number.prototype.arrayToString = Array.prototype.toString; 146 Object.defineProperty(Number.prototype, "length", { 152 Object.defineProperty(Number.prototype, i, { 158 Number.prototype.arrayToLocaleString = Array.prototype.toLocaleString;
|
stack-traces.js | 77 Number.prototype.causeError = function () { FAIL; }; 248 testTrace("testValue", testValue, ["at Number.causeError"]); 262 testTraceNativeConversion(Number); // Does ToNumber on argument. 266 testTraceNativeConstructor(Number); // Does ToNumber on argument.
|
/external/llvm/lib/CodeGen/ |
SpillPlacement.h | 59 // Block frequencies are computed once. Indexed by block number. 80 unsigned Number; ///< Basic block number (from MBB::getNumber()). 133 /// possible number of PrefX constraints will be violated, weighted by 142 float getBlockFrequency(unsigned Number) const { 143 return BlockFrequency[Number];
|
SpillPlacement.cpp | 78 /// otherwise it is a number in the range [-2;2]. 82 /// This is always in the range [-1;1]. A positive number means the variable 137 /// Return the change to the total number of positive biases. 218 float Freq = getBlockFrequency(I->Number); 229 unsigned ib = bundles->getBundle(I->Number, 0); 236 unsigned ob = bundles->getBundle(I->Number, 1); 262 unsigned Number = *I; 263 unsigned ib = bundles->getBundle(Number, 0); 264 unsigned ob = bundles->getBundle(Number, 1); 275 float Freq = getBlockFrequency(Number); [all...] |
/external/webkit/Source/WebCore/html/parser/ |
HTMLEntityParser.cpp | 57 // FIXME: A number of specific entity values generate parse errors. 109 Number, 129 entityState = Number; 138 case Number: {
|
/external/webkit/Source/WebCore/xml/ |
XPathPredicate.cpp | 44 Number::Number(double value) 49 Value Number::evaluate() const 124 // If one object to be compared is a node-set and the other is a number, then the comparison will be true 125 // if and only if there is a node in the node-set such that the result of performing the comparison on the number 126 // to be compared and on the result of converting the string-value of that node to a number using the number function is true. 274 return EqTestOp(EqTestOp::OP_EQ, createFunction("position"), new Number(result.toNumber())).evaluate().toBoolean();
|
XPathPredicate.h | 39 class Number : public Expression { 41 Number(double);
|
/external/webkit/Source/JavaScriptCore/wtf/ |
TCPageMap.h | 41 // The BITS parameter should be the number of bits required to hold 42 // a page number. E.g., with 32 bit pointers and 4K pages (i.e., 66 typedef uintptr_t Number; 75 bool Ensure(Number, size_t) { 87 void* get(Number k) const { 95 void set(Number k, void* v) { 120 typedef uintptr_t Number; 127 void* get(Number k) const { 129 const Number i1 = k >> LEAF_BITS; 130 const Number i2 = k & (LEAF_LENGTH-1) [all...] |
/cts/tools/signature-tools/test/signature/comparator/ |
ClassCompareTest.java | 205 static class A0<E extends Number> extends B<E> implements I<E>{} 206 static class A1<S extends Number> extends B<S>{} 238 CompilationUnit Number = new CompilationUnit("a.Number", 240 "public class Number implements java.io.Serializable{}"); 243 "public interface I<T extends Number & java.io.Serializable>{}"); 246 "public interface I<T extends Number>{}"); 247 IApi fromApi = convert(I0,Number); 248 IApi toApi = convert(I1,Number); 255 CompilationUnit Number = new CompilationUnit("a.Number", [all...] |
/external/llvm/include/llvm/Object/ |
COFF.h | 89 support::ulittle16_t Number;
|
/external/llvm/include/llvm/Support/ |
GCOV.h | 187 GCOVBlock(uint32_t N) : Number(N), Counter(0) {} 195 uint32_t Number;
|
/external/llvm/utils/TableGen/ |
IntrinsicEmitter.cpp | 235 unsigned Number = ArgType->getValueAsInt("Number"); 236 assert(Number < ArgNo && "Invalid matching number!"); 239 << "(dyn_cast<VectorType>(Tys[" << Number << "]))"; 242 << "(dyn_cast<VectorType>(Tys[" << Number << "]))"; 244 OS << "Tys[" << Number << "]"; 246 // NOTE: The ArgNo variable here is not the absolute argument number, it is 357 unsigned Number = ArgType->getValueAsInt("Number"); [all...] |
EDEmitter.cpp | 96 int Number; 100 LiteralConstantEmitter(int number = 0) : 102 Number(number) { 106 Number = 0; 114 o << Number; 212 /// into the operands present in the AsmString) or a number [all...] |
/external/v8/src/ |
runtime.js | 47 var $Number = global.Number; 164 // Fast case: Check for number operands and do the addition. 267 // Make sure to convert the right operand to a number before 273 // that doesn't convert to a number. This is common in 319 // Make sure to convert the right operand to a number before 325 // that doesn't convert to a number. This is common in 453 // We can handle any number of apply arguments if the stack is 470 // Return the length which is the number of arguments to copy to the 487 // Convert the receiver to a number - forward to ToNumber [all...] |
type-info.h | 47 // Number String | 62 // We know it's a number of some sort. 63 static TypeInfo Number() { return TypeInfo(kNumber); } 70 // We know it's a heap number. 181 case kNumber: return "Number";
|
unicode.h | 204 // The number of characters left in the current buffer 270 struct Number {
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DIE.h | 63 /// Unique number for node. 65 unsigned Number; 76 unsigned getNumber() const { return Number; } 81 void setNumber(unsigned N) { Number = N; }
|