Searched defs:constant (Results 1 - 25 of 227) sorted by relevance

12345678910

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfglobal.asm2 ; program that calls function with eax=constant, thus exiting err=0
3 GLOBAL constant
6 constant EQU 48 define
9 sub eax, constant
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DICONSTANTVisitor.java9 package com.vladium.jcd.cls.constant;
20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx); argument
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx); argument
25 Object visit (CONSTANT_Methodref_info constant, Object ctx); argument
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx); argument
28 Object visit (CONSTANT_Double_info constant, Object ctx); argument
29 Object visit (CONSTANT_Float_info constant, Object ctx); argument
30 Object visit (CONSTANT_Integer_info constant, Object ctx); argument
31 Object visit (CONSTANT_Long_info constant, Objec argument
32 visit(CONSTANT_String_info constant, Object ctx) argument
34 visit(CONSTANT_Utf8_info constant, Object ctx) argument
35 visit(CONSTANT_NameAndType_info constant, Object ctx) argument
[all...]
H A DCONSTANT_literal_info.java9 package com.vladium.jcd.cls.constant;
14 * in the constant pool.
H A DCONSTANT_info.java9 package com.vladium.jcd.cls.constant;
43 * Returns the number of constant pool index slots occupied by this
133 public static String tagToString (final CONSTANT_info constant) argument
135 switch (constant.tag ())
173 default: throw new IllegalStateException ("CONSTANT_info: invalid tag value [" + constant.tag () + ']');
H A DCONSTANT_Fieldref_info.java9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
H A DCONSTANT_InterfaceMethodref_info.java9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
H A DCONSTANT_Methodref_info.java9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
H A DCONSTANT_ref_info.java9 package com.vladium.jcd.cls.constant;
18 * Abstract base for all CONSTANT_XXXref_info structures. They all have a constant
22 * The value of the class_index item must be a valid index into the constant pool
23 * table. The constant pool entry at that index must be a {@link CONSTANT_Class_info}
/external/proguard/src/proguard/classfile/constant/visitor/
H A DConstantTagFilter.java21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.*;
79 public void visitAnyConstant(Clazz clazz, Constant constant) argument
81 if (((1 << constant.getTag()) & constantTagMask) != 0)
83 constant.accept(clazz, constantVisitor);
H A DMethodrefTraveler.java21 package proguard.classfile.constant.visitor;
25 import proguard.classfile.constant.*;
30 * to their methodref constants, and applies a given constant visitor.
42 * Creates a new v that will delegate to the given constant visitor.
52 public void visitAnyConstant(Clazz clazz, Constant constant) {} argument
H A DAllConstantVisitor.java21 package proguard.classfile.constant.visitor;
28 * This ClassVisitor lets a given ConstantVisitor visit all constant pool
H A DExceptClassConstantFilter.java21 package proguard.classfile.constant.visitor;
28 import proguard.classfile.constant.ClassConstant;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
H A DBootstrapMethodHandleTraveler.java21 package proguard.classfile.constant.visitor;
26 import proguard.classfile.constant.*;
36 * bootstrap method handle constants, and applies a given constant visitor.
54 * given constant visitor.
64 public void visitAnyConstant(Clazz clazz, Constant constant) {} argument
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayNumber.cpp37 // (warning C4756: overflow in constant arithmetic)
42 SkScalar constant; local
45 constant = SK_ScalarMax;
48 constant = SK_ScalarMin;
51 constant = -SK_ScalarInfinity;
54 constant = SK_ScalarNaN;
57 constant = SK_ScalarInfinity;
63 value->fOperand.fScalar = constant;
/external/clang/test/Misc/
H A Dast-dump-templates.cpp8 int constant; member in struct:foo
/external/skia/src/animator/
H A DSkDisplayNumber.cpp37 // (warning C4756: overflow in constant arithmetic)
42 SkScalar constant; local
45 constant = SK_ScalarMax;
48 constant = SK_ScalarMin;
51 constant = -SK_ScalarInfinity;
54 constant = SK_ScalarNaN;
57 constant = SK_ScalarInfinity;
63 value->fOperand.fScalar = constant;
/external/ceres-solver/internal/ceres/
H A Dlocal_parameterization.cc64 << "The set of constant parameters should contain at least "
66 << "constant, then do not use a SubsetParameterization";
68 vector<int> constant = constant_parameters; local
69 sort(constant.begin(), constant.end());
70 CHECK(unique(constant.begin(), constant.end()) == constant.end())
71 << "The set of constant parameters cannot contain duplicates";
73 << "Number of parameters held constant shoul
[all...]
/external/clang/test/Analysis/
H A Dbool-assignment.c10 bool constant = 2; // no-warning local
40 BOOL constant = 2; // expected-warning {{Assignment of a non-Boolean value}} local
71 Boolean constant = 2; // expected-warning {{Assignment of a non-Boolean value}} local
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DFieldId.java36 final CstFieldRef constant; field in class:FieldId
46 this.constant = new CstFieldRef(declaringType.constant, nat);
/external/guava/guava-tests/test/com/google/common/cache/
H A DTestingWeighers.java25 * Returns a {@link Weigher} that returns the given {@code constant} for every request.
27 static Weigher<Object, Object> constantWeigher(int constant) { argument
28 return new ConstantWeigher(constant);
46 private final int constant; field in class:TestingWeighers.ConstantWeigher
48 ConstantWeigher(int constant) { argument
49 this.constant = constant;
54 return constant;
/external/proguard/src/proguard/classfile/constant/
H A DClassConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
28 * This Constant represents a class constant in the constant pool.
62 * @param u2nameIndex the index of the name in the constant pool.
H A DConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
46 * Returns the constant pool info tag that specifies the entry type.
H A DDoubleConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a double constant in the constant pool.
H A DFieldrefConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a field reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
H A DFloatConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a float constant in the constant pool.

Completed in 2451 milliseconds

12345678910