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

1 2 3 4 5

  /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}}
  /external/clang/test/Modules/
ExtDebugInfo.cpp 24 using DebugCXX::Struct;
26 Struct s;
31 int Struct::static_member = -1;
41 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Struct",
no-linkage.cpp 7 struct Typedef { int n; }; // expected-note {{candidate}}
11 typedef int Struct; // expected-note {{candidate}}
36 use(Struct(0));
51 use(Struct(0)); // expected-error {{ambiguous}}
  /external/clang/test/CodeGen/
global-with-initialiser.c 19 struct Struct {
25 struct Struct globalStruct = { 1, 2.0f, "foobar"};
  /external/clang/test/Modules/Inputs/no-linkage/
decls.h 6 struct Struct {};
  /libcore/ojluni/src/main/java/java/sql/
Struct.java 30 * structured type. A <code>Struct</code> object contains a
33 * By default, an instance of<code>Struct</code> is valid as long as the
36 * All methods on the <code>Struct</code> interface must be fully implemented if the
41 public interface Struct {
45 * that this <code>Struct</code> object represents.
48 * type for which this <code>Struct</code> object
59 * structured type that this <code>Struct</code> object represents.
83 * structured type that this <code>Struct</code> object represents.
SQLOutput.java 333 * @param x a <code>Struct</code> object representing data of an SQL
341 void writeStruct(Struct x) throws SQLException;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
struct.pb.h 2 // source: google/protobuf/struct.proto
44 class Struct;
69 class LIBPROTOBUF_EXPORT Struct : public ::google::protobuf::Message {
71 Struct();
72 virtual ~Struct();
74 Struct(const Struct& from);
76 inline Struct& operator=(const Struct& from) {
82 static const Struct& default_instance()
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 5 Call = Struct.new( :file, :line, :method )
  /external/v8/src/
types-inl.h 131 ZoneTypeConfig::Struct* ZoneTypeConfig::as_struct(Type* type) {
133 return reinterpret_cast<Struct*>(type);
165 ZoneTypeConfig::Type* ZoneTypeConfig::from_struct(Struct* structure) {
184 ZoneTypeConfig::Struct* ZoneTypeConfig::struct_create(
187 Struct* structure = reinterpret_cast<Struct*>(
196 void ZoneTypeConfig::struct_shrink(Struct* structure, int length) {
203 int ZoneTypeConfig::struct_tag(Struct* structure) {
209 int ZoneTypeConfig::struct_length(Struct* structure) {
215 Type* ZoneTypeConfig::struct_get(Struct* structure, int i)
    [all...]
types.h 274 // struct Config {
277 // typedef Struct;
280 // template<class> struct Handle { typedef type; } // No template typedefs...
293 // static Handle<Struct>::type as_struct(Type*);
299 // static Handle<Type>::type from_struct(Handle<Struct>::type, int tag);
302 // static Handle<Struct>::type struct_create(int tag, int length, Region*);
303 // static void struct_shrink(Handle<Struct>::type, int length);
304 // static int struct_tag(Handle<Struct>::type);
305 // static int struct_length(Handle<Struct>::type);
306 // static Handle<Type>::type struct_get(Handle<Struct>::type, int)
    [all...]
  /external/clang/test/Modules/Inputs/
DebugCXX.h 4 struct Struct {
21 template<typename T> struct traits {};
29 extern template struct traits<float>;
37 template <class> struct Outer {
39 struct Inner {
  /system/extras/tests/net_test/
cstruct_test.py 23 TestStructA = cstruct.Struct("TestStructA", "=BI", "byte1 int2")
24 TestStructB = cstruct.Struct("TestStructB", "=BI", "byte1 int2")
csocket.py 21 import struct namespace
28 CMsgHdr = cstruct.Struct("cmsghdr", "@Lii", "len level type")
29 Iovec = cstruct.Struct("iovec", "@LL", "base len")
30 MsgHdr = cstruct.Struct("msghdr", "@LLLLLLi",
32 SockaddrIn = cstruct.Struct("sockaddr_in", "=HH4sxxxxxxxx", "family port addr")
33 SockaddrIn6 = cstruct.Struct("sockaddr_in6", "=HHI16sI",
37 CMSG_ALIGNTO = struct.calcsize("@L") # The kernel defines this as sizeof(long).
97 data = struct.pack("=I", data)
129 to: An address tuple, or a SockaddrIn[6] struct. Becomes msg->msg_name.
144 # Convert the destination address into a struct sockaddr
    [all...]
sock_diag.py 23 import struct namespace
69 InetDiagSockId = cstruct.Struct(
71 InetDiagReqV2 = cstruct.Struct(
74 InetDiagMsg = cstruct.Struct(
78 InetDiagMeminfo = cstruct.Struct(
80 InetDiagBcOp = cstruct.Struct("InetDiagBcOp", "BBH", "code yes no")
81 InetDiagHostcond = cstruct.Struct("InetDiagHostcond", "=BBxxi",
84 SkMeminfo = cstruct.Struct(
87 TcpInfo = cstruct.Struct(
193 arg = "\x00\x00" + struct.pack("=H", arg
    [all...]
iproute.py 24 import struct namespace
48 NLMsgHdr = cstruct.Struct("NLMsgHdr", "=LHHLL", "length type flags seq pid")
49 NLMsgErr = cstruct.Struct("NLMsgErr", "=i", "error")
50 NLAttr = cstruct.Struct("NLAttr", "=HH", "nla_len nla_type")
108 IfinfoMsg = cstruct.Struct(
110 RTMsg = cstruct.Struct(
113 RTACacheinfo = cstruct.Struct(
135 IfAddrMsg = cstruct.Struct(
138 IFACacheinfo = cstruct.Struct(
140 NDACacheinfo = cstruct.Struct(
    [all...]
netlink.py 24 import struct namespace
44 NLMsgHdr = cstruct.Struct("NLMsgHdr", "=LHHLL", "length type flags seq pid")
45 NLMsgErr = cstruct.Struct("NLMsgErr", "=i", "error")
46 NLAttr = cstruct.Struct("NLAttr", "=HH", "nla_len nla_type")
77 return self._NlAttr(nla_type, struct.pack("=I", value))
103 msg: A Struct, the type of the data after the netlink header.
227 msgtype: A cstruct.Struct, the data type to parse the dump results as.
  /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/llvm/include/llvm/IR/
Intrinsics.h 80 struct IITDescriptor {
83 Integer, Vector, Pointer, Struct,
  /external/autotest/client/cros/cellular/pseudomodem/
modem.py 109 'Ports': [dbus.types.Struct(
113 dbus.types.Struct(
124 'SignalQuality' : dbus.types.Struct(
146 dbus.types.Struct(
154 dbus.types.Struct(
291 self.Set(mm1_constants.I_MODEM, 'SignalQuality', (dbus.types.Struct(
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 6 struct X;
7 typedef struct Y {
18 struct X {
22 struct Y {
39 template <typename T> struct X { };
40 template <typename T> struct Y { };
44 struct Z : public X<Y<T>*> {
52 struct S { };
66 struct Y { int foo(); };
73 struct S
    [all...]

Completed in 989 milliseconds

1 2 3 4 5