HomeSort by relevance Sort by last modified time
    Searched refs:Struct (Results 1 - 25 of 87) 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 5 struct type_info;
7 template<typename T> struct initializer_list {
42 template<typename T> struct S {};
52 struct Ctor {
56 struct InitListCtor {
76 struct { int a; const int &r; } rr = { 0, {0} }; // expected-warning {{reference initialized from initializer list is incompatible with C++98}}
79 struct DelayedDefaultArgumentParseInitList {
93 struct Defaulted {
98 struct RefQualifier {
114 struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from initiali (…)
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/
struct_ptr.h 17 template <typename Struct>
26 template <typename Struct>
30 typedef typename Struct::Data_ Data_;
57 Struct& operator*() const {
61 Struct* operator->() const {
65 Struct* get() const { return ptr_; }
72 typedef Struct* StructPtr::*Testable;
78 friend class internal::StructHelper<Struct>;
79 void Initialize() { assert(!ptr_); ptr_ = new Struct(); }
86 Struct* ptr_
    [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/v8/src/
types-inl.h 97 ZoneTypeConfig::Struct* ZoneTypeConfig::as_struct(Type* type) {
99 return reinterpret_cast<Struct*>(type);
123 ZoneTypeConfig::Type* ZoneTypeConfig::from_struct(Struct* structure) {
136 ZoneTypeConfig::Struct* ZoneTypeConfig::struct_create(
138 Struct* structure = reinterpret_cast<Struct*>(
147 void ZoneTypeConfig::struct_shrink(Struct* structure, int length) {
154 int ZoneTypeConfig::struct_tag(Struct* structure) {
160 int ZoneTypeConfig::struct_length(Struct* structure) {
166 Type* ZoneTypeConfig::struct_get(Struct* structure, int i)
    [all...]
types.h 216 // struct Config {
219 // typedef Struct;
221 // template<class> struct Handle { typedef type; } // No template typedefs...
229 // static Handle<Struct>::type as_struct(Type*);
233 // static Handle<Type>::type from_struct(Handle<Struct>::type, int tag);
234 // static Handle<Struct>::type struct_create(int tag, int length, Region*);
235 // static void struct_shrink(Handle<Struct>::type, int length);
236 // static int struct_tag(Handle<Struct>::type);
237 // static int struct_length(Handle<Struct>::type);
238 // static Handle<Type>::type struct_get(Handle<Struct>::type, int)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 5 Call = Struct.new( :file, :line, :method )
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
pack_tests.py 19 struct = mojom.Struct('test')
20 struct.AddField('testfield1', mojom.INT32, 2)
21 struct.AddField('testfield2', mojom.INT32, 1)
22 ps = pack.PackedStruct(struct)
32 struct = mojom.Struct('test')
33 ps = pack.PackedStruct(struct)
40 struct = mojom.Struct('test'
    [all...]
generator.py 14 """Converts a method's parameters into the fields of a struct."""
16 struct = mojom.Struct(params_class, module=method.interface.module)
18 struct.AddField(param.name, param.kind, param.ordinal)
19 struct.packed = pack.PackedStruct(struct)
20 return struct
23 """Converts a method's response_parameters into the fields of a struct."""
25 struct = mojom.Struct(params_class, module=method.interface.module
    [all...]
module.py 98 class Struct(Kind):
215 struct=Struct(name, module=self)
216 self.structs.append(struct)
217 return struct
  /external/chromium_org/mojo/public/tools/bindings/generators/
mojom_cpp_generator.py 34 if isinstance(field.kind, mojom.Struct):
55 if isinstance(kind, mojom.Struct):
76 if isinstance(kind, mojom.Struct):
101 if isinstance(kind, mojom.Struct):
126 if isinstance(kind, mojom.Struct):
149 if isinstance(kind, mojom.Struct):
176 if isinstance(kind, mojom.Struct):
190 def IsStructWithHandles(struct):
191 for pf in struct.packed.packed_fields:
199 # Namespace::Struct::CONSTANT_NAM
    [all...]
mojom_js_generator.py 35 if isinstance(field.kind, mojom.Struct):
41 if isinstance(field.kind, mojom.Struct):
86 if isinstance(kind, mojom.Struct):
101 if isinstance(kind, mojom.Struct):
115 if isinstance(kind, mojom.Struct):
129 # NamespaceUid.Struct[.Enum].CONSTANT_NAME
mojom_java_generator.py 67 isinstance(element, mojom.Struct)):
104 if isinstance(kind, (mojom.Struct, mojom.Interface)):
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 4 struct X;
5 typedef struct Y {
16 struct X {
20 struct Y {
37 template <typename T> struct X { };
38 template <typename T> struct Y { };
42 struct Z : public X<Y<T>*> {
50 struct S { };
64 struct Y { int foo(); };
71 struct S
    [all...]
  /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/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 34 import java.sql.Struct;
216 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/llvm/include/llvm/IR/
Intrinsics.h 81 struct IITDescriptor {
84 Integer, Vector, Pointer, Struct,

Completed in 862 milliseconds

1 2 3 4