HomeSort by relevance Sort by last modified time
    Searched refs:Struct (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/llvm/unittests/IR/
TypesTest.cpp 21 StructType *Struct = StructType::create(C, "FooBar");
22 EXPECT_EQ("FooBar", Struct->getName());
23 Struct->setName(Struct->getName().substr(0, 3));
24 EXPECT_EQ("Foo", Struct->getName());
25 Struct->setName("");
26 EXPECT_TRUE(Struct->getName().empty());
27 EXPECT_FALSE(Struct->hasName());
  /external/clang/test/SemaCXX/
constant-expression.cpp 15 struct Struct {
20 template <int itval, Enum etval> struct C {
26 v5 = Struct::sval,
27 v6 = Struct::seval,
31 v10 = sizeof(Struct),
32 v11 = true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
39 b5 : Struct::sval,
40 b6 : Struct::seval
    [all...]
altivec.cpp 71 struct Struct {
76 vector float initFloat = (vector float)(Struct().f); // expected-error {{did you mean to call it}}
77 vector int initInt = (vector int)(Struct().n); // expected-error {{did you mean to call it}}
nested-name-spec.cpp 3 struct C {
65 struct A::C c2;
66 struct S : public A::C {};
67 struct A::undef; // expected-error {{no struct named 'undef' in namespace 'A'}}
71 struct RC;
72 struct CC {
73 struct NC;
77 struct A2::RC {
81 struct A2::CC::NC
    [all...]
cxx98-compat.cpp 8 struct type_info;
10 template<typename T> struct initializer_list {
45 template<typename T> struct S {};
55 struct Ctor {
59 struct InitListCtor {
79 struct { int a; const int &r; } rr = { 0, {0} }; // expected-warning {{reference initialized from initializer list is incompatible with C++98}}
82 struct DelayedDefaultArgumentParseInitList {
96 struct Defaulted {
101 struct RefQualifier {
117 struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from initiali (…)
    [all...]
  /external/clang/test/CodeGen/
global-with-initialiser.c 19 struct Struct {
25 struct Struct globalStruct = { 1, 2.0f, "foobar"};
  /libcore/luni/src/main/java/java/sql/
Struct.java 24 * as a Java object. The {@code Struct} object has a value for each attribute of the SQL structured
27 public interface Struct {
31 * Struct} represents.
SQLOutput.java 262 * Write an SQL {@code Struct} value into the output stream.
265 * the {@code java.sql.Struct} object to write.
268 * @see Struct
270 public void writeStruct(Struct theStruct) throws SQLException;
Connection.java     [all...]
  /external/chromium_org/mojo/public/bindings/generators/
mojom_generator.py 11 """Converts a method's parameters into the fields of a struct."""
13 struct = mojom.Struct(params_class)
15 struct.AddField(param.name, param.kind, param.ordinal)
16 return struct
19 return isinstance(kind, (mojom.Struct, mojom.Array)) or kind.spec == 's'
mojom_pack_tests.py 17 struct = mojom.Struct('test')
18 struct.AddField('testfield1', mojom.INT32, 2)
19 struct.AddField('testfield2', mojom.INT32, 1)
20 ps = mojom_pack.PackedStruct(struct)
30 struct = mojom.Struct('test')
31 ps = mojom_pack.PackedStruct(struct)
38 struct = mojom.Struct('test'
    [all...]
mojom_js_generator.py 38 if isinstance(field.kind, mojom.Struct):
75 if isinstance(kind, mojom.Struct):
103 if isinstance(kind, mojom.Struct):
130 if isinstance(kind, mojom.Struct):
136 def GetStructInfo(exported, struct):
137 packed_struct = mojom_pack.PackedStruct(struct)
139 "name": struct.name,
mojom.py 63 class Struct(Kind):
145 struct = Struct(name)
146 self.structs.append(struct)
147 return struct;
mojom_pack.py 8 # of a mojom.Struct.
10 # ps = mojom_pack.PackedStruct(struct)
34 if isinstance(kind, mojom.Array) or isinstance(kind, mojom.Struct):
64 def __init__(self, struct):
65 self.struct = struct
69 if (len(struct.fields) == 0):
75 for field in struct.fields:
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 5 Call = Struct.new( :file, :line, :method )
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
parameter.rb 5 Parameter = Struct.new( :name, :default )
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 11 TrivialToken = Struct.new(:type) do
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_serializer.pm 37 use Class::Struct;
  /external/llvm/include/llvm/IR/
Intrinsics.h 78 struct IITDescriptor {
81 Integer, Vector, Pointer, Struct,
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 34 import java.sql.Struct;
217 public Struct createStruct(String typeName, Object[] attributes)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
diff.rb 3 Match = Struct.new(:start_in_old, :start_in_new, :size)
14 Operation = Struct.new(:action, :start_in_old, :end_in_old, :start_in_new, :end_in_new)
  /external/clang/lib/AST/
APValue.cpp 27 struct LVBase {
35 struct APValue::LV : LVBase {
70 struct MemberPointerBase {
76 struct APValue::MemberPointerData : MemberPointerBase {
166 case Struct:
204 else if (Kind == Struct)
220 case Struct:
310 case Struct:
311 OS << "Struct ";
486 case APValue::Struct:
    [all...]
  /external/clang/include/clang/AST/
APValue.h 51 Struct,
65 struct NoLValuePath {};
66 struct UninitArray {};
67 struct UninitStruct {};
71 struct ComplexAPSInt {
75 struct ComplexAPFloat {
79 struct LV;
80 struct Vec {
86 struct Arr {
92 struct StructData
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 368 // Create a simple add instruction, and insert it into the struct.
376 Constant *Struct = ConstantStruct::get(ST, V);
377 return InsertValueInst::Create(Struct, Add, 0);
382 // Create a simple add instruction, and insert it into the struct.
390 Constant *Struct = ConstantStruct::get(ST, V);
391 return InsertValueInst::Create(Struct, Add, 0);
417 Constant *Struct =
419 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
438 Constant *Struct =
440 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0)
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
chrome_scaled_image_unittest.py 10 import struct namespace
40 pack_int32 = struct.Struct('>i').pack

Completed in 1861 milliseconds

1 2 3 4