HomeSort by relevance Sort by last modified time
    Searched defs:constant (Results 1 - 25 of 951) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantTagFilter.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.Constant;
79 public void visitAnyConstant(Clazz clazz, Constant constant)
81 if (((1 << constant.getTag()) & constantTagMask) != 0)
83 constant.accept(clazz, constantVisitor);
AllConstantVisitor.java 21 package proguard.classfile.constant.visitor;
28 * This ClassVisitor lets a given ConstantVisitor visit all constant pool
BootstrapMethodArgumentVisitor.java 21 package proguard.classfile.constant.visitor;
29 * constant pool entries of the bootstrap methods it visits.
41 * given constant visitor.
ExceptClassConstantFilter.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.ClassConstant;
MethodrefTraveler.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.*;
29 * to their methodref constants, and applies a given constant visitor.
41 * Creates a new v that will delegate to the given constant visitor.
51 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_literal_info.java 9 package com.vladium.jcd.cls.constant;
14 * in the constant pool.
ICONSTANTVisitor.java 9 package com.vladium.jcd.cls.constant;
20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx);
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx);
25 Object visit (CONSTANT_Methodref_info constant, Object ctx);
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx);
28 Object visit (CONSTANT_Double_info constant, Object ctx);
29 Object visit (CONSTANT_Float_info constant, Object ctx);
30 Object visit (CONSTANT_Integer_info constant, Object ctx);
31 Object visit (CONSTANT_Long_info constant, Object ctx)
    [all...]
CONSTANT_ref_info.java 9 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}
CONSTANT_Class_info.java 9 package com.vladium.jcd.cls.constant;
21 * The value of the name_index item must be a valid index into the constant pool
22 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
50 * Returns the JVM class name within the constant pool context of 'cls'
53 * @param cls class that contains this constant
CONSTANT_Double_info.java 9 package com.vladium.jcd.cls.constant;
CONSTANT_Fieldref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
  /external/tensorflow/tensorflow/compiler/xla/tests/
constants_test.cc 49 std::vector<float> constant = {2.0}; local
52 builder.ConstantR1<float>(constant);
54 ComputeAndCompareR1<float>(&builder, constant, {}, error_spec_);
58 std::vector<int32> constant = {2}; local
61 builder.ConstantR1<int32>(constant);
63 ComputeAndCompareR1<int32>(&builder, constant, {});
67 std::vector<uint32> constant = {2}; local
70 builder.ConstantR1<uint32>(constant);
72 ComputeAndCompareR1<uint32>(&builder, constant, {});
76 std::vector<float> constant = {0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0} local
85 std::vector<float> constant = {0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, local
102 std::unique_ptr<Array2D<float>> constant = local
113 auto constant = builder.ConstantLiteral( local
129 auto constant = local
    [all...]
  /art/compiler/optimizing/
locations.cc 65 HConstant* constant = instruction->AsConstant(); local
66 if (constant != nullptr) {
67 int64_t value = CodeGenerator::GetInt64ValueOf(constant);
69 return Location::ConstantLocation(constant);
76 HConstant* constant = instruction->AsConstant(); local
77 if (constant != nullptr) {
78 int64_t value = CodeGenerator::GetInt64ValueOf(constant);
80 return Location::ConstantLocation(constant);
live_ranges_test.cc 167 // Test for the 4 constant.
176 // Test for the 0 constant.
178 // The then branch is a hole for this constant, therefore its interval has 2 ranges.
244 // Test for the 0 constant.
253 // Test for the 4 constant.
261 // Test for the 5 constant.
321 // Test for the 0 constant.
322 HIntConstant* constant = liveness.GetInstructionFromSsaIndex(0)->AsIntConstant(); local
323 LiveInterval* interval = constant->GetLiveInterval();
397 // Test for the 0 constant
    [all...]
ssa_test.cc 57 void VisitIntConstant(HIntConstant* constant) OVERRIDE {
58 PrintPreInstruction(constant); variable
59 str_ += constant->DebugName();
61 PrintInt(constant->GetValue());
62 PrintPostInstruction(constant); variable
  /external/clang/test/Analysis/
bool-assignment.c 10 bool constant = 2; // no-warning local
40 BOOL constant = 2; // expected-warning {{Assignment of a non-Boolean value}} local
80 Boolean constant = 2; // expected-warning {{Assignment of a non-Boolean value}} local
  /external/proguard/src/proguard/classfile/constant/
Constant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
32 public abstract class Constant implements VisitorAccepter
46 * Returns the constant pool info tag that specifies the entry type.
FieldrefConstant.java 21 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.
60 // Implementations for Constant.
InterfaceMethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a interface method 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.
60 // Implementations for Constant.
MethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a method 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.
60 // Implementations for Constant.
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
gpu_copy_insertion.cc 58 // Inserts a copy of hlo->operand(n) if it's a constant.
106 // previous iteration (which is possible when a constant is used as an
116 HloInstruction* constant = value->defining_instruction(); local
118 FindOrInsertCopy(constant));
119 TF_RETURN_IF_ERROR(constant->ReplaceAllUsesWith(copy));
  /external/tensorflow/tensorflow/python/framework/
constant_op.py 24 @@constant
134 @tf_export("constant")
135 def constant(value, dtype=None, shape=None, name="Const", verify_shape=False): function
136 """Creates a constant tensor.
142 The argument `value` can be a constant value, or a list of values of type
158 # Constant 1-D Tensor populated with value list.
159 tensor = tf.constant([1, 2, 3, 4, 5, 6, 7]) => [1 2 3 4 5 6 7]
161 # Constant 2-D tensor populated with scalar value -1.
162 tensor = tf.constant(-1.0, shape=[2, 3]) => [[-1. -1. -1.]
167 value: A constant value (or list) of output type `dtype`
    [all...]
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
AlignmentRules.java 30 * A rule that defines a constant alignment for all files.
35 public static AlignmentRule constant(int alignment) { method in class:AlignmentRules
42 * A rule that defines constant alignment for all files with a certain suffix, placing no
  /external/clang/test/Misc/
ast-dump-templates.cpp 8 int constant; member in struct:foo
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
FieldId.java 36 final CstFieldRef constant; field in class:FieldId
46 this.constant = new CstFieldRef(declaringType.constant, nat);

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 91011>>