HomeSort by relevance Sort by last modified time
    Searched refs:constant (Results 251 - 275 of 573) sorted by null

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodedocumentnodetype.js 79 returns the constant value 9.
hc_nodeelementnodetype.js 79 returns the constant value 1.
hc_nodetextnodetype.js 81 returns the constant value 3.
  /external/javassist/src/main/javassist/
CtField.java 359 * Returns the value of this field if it is a constant field.
362 * A constant field is <code>static</code> and <code>final</code>.
367 * representing the constant value.
368 * <code>null</code> if it is not a constant field
455 * Makes an initializer that assigns a constant integer value.
458 public static Initializer constant(int i) { method in class:CtField.Initializer
463 * Makes an initializer that assigns a constant boolean value.
466 public static Initializer constant(boolean b) { method in class:CtField.Initializer
471 * Makes an initializer that assigns a constant long value.
474 public static Initializer constant(long l) method in class:CtField.Initializer
482 public static Initializer constant(float l) { method in class:CtField.Initializer
490 public static Initializer constant(double d) { method in class:CtField.Initializer
498 public static Initializer constant(String s) { method in class:CtField.Initializer
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
idct_dequant_full_2x_neon.asm 41 adr r1, cospi8sqrt2minus1 ; pointer to the first constant
70 ; our constant had the high bit set, and was treated as a negative value.
73 ; so we can shift the constant without losing precision. this avoids
191 ; Constant Pool
dequant_idct_neon.asm 37 adr r12, cospi8sqrt2minus1 ; pointer to the first constant
127 ; Constant Pool
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 30 import proguard.classfile.constant.*;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
89 // Read the constant pool. Note that the first entry is not used.
92 programClass.constantPool = new Constant[programClass.u2constantPoolCount];
95 Constant constant = createConstant(); local
96 constant.accept(programClass, this);
97 programClass.constantPool[index] = constant;
100 // constant pool.
101 int tag = constant.getTag()
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITInlineMethods.h 503 inline void JIT::emitStore(unsigned index, const JSValue constant, RegisterID base)
505 store32(Imm32(constant.payload()), payloadFor(index, base));
506 store32(Imm32(constant.tag()), tagFor(index, base));
617 ALWAYS_INLINE bool JIT::getOperandConstantImmediateInt(unsigned op1, unsigned op2, unsigned& op, int32_t& constant)
620 constant = getConstantOperand(op1).asInt32();
626 constant = getConstantOperand(op2).asInt32();
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorJS.pm     [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp 121 const BatchedConstant* constant = &constants[i]; local
122 functionDescriptor->Set(v8::String::New(constant->name), v8::Integer::New(constant->value), v8::ReadOnly);
123 proto->Set(v8::String::New(constant->name), v8::Integer::New(constant->value), v8::ReadOnly);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 81 :T__10 => 10, :CONSTANT => 4, :COMMENT => 8, :STRING => 7 )
98 "T__16", "T__17", "T__18", "T__19", "CONSTANT", "ID",
101 :t__16!, :t__17!, :t__18!, :t__19!, :constant!, :id!,
352 # lexer rule constant! (CONSTANT)
354 def constant!
358 type = CONSTANT
838 # at line 1:8: ( T__10 | T__11 | T__12 | T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | CONSTANT | ID | TEMPLATE | STRING | COMMENT | WS )
883 # at line 1:70: CONSTANT
884 constant!
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Intermediate.cpp 590 // For compile time constant selections, prune the code and
645 // See if all the operands are constant, then fold it otherwise not.
665 // Constant terminal nodes. Has a union that contains bool, float or int constants
667 // Returns the constant union node created.
1077 // The fold functions see if an operation on a constant can be done in place,
    [all...]
  /external/ceres-solver/docs/
modeling.tex 49 If \texttt{jacobians} is \texttt{NULL}, then no derivatives are returned; this is the case when computing cost only. If \texttt{jacobians[i]} is \texttt{NULL}, then the Jacobian matrix corresponding to the $i^{\textrm{th}}$ parameter block must not be returned, this is the case when the a parameter block is marked constant.
79 two-dimensional vector parameters and $k$ is a constant. The form of this error, which is the
80 difference between a constant and an expression, is a common pattern in least
349 user wishes to hold the first coordinate constant. Then, $\Delta x$ is a
357 \texttt{SubsetParameterization} generalizes this construction to hold any part of a parameter block constant.
463 You can set any parameter block to be constant using
471 In fact you can set any number of parameter blocks to be constant, and Ceres is smart enough to figure out what part of the problem you have constructed depends on the parameter blocks that are free to change and only spends time solving it. So for example if you constructed a problem with a million parameter blocks and 2 million residual blocks, but then set all but one parameter blocks to be constant and say only 10 residual blocks depend on this one non-constant parameter block. Then the computational effort Ceres spends in solving this problem will be the same if you had defined a problem with one parameter block and 10 residual blocks.
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SceneLoader.java 162 float constant = parseFloat(attribs.getValue("constant")); local
171 if (constant == 1 && quadratic == 0 && linear > 0){
  /external/proguard/src/proguard/classfile/util/
DynamicMemberReferenceInitializer.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
34 * This InstructionVisitor initializes any constant
36 * it visits. More specifically, it fills out the references of string constant
68 private final Constant[] GET_FIELD_CONSTANTS = new Constant[]
78 private final Constant[] GET_DECLARED_FIELD_CONSTANTS = new Constant[]
88 private final Constant[] GET_METHOD_CONSTANTS = new Constant[]
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
MethodInliner.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
301 // The code may expand, due to expanding constant and variable
427 // Make sure the constant is present in the constant pool of the
  /external/v8/test/mjsunit/
bit-not.js 29 // The VM constant folds so we use that to check the result.
  /external/v8/test/mjsunit/harmony/
block-const-assign.js 121 assertTrue(e.toString().indexOf("Assignment to constant variable") >= 0);
  /external/webkit/LayoutTests/dom/html/level1/core/
documentinvalidcharacterexceptioncreateentref.js 85 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INVALID_CHARACTER_ERR'])
documentinvalidcharacterexceptioncreateentref1.js 82 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INVALID_CHARACTER_ERR'])
documentinvalidcharacterexceptioncreatepi.js 85 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INVALID_CHARACTER_ERR'])
documentinvalidcharacterexceptioncreatepi1.js 82 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INVALID_CHARACTER_ERR'])
hc_characterdataindexsizeerrdeletedatacountnegative.js 89 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INDEX_SIZE_ERR'])
hc_characterdataindexsizeerrdeletedataoffsetgreater.js 89 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INDEX_SIZE_ERR'])
hc_characterdataindexsizeerrdeletedataoffsetnegative.js 89 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INDEX_SIZE_ERR'])

Completed in 1264 milliseconds

<<11121314151617181920>>