/external/clang/test/CodeGenCXX/ |
vtable-linkage.cpp | 105 // CHECK-1: @_ZTV1B = external unnamed_addr constant 109 // CHECK-2: @_ZTV1C = linkonce_odr unnamed_addr constant 110 // CHECK-2: @_ZTS1C = linkonce_odr constant 111 // CHECK-2: @_ZTI1C = linkonce_odr unnamed_addr constant 112 // CHECK-2: @_ZTT1C = linkonce_odr unnamed_addr constant 113 // CHECK-2-HIDDEN: @_ZTV1C = linkonce_odr hidden unnamed_addr constant 114 // CHECK-2-HIDDEN: @_ZTS1C = linkonce_odr constant 115 // CHECK-2-HIDDEN: @_ZTI1C = linkonce_odr hidden unnamed_addr constant 116 // CHECK-2-HIDDEN: @_ZTT1C = linkonce_odr hidden unnamed_addr constant 120 // CHECK-3: @_ZTV1D = unnamed_addr constant [all...] |
vtable-key-function-ios.cpp | 28 // CHECK: @_ZTV6Test0a = external unnamed_addr constant 29 // CHECK: @_ZTI6Test0a = external constant 47 // CHECK: @_ZTV6Test0b = external unnamed_addr constant 48 // CHECK: @_ZTI6Test0b = external constant 60 // CHECK: @_ZTV6Test1a = linkonce_odr unnamed_addr constant 61 // CHECK-LATE: @_ZTS6Test1a = linkonce_odr constant 62 // CHECK-LATE: @_ZTI6Test1a = linkonce_odr unnamed_addr constant 80 // CHECK: @_ZTV6Test1b = linkonce_odr unnamed_addr constant 81 // CHECK: @_ZTS6Test1b = linkonce_odr constant 82 // CHECK: @_ZTI6Test1b = linkonce_odr unnamed_addr constant [all...] |
predefined-expr.cpp | 3 // CHECK: private unnamed_addr constant [15 x i8] c"externFunction\00" 4 // CHECK: private unnamed_addr constant [26 x i8] c"void NS::externFunction()\00" 5 // CHECK: private unnamed_addr constant [49 x i8] c"void functionTemplateExplicitSpecialization(int)\00" 7 // CHECK: private unnamed_addr constant [95 x i8] c"void SpecializedClassTemplate<char>::memberFunctionTemplate(T, U) const [T = char, U = double]\00" 8 // CHECK: private unnamed_addr constant [85 x i8] c"void SpecializedClassTemplate<int>::memberFunctionTemplate(int, U) const [U = float]\00" 9 // CHECK: private unnamed_addr constant [57 x i8] c"void NonTypeTemplateParam<42>::size() const [Count = 42]\00" 10 // CHECK: private unnamed_addr constant [122 x i8] c"static void ClassWithTemplateTemplateParam<char, NS::ClassTemplate>::staticMember() [T = char, Param = NS::ClassTemplate]\00" 11 // CHECK: private unnamed_addr constant [106 x i8] c"void OuterClass<int *>::MiddleClass::InnerClass<float>::memberFunction(T, U) const [T = int *, U = float]\00" 12 // CHECK: private unnamed_addr constant [65 x i8] c"void functionTemplateWithUnnamedTemplateParameter(T) [T = float]\00" 14 // CHECK: private unnamed_addr constant [60 x i8] c"void functionTemplateExplicitSpecialization(T) [T = double]\00 [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
ConstantPool.java | 20 * Interface for constant pools, which are, more or less, just lists of 21 * {@link Constant} objects. 25 * Get the "size" of the constant pool. This corresponds to the 27 * always at least one more than the actual size of the constant pool, 35 * Get the {@code n}th entry in the constant pool, which must 38 * @param n {@code n >= 0, n < size();} the constant pool index 43 public Constant get(int n); 46 * Get the {@code n}th entry in the constant pool, which must 50 * @param n {@code n >= 0, n < size();} the constant pool index 55 public Constant get0Ok(int n) [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
ConstantPool.java | 20 * Interface for constant pools, which are, more or less, just lists of 21 * {@link Constant} objects. 25 * Get the "size" of the constant pool. This corresponds to the 27 * always at least one more than the actual size of the constant pool, 35 * Get the {@code n}th entry in the constant pool, which must 38 * @param n {@code n >= 0, n < size();} the constant pool index 43 public Constant get(int n); 46 * Get the {@code n}th entry in the constant pool, which must 50 * @param n {@code n >= 0, n < size();} the constant pool index 55 public Constant get0Ok(int n) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
ConstantPool.java | 20 * Interface for constant pools, which are, more or less, just lists of 21 * {@link Constant} objects. 25 * Get the "size" of the constant pool. This corresponds to the 27 * always at least one more than the actual size of the constant pool, 35 * Get the {@code n}th entry in the constant pool, which must 38 * @param n {@code n >= 0, n < size();} the constant pool index 43 public Constant get(int n); 46 * Get the {@code n}th entry in the constant pool, which must 50 * @param n {@code n >= 0, n < size();} the constant pool index 55 public Constant get0Ok(int n) [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/constant/ |
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...] |
/external/llvm/test/Transforms/ConstantMerge/ |
unnamed-addr.ll | 9 @test1.x = internal constant %struct.foobar { i32 1 } 10 @test1.y = constant %struct.foobar { i32 1 } 12 @test2.x = internal constant %struct.foobar { i32 2 } 13 @test2.y = unnamed_addr constant %struct.foobar { i32 2 } 15 @test3.x = internal unnamed_addr constant %struct.foobar { i32 3 } 16 @test3.y = constant %struct.foobar { i32 3 } 18 @test4.x = internal unnamed_addr constant %struct.foobar { i32 4 } 19 @test4.y = unnamed_addr constant %struct.foobar { i32 4 } 24 ; CHECK: @test1.x = internal constant %struct.foobar { i32 1 } 25 ; CHECK-NEXT: @test1.y = constant %struct.foobar { i32 1 [all...] |
dont-merge.ll | 5 @T1G1 = internal constant i32 1, section "foo" 6 @T1G2 = internal constant i32 1, section "bar" 7 @T1G3 = internal constant i32 1, section "bar" 20 @T2a = internal constant i32 224 21 @T2b = internal addrspace(30) constant i32 224 36 @T3A = internal constant i32 0 37 @T3B = internal constant i32 0
|
merge-both.ll | 10 @var1 = internal constant %struct.foobar { i32 2 } 11 @var2 = unnamed_addr constant %struct.foobar { i32 2 } 12 @var3 = internal constant %struct.foobar { i32 2 } 13 @var4 = unnamed_addr constant %struct.foobar { i32 2 } 17 ; CHECK: @var2 = constant %struct.foobar { i32 2 } 18 ; CHECK-NEXT: @var4 = constant %struct.foobar { i32 2 } 21 @var5 = internal constant [16 x i8] c"foo1bar2foo3bar\00", align 16 22 @var6 = private unnamed_addr constant [16 x i8] c"foo1bar2foo3bar\00", align 1 23 @var7 = internal constant [16 x i8] c"foo1bar2foo3bar\00" 24 @var8 = private unnamed_addr constant [16 x i8] c"foo1bar2foo3bar\00 [all...] |
/external/clang/test/CodeGen/ |
string-literal.c | 15 // CHECK-C: private unnamed_addr constant [10 x i8] c"abc\00\00\00\00\00\00\00", align 1 16 // CHECK-C11: private unnamed_addr constant [10 x i8] c"abc\00\00\00\00\00\00\00", align 1 17 // CHECK-CXX11: private unnamed_addr constant [10 x i8] c"abc\00\00\00\00\00\00\00", align 1 21 // CHECK-C: private unnamed_addr constant [10 x i8] c"\E1\84\A0\C8\A0\F4\82\80\B0\00", align 1 22 // CHECK-C11: private unnamed_addr constant [10 x i8] c"\E1\84\A0\C8\A0\F4\82\80\B0\00", align 1 23 // CHECK-CXX11: private unnamed_addr constant [10 x i8] c"\E1\84\A0\C8\A0\F4\82\80\B0\00", align 1 26 // CHECK-C: private unnamed_addr constant [3 x i32] [i32 65, i32 66, i32 0], align 4 27 // CHECK-C11: private unnamed_addr constant [3 x i32] [i32 65, i32 66, i32 0], align 4 28 // CHECK-CXX11: private unnamed_addr constant [3 x i32] [i32 65, i32 66, i32 0], align 4 31 // CHECK-C: private unnamed_addr constant [3 x i32] [i32 4660, i32 1110027, i32 0], align [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass32/ |
dwarf32-err.errwarn | 10 -:13: error: column number is not a constant 12 -:17: error: is_stmt value is not a constant 13 -:19: error: is_stmt value is not a constant 14 -:20: error: is_stmt value is not a constant 17 -:26: error: isa value is not a constant 18 -:28: error: isa value is not a constant 20 -:31: error: column number is not a constant
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
CstInsn.java | 19 import com.android.dexgen.rop.cst.Constant; 22 * Instruction which contains an explicit reference to a constant. 26 /** {@code non-null;} the constant */ 27 private final Constant cst; 36 * @param cst {@code non-null;} constant 39 RegisterSpecList sources, Constant cst) { 56 * Gets the constant. 58 * @return {@code non-null;} the constant 60 public Constant getConstant() {
|
/dalvik/dx/src/com/android/dx/rop/code/ |
CstInsn.java | 19 import com.android.dx.rop.cst.Constant; 22 * Instruction which contains an explicit reference to a constant. 26 /** {@code non-null;} the constant */ 27 private final Constant cst; 36 * @param cst {@code non-null;} constant 39 RegisterSpecList sources, Constant cst) { 56 * Gets the constant. 58 * @return {@code non-null;} the constant 60 public Constant getConstant() {
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
CstInsn.java | 19 import com.android.dx.rop.cst.Constant; 22 * Instruction which contains an explicit reference to a constant. 26 /** {@code non-null;} the constant */ 27 private final Constant cst; 36 * @param cst {@code non-null;} constant 39 RegisterSpecList sources, Constant cst) { 56 * Gets the constant. 58 * @return {@code non-null;} the constant 60 public Constant getConstant() {
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
BridgeConstants.java | 20 * Constant definition class.<br> 24 * <li><code>WS_</code> Workspace path constant. Those are absolute paths, 26 * <li><code>OS_</code> OS path constant. These paths are different depending on the platform.</li> 27 * <li><code>FN_</code> File name constant.</li> 28 * <li><code>FD_</code> Folder name constant.</li> 29 * <li><code>EXT_</code> File extension constant. This does NOT include a dot.</li> 30 * <li><code>DOT_</code> File extension constant. This start with a dot.</li> 31 * <li><code>RE_</code> Regexp constant.</li> 32 * <li><code>NS_</code> Namespace constant.</li>
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_code.c | 59 unsigned rc_constants_add(struct rc_constant_list * c, struct rc_constant * constant) 77 c->Constants[index] = *constant; 85 * Add a state vector to the constant list, while trying to avoid duplicates. 90 struct rc_constant constant; local 100 memset(&constant, 0, sizeof(constant)); 101 constant.Type = RC_CONSTANT_STATE; 102 constant.Size = 4; 103 constant.u.State[0] = state0; 104 constant.u.State[1] = state1 117 struct rc_constant constant; local 143 struct rc_constant constant; local [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_code.c | 59 unsigned rc_constants_add(struct rc_constant_list * c, struct rc_constant * constant) 77 c->Constants[index] = *constant; 85 * Add a state vector to the constant list, while trying to avoid duplicates. 90 struct rc_constant constant; local 100 memset(&constant, 0, sizeof(constant)); 101 constant.Type = RC_CONSTANT_STATE; 102 constant.Size = 4; 103 constant.u.State[0] = state0; 104 constant.u.State[1] = state1 117 struct rc_constant constant; local 143 struct rc_constant constant; local [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/ |
lower_breaks_3.opt_test | 13 ((assign (x) (var_ref a) (constant float (1.000000))) 14 (if (expression bool > (var_ref b) (constant float (0.000000))) 15 ((assign (x) (var_ref c) (constant float (1.000000))) break)
|
lower_breaks_5.opt_test | 13 ((assign (x) (var_ref a) (constant float (1.000000))) 14 (if (expression bool > (var_ref b) (constant float (0.000000))) () 15 ((assign (x) (var_ref c) (constant float (1.000000))) break))))))))
|
/external/llvm/test/Assembler/ |
2002-04-29-NameBinding.ll | 4 ; Check by running globaldce, which will remove the constant if there are 8 ; RUN: not grep constant 11 @v1 = internal constant i32 5
|
/external/llvm/test/Feature/ |
const_pv.ll | 2 @G = constant <3 x i64> ptrtoint (<3 x i8*> <i8* null, i8* null, i8* null> to <3 x i64>) 5 @g = constant <2 x i8*> getelementptr (<2 x i8*> <i8* @G1, i8* @G1>, <2 x i32> <i32 0, i32 0>) 7 @t = constant <2 x i1> icmp eq (<2 x i32> ptrtoint (<2 x i8*> zeroinitializer to <2 x i32>), <2 x i32> zeroinitializer )
|
/external/mesa3d/src/glsl/tests/lower_jumps/ |
lower_breaks_3.opt_test | 13 ((assign (x) (var_ref a) (constant float (1.000000))) 14 (if (expression bool > (var_ref b) (constant float (0.000000))) 15 ((assign (x) (var_ref c) (constant float (1.000000))) break)
|
lower_breaks_5.opt_test | 13 ((assign (x) (var_ref a) (constant float (1.000000))) 14 (if (expression bool > (var_ref b) (constant float (0.000000))) () 15 ((assign (x) (var_ref c) (constant float (1.000000))) break))))))))
|
/libcore/luni/src/main/java/java/awt/font/ |
TextAttribute.java | 39 /** The Constant serialVersionUID. */ 82 /** The Constant JUSTIFICATION_indicates the full requested width. */ 86 * The Constant JUSTIFICATION_NONE indicates that line is not 117 /** The Constant POSTURE_REGULAR indicates regular posture. */ 120 /** The Constant POSTURE_OBLIQUE indicates italic posture. */ 127 * The Constant RUN_DIRECTION_LTR indicates left-to-right run 133 * The Constant RUN_DIRECTION_RTL indicates right-to-left run 144 /** The Constant STRIKETHROUGH_ON indicates a single strikethrough. */ 150 /** The Constant SUPERSCRIPT_SUB indicates a standard subscript. */ 153 /** The Constant SUPERSCRIPT_SUPER indicates a standard superscript. * [all...] |