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

1 2 3 4

  /external/clang/test/Analysis/
unions.cpp 7 struct Definition;
10 Definition *lexdef;
14 struct Definition : public ParseNode { };
34 struct Definition;
39 Definition *lexdef;
47 struct Definition : public ParseNode { };
  /build/blueprint/parser/
ast.go 30 // Definition is an Assignment or a Module at the top level of a Blueprints file
31 type Definition interface {
58 // A Module is a module definition at the top level of a Blueprints file
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 82 class Definition(NodeBase):
83 """Represents a definition of anything that has a global name (e.g., enums,
117 class Const(Definition):
118 """Represents a const definition."""
136 class Enum(Definition):
137 """Represents an enum definition."""
152 class EnumValue(Definition):
153 """Represents a definition of an enum value."""
172 definition)."""
196 class Interface(Definition)
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 235 Argument *Definition;
255 ArgumentGraph() { SyntheticRoot.Definition = nullptr; }
265 Node.Definition = A;
499 // definition we'll get at link time is *exactly* the definition we see now.
571 // made. If the definition doesn't have a 'nocapture' attribute by now, it
577 if (!ArgumentSCC[0]->Definition)
583 Argument *A = ArgumentSCC[0]->Definition;
596 if (!Node->Definition->hasNoCaptureAttr())
607 ArgumentSCCNodes.insert(I->Definition);
    [all...]
  /external/clang/include/clang/Index/
IndexSymbol.h 76 Definition = 1 << 1,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 90 Definition = 1 << 1,
  /frameworks/ml/nn/tools/test_generator/
test_generator.py 110 # Object that other objects takes its definition from
222 def Definition(self):
336 def Definition(self):
397 def Definition(self):
610 format_op(cur) #cur.Definition()
774 fmt = op.Definition()
  /frameworks/rs/script_api/
Specification.cpp 258 Definition::Definition(const std::string& name)
262 void Definition::updateFinalVersion(const VersionInfo& info) {
274 void Definition::scanDocumentationTags(Scanner* scanner, bool firstOccurence,
320 Function::Function(const string& name) : Definition(name) {
    [all...]
Specification.h 134 // Either 0, 32 or 64. If 0, this definition is valid for both 32 and 64 bits.
153 class Definition {
156 /* If greater than 0, this definition is deprecated. It's the API level at which
168 Definition(const std::string& name);
188 class Constant : public Definition {
193 Constant(const std::string& name) : Definition(name) {}
204 class Type : public Definition {
209 Type(const std::string& name) : Definition(name) {}
220 class Function : public Definition {
298 std::string mSimpleType; // The definition of the typ
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 520 const FunctionDecl *Definition;
521 if (!Result->hasBody(Definition))
524 // We found a definition. If we're not sure that this devirtualization is
528 return RuntimeDefinition(Definition, R->StripCasts());
529 return RuntimeDefinition(Definition, /*DispatchRegion=*/nullptr);
867 // Cannot find a public definition.
    [all...]
  /external/flatbuffers/include/flatbuffers/
idl.h 30 // Definition Language) / schema file.
206 // Base class for all definition types (fields, structs_, enums_).
207 struct Definition {
208 Definition() : generated(false), defined_namespace(nullptr),
220 bool generated; // did we already output code for this definition?
228 struct FieldDef : public Definition {
244 struct StructDef : public Definition {
296 struct EnumDef : public Definition {
332 struct ServiceDef : public Definition {
559 bool definition = false)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9shader.h 280 const char *Definition;
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 356 : SExpr(COP_Variable), Name(s), Definition(D), Cvdecl(nullptr) {
361 Definition(D), Cvdecl(Cvd) {
365 : SExpr(Vd), Name(Vd.Name), Definition(D), Cvdecl(Vd.Cvdecl) {
378 /// Return the definition of the variable.
381 SExpr *definition() { return Definition; } function in class:clang::threadSafety::Variable
382 const SExpr *definition() const { return Definition; } function in class:clang::threadSafety::Variable
386 void setDefinition(SExpr *E) { Definition = E; }
407 SExpr* Definition; // The TIL type or definitio
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 768 const FunctionDecl *Definition;
769 if (FD->hasBody(Definition))
770 return Definition->getSourceRange().getEnd();
1030 // If this is a tag type that has a definition or is currently
1031 // being defined, that definition is our primary context.
1038 // Note, TagType::getDecl returns the (partial) definition one exists.
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 702 assert(SrcDecl && "Definition missing");
757 // valid definition is available. Also, template instantiation is not
796 // Don't check if any base has invalid declaration or has no definition
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 356 : SExpr(COP_Variable), Name(s), Definition(D), Cvdecl(nullptr) {
361 Definition(D), Cvdecl(Cvd) {
365 : SExpr(Vd), Name(Vd.Name), Definition(D), Cvdecl(Vd.Cvdecl) {
378 /// Return the definition of the variable.
381 SExpr *definition() { return Definition; } function in class:clang::threadSafety::Variable
382 const SExpr *definition() const { return Definition; } function in class:clang::threadSafety::Variable
386 void setDefinition(SExpr *E) { Definition = E; }
407 SExpr* Definition; // The TIL type or definitio
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 356 : SExpr(COP_Variable), Name(s), Definition(D), Cvdecl(nullptr) {
361 Definition(D), Cvdecl(Cvd) {
365 : SExpr(Vd), Name(Vd.Name), Definition(D), Cvdecl(Vd.Cvdecl) {
378 /// Return the definition of the variable.
381 SExpr *definition() { return Definition; } function in class:clang::threadSafety::Variable
382 const SExpr *definition() const { return Definition; } function in class:clang::threadSafety::Variable
386 void setDefinition(SExpr *E) { Definition = E; }
407 SExpr* Definition; // The TIL type or definitio
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 356 : SExpr(COP_Variable), Name(s), Definition(D), Cvdecl(nullptr) {
361 Definition(D), Cvdecl(Cvd) {
365 : SExpr(Vd), Name(Vd.Name), Definition(D), Cvdecl(Vd.Cvdecl) {
378 /// Return the definition of the variable.
381 SExpr *definition() { return Definition; } function in class:clang::threadSafety::Variable
382 const SExpr *definition() const { return Definition; } function in class:clang::threadSafety::Variable
386 void setDefinition(SExpr *E) { Definition = E; }
407 SExpr* Definition; // The TIL type or definitio
    [all...]

Completed in 1464 milliseconds

1 2 3 4