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

1 2

  /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());
  /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.
  /external/clang/test/Modules/Inputs/no-linkage/
decls.h 6 struct Struct {};
  /external/clang/test/Modules/
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/
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 {
  /external/llvm/utils/Misc/
zkill 54 class Struct:
60 return 'Struct(%s)' % ', '.join(['%s=%r' % (k,getattr(self,k))
119 table.append(Struct(**record))
  /external/mesa3d/src/gallium/tools/trace/
model.py 83 class Struct(Node):
  /external/clang/test/SemaCXX/
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}}
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...]
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 {
117 struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from initiali (…)
    [all...]
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...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 31 converterClass = Struct
178 class Struct(BaseConverter):
217 class Table(Struct):
379 "struct": Struct,
  /system/extras/tests/net_test/
cstruct.py 19 >>> # Declare a struct type by specifying name, field formats and field names.
20 ... # Field formats are the same as those used in the struct module.
22 >>> NLMsgHdr = cstruct.Struct("NLMsgHdr", "=LHHLL", "length type flags seq pid")
39 >>> # Parse the beginning of a byte stream as a struct, and return the struct
51 import struct namespace
55 size = struct.calcsize(fmt)
56 elements = struct.unpack(fmt, "\x00" * size)
60 def Struct(name, fmt, fieldnames, substructs={}):
61 """Function that returns struct classes.""
    [all...]
  /external/llvm/include/llvm/IR/
Intrinsics.h 80 struct IITDescriptor {
83 Integer, Vector, Pointer, Struct,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 445 Constant *Struct = ConstantStruct::get(ST, V);
446 return InsertValueInst::Create(Struct, Result, 0);
  /external/autotest/client/cros/cellular/
pseudo_modem.py 39 from dbus.types import Struct
357 'SignalQuality': Struct([UInt32(90), True], signature='ub'),
  /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/libevent/
event_rpcgen.py 29 structref = re.compile(r'^struct\[([a-zA-Z_][a-zA-Z0-9_]*)\]$')
30 structdef = re.compile(r'^struct +[a-zA-Z_][a-zA-Z0-9_]* *{$')
45 # Holds everything that makes a struct
46 class Struct:
51 print >>sys.stderr, ' Created struct: %s' % name
77 class StructCCode(Struct):
78 """ Knows how to generate C code for a struct """
81 Struct.__init__(self, name)
94 print >>file, 'struct %s;' % self._name
98 print >>file, 'struct %s_access_ {' % self._nam
    [all...]
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 43 // Provide a command-line option to aggregate function arguments into a struct
360 // arguments (or appropriate addressing into struct) instead.
425 // Emit a call to the new function, passing in: *pointer to struct (if
431 // Add inputs as params, or to be filled into the struct
452 AllocaInst *Struct = nullptr;
459 // Allocate a struct at the beginning of this function
461 Struct = new AllocaInst(StructArgTy, nullptr, "structArg",
463 params.push_back(Struct);
470 StructArgTy, Struct, Idx, "gep_" + StructValues[i]->getName());
495 StructArgTy, Struct, Idx, "gep_reload_" + outputs[i]->getName())
    [all...]
  /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...]
  /external/v8/tools/
ll_prof.py 433 class Struct(ctypes.Structure):
435 return Struct
480 # Reference: struct perf_file_header in kernel/tools/perf/util/header.h
    [all...]
  /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/google-breakpad/src/testing/scripts/generator/cpp/
ast.py 355 class Struct(Class):
409 """Type used for any variable (eg class, primitive, struct, etc)."""
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 21 module TypeKind = struct
33 | Struct
41 module Linkage = struct
62 module Visibility = struct
69 module DLLStorageClass = struct
76 module CallConv = struct
84 module Attribute = struct
114 module Icmp = struct
128 module Fcmp = struct
148 module Opcode = struct
    [all...]

Completed in 1621 milliseconds

1 2