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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/syntax/
topexpr.go 9 fmt.Printf("hello") // ERROR "non-declaration statement outside function body|expected declaration"
14 x++ // ERROR "non-declaration statement outside function body|expected declaration"
19 x,y := 1, 2 // ERROR "non-declaration statement outside function body|expected declaration"
vareq1.go 9 var x map[string]string{"a":"b"} // ERROR "unexpected { at end of statement|unexpected { after top level declaration|expected ';' or newline after top level declaration"
  /prebuilts/go/linux-x86/test/syntax/
topexpr.go 9 fmt.Printf("hello") // ERROR "non-declaration statement outside function body|expected declaration"
14 x++ // ERROR "non-declaration statement outside function body|expected declaration"
19 x,y := 1, 2 // ERROR "non-declaration statement outside function body|expected declaration"
vareq1.go 9 var x map[string]string{"a":"b"} // ERROR "unexpected { at end of statement|unexpected { after top level declaration|expected ';' or newline after top level declaration"
  /external/swiftshader/src/D3D8/
Direct3DVertexDeclaration8.cpp 34 declaration = new unsigned long[size / sizeof(unsigned long)];
35 memcpy(declaration, vertexElement, size);
40 delete[] declaration;
41 declaration = 0;
69 return declaration;
Direct3DVertexShader8.cpp 21 Direct3DVertexShader8::Direct3DVertexShader8(Direct3DDevice8 *device, const unsigned long *declaration, const unsigned long *shaderToken) : device(device)
46 this->declaration = new Direct3DVertexDeclaration8(device, declaration);
57 declaration->Release();
90 return declaration->getDeclaration();
Direct3DVertexShader8.hpp 30 Direct3DVertexShader8(Direct3DDevice8 *device, const unsigned long *declaration, const unsigned long *shaderToken);
46 Direct3DVertexDeclaration8 *declaration; member in class:D3D8::Direct3DVertexShader8
Direct3DVertexDeclaration8.hpp 44 unsigned long *declaration; member in class:D3D8::Direct3DVertexDeclaration8
  /external/mesa3d/src/mesa/program/
symbol_table.h 33 const char *name, void *declaration);
37 void *declaration);
42 void *declaration);
  /system/tools/hidl/c2hal/
TypeDef.cpp 21 TypeDef::TypeDef(const std::string &name, Declaration* declaration)
22 : Declaration(name), mDeclaration(declaration)
CompositeDeclaration.cpp 20 #include "Declaration.h"
31 std::vector<android::Declaration *> *fieldDeclarations)
32 : Declaration(""),
49 Declaration::setName(name);
56 const std::vector<android::Declaration *>*
98 for (auto *declaration : *mFieldDeclarations) {
99 declaration->generateCommentText(out);
100 declaration->generateSource(out);
108 for (auto &declaration : *mFieldDeclarations) {
109 declaration->processContents(ast)
    [all...]
  /external/compiler-rt/lib/builtins/arm/
aeabi_div0.c 29 /* provide an unused declaration to pacify pendantic compilation */
30 extern unsigned char declaration;
  /external/skia/src/sksl/ir/
SkSLFunctionDefinition.h 18 * A function definition (a declaration plus an associated block of code).
21 FunctionDefinition(Position position, const FunctionDeclaration& declaration,
24 , fDeclaration(declaration)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug299.go 16 (complex128) // ERROR "non-declaration|expected|parenthesize"
17 (*string) // ERROR "non-declaration|expected|parenthesize"
18 *(bool) // ERROR "non-declaration|expected|parenthesize"
bug394.go 10 return nil // ERROR "non-declaration statement outside function body|expected declaration"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug299.go 16 (complex128) // ERROR "non-declaration|expected|parenthesize"
17 (*string) // ERROR "non-declaration|expected|parenthesize"
18 *(bool) // ERROR "non-declaration|expected|parenthesize"
bug394.go 10 return nil // ERROR "non-declaration statement outside function body|expected declaration"
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
shadow.go 20 _, err := f.Read(buf) // ERROR "declaration of .err. shadows declaration at testdata/shadow.go:13"
28 x := one() // ERROR "declaration of .x. shadows declaration at testdata/shadow.go:14"
29 var _, err = f.Read(buf) // ERROR "declaration of .err. shadows declaration at testdata/shadow.go:13"
48 // The declaration of x is a shadow because x is mentioned below.
49 var x int // ERROR "declaration of .x. shadows declaration at testdata/shadow.go:14"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
shadow.go 20 _, err := f.Read(buf) // ERROR "declaration of .err. shadows declaration at testdata/shadow.go:13"
28 x := one() // ERROR "declaration of .x. shadows declaration at testdata/shadow.go:14"
29 var _, err = f.Read(buf) // ERROR "declaration of .err. shadows declaration at testdata/shadow.go:13"
48 // The declaration of x is a shadow because x is mentioned below.
49 var x int // ERROR "declaration of .x. shadows declaration at testdata/shadow.go:14"
  /prebuilts/ndk/r11/sources/android/support/tests/
Android.mk 3 # Module declaration for the 'minitest' unit-test
11 # Module declaration for the unit test program.
  /external/guava/guava/src/com/google/common/reflect/
Parameter.java 39 private final Invokable<?, ?> declaration; field in class:Parameter
45 Invokable<?, ?> declaration,
49 this.declaration = declaration;
62 return declaration;
128 return position == that.position && declaration.equals(that.declaration);
  /external/mesa3d/src/compiler/glsl/
ir_variable_refcount.h 61 bool declaration; /* If the variable had a decl in the instruction stream */ member in class:ir_variable_refcount_entry
  /prebuilts/ndk/r13/sources/android/support/tests/
Android.mk 3 # Module declaration for the 'minitest' unit-test
11 # Module declaration for the unit test program.
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
CheckForBrokenJciteTag.java 48 BodyDeclaration declaration = BodyDeclarationLocators.findDeclarationNode(commentNode); local
49 if (JavadocUtils.isNormallyDocumented(declaration)) {
50 List<String> locatorStrings = BodyDeclarationLocators.toLocatorStringForms(declaration);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 83 * declaration
88 struct tgsi_declaration *declaration,
91 assert( declaration->NrTokens < 0xFF );
93 declaration->NrTokens++;
101 struct tgsi_declaration declaration; local
103 declaration.Type = TGSI_TOKEN_TYPE_DECLARATION;
104 declaration.NrTokens = 1;
105 declaration.File = TGSI_FILE_NULL;
106 declaration.UsageMask = TGSI_WRITEMASK_XYZW;
107 declaration.Interpolate = 0
134 struct tgsi_declaration declaration; local
401 struct tgsi_declaration *declaration; local
    [all...]

Completed in 703 milliseconds

1 2 3 4 5 6 7 8 91011>>