HomeSort by relevance Sort by last modified time
    Searched full:definition (Results 826 - 850 of 14896) sorted by null

<<31323334353637383940>>

  /cts/tests/tests/keystore/src/android/keystore/cts/
AESCipherNistCavpKatTest.java 188 // Outside of a test definition
205 + " definition: " + line);
216 + " definition: " + line);
219 // Inside of a test definition
221 // End of test definition
238 + " definition: " + line);
253 + " definition: " + line);
  /external/clang/test/Parser/
recovery.cpp 39 struct S { // expected-error {{missing '}' at end of definition of 'MissingBrace::S'}}
43 namespace N { int g(); } // expected-note {{still within definition of 'MissingBrace::S' here}}
48 template<typename T> struct PR17949 { // expected-error {{missing '}' at end of definition of 'MissingBrace::PR17949'}}
50 namespace X { // expected-note {{still within definition of 'MissingBrace::PR17949' here}}
208 struct ::, struct ::; // expected-error 2 {{expected identifier}} expected-error 2 {{declaration of anonymous struct must be a definition}} expected-warning {{declaration does not declare anything}}
211 struct ::template foo, struct ::template bar; // expected-error 2 {{expected identifier}} expected-error 2 {{declaration of anonymous struct must be a definition}} expected-warning {{declaration does not declare anything}}
212 struct ::foo struct::; // expected-error {{no struct named 'foo' in the global namespace}} expected-error {{expected identifier}} expected-error {{declaration of anonymous struct must be a definition}}
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
Instrumenter.java 74 * definition of the class as ASM reader
75 * @return instrumented definition
98 * definition of the class
101 * @return instrumented definition
119 * stream to read class definition from
122 * @return instrumented definition
144 * stream to read class definition from
  /external/libxml2/include/libxml/
xmlwriter.h 340 * DTD element definition
349 * DTD element definition conveniency functions
370 * DTD attribute list definition
379 * DTD attribute list definition conveniency functions
400 * DTD entity definition
409 * DTD entity definition conveniency functions
456 * DTD notation definition
  /external/clang/test/SemaCXX/
cxx1y-variable-templates_top_level.cpp 19 // expected-error@-2 {{constexpr variable declaration must be a definition}}
70 int v; // expected-note {{previous definition is here}}
74 template<typename T> T v; // expected-note {{previous definition is here}}
78 template<typename T> T v0; // expected-note {{previous definition is here}}
81 template<typename T> T v; // expected-note {{previous definition is here}}
108 template<typename T> T var = T(); // expected-note {{previous definition is here}}
115 template<typename T> auto v1 = T(); // expected-note {{previous definition is here}}
117 template<typename T> auto v2 = T(); // expected-note {{previous definition is here}}
119 template<typename T> auto v3 = T(); // expected-note {{previous definition is here}}
244 template<> int pi0<int> = 10; // expected-note 3{{previous definition is here}
    [all...]
cxx0x-cursory-default-delete.cpp 150 DeleteDefault() = delete; // expected-note {{previous definition is here}}
153 ~DeleteDefault() = delete; // expected-note {{previous definition is here}}
156 DeleteDefault &operator=(const DeleteDefault &) = delete; // expected-note {{previous definition is here}}
200 void *operator new(size_t) = delete; // expected-error {{deleted definition must be first declaration}} expected-note {{implicit}}
201 void operator delete(void *) noexcept = delete; // expected-error {{deleted definition must be first declaration}} expected-note {{implicit}}
dllimport.cpp 42 __declspec(dllimport) extern int ExternGlobalInit = 1; // expected-error{{definition of dllimport data}}
43 __declspec(dllimport) int GlobalInit1 = 1; // expected-error{{definition of dllimport data}}
44 int __declspec(dllimport) GlobalInit2 = 1; // expected-error{{definition of dllimport data}}
46 // Declare, then reject definition.
122 // expected-error@-1{{definition of dllimport data}}
143 __declspec(dllimport) int LocalVarDef = 1; // expected-error{{definition of dllimport data}}
145 __declspec(dllimport) extern int ExternLocalVarDef = 1; // expected-error{{definition of dllimport data}}
163 template<typename T> __declspec(dllimport) extern int ExternVarTmplInit = 1; // expected-error{{definition of dllimport data}}
164 template<typename T> __declspec(dllimport) int VarTmplInit1 = 1; // expected-error{{definition of dllimport data}}
165 template<typename T> int __declspec(dllimport) VarTmplInit2 = 1; // expected-error{{definition of dllimport data}
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
input.go 190 // Name is alphanumeric by definition.
201 // defineMacro stores the macro definition in the Input.
213 // macroDefinition returns the list of formals and the tokens of the definition.
214 // The argument list is nil for no parens on the definition; otherwise a list of
220 return nil, nil // No definition for macro
240 tok = in.Stack.Next() // First token of macro definition.
244 in.Error("bad syntax in definition for macro:", name)
249 in.Error("bad syntax in definition for macro:", name)
253 in.Error("duplicate argument", arg, "in definition for macro:", name)
258 in.Error("bad definition for macro:", name
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
input.go 190 // Name is alphanumeric by definition.
201 // defineMacro stores the macro definition in the Input.
213 // macroDefinition returns the list of formals and the tokens of the definition.
214 // The argument list is nil for no parens on the definition; otherwise a list of
220 return nil, nil // No definition for macro
240 tok = in.Stack.Next() // First token of macro definition.
244 in.Error("bad syntax in definition for macro:", name)
249 in.Error("bad syntax in definition for macro:", name)
253 in.Error("duplicate argument", arg, "in definition for macro:", name)
258 in.Error("bad definition for macro:", name
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingMap.java 137 * A sensible definition of {@link #putAll(Map)} in terms of {@link
149 * A sensible, albeit inefficient, definition of {@link #remove} in terms of
174 * A sensible definition of {@link #clear} in terms of the {@code iterator}
204 * A sensible, albeit inefficient, definition of {@link #containsKey} in terms
234 * A sensible definition of {@link #containsValue} in terms of the {@code
267 * A sensible definition of {@link #isEmpty} in terms of the {@code iterator}
278 * A sensible definition of {@link #equals} in terms of the {@code equals}
289 * A sensible definition of {@link #hashCode} in terms of the {@code iterator}
300 * A sensible definition of {@link #toString} in terms of the {@code iterator}
  /external/llvm/lib/Transforms/Utils/
FunctionImportUtils.cpp 21 /// Checks if we should import SGV as a definition, otherwise import as a
26 // For alias, we tie the definition to the base object. Extract it and recurse
123 // An imported available_externally definition converts
132 // These both stay the same when importing the definition.
139 // definition and importing would change the order they are seen by the
148 // and the definition can be imported. It can be treated similarly
173 // A non-promoted imported local definition stays local.
209 // at this point would be a definition imported as available_externally.
211 "Expected comdat on definition (possibly available external)");
  /external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
DebugSupport.h 62 /// IA-32 processor context definition
66 /// FP / MMX / XMM registers (see fxrstor instruction definition)
156 /// X64 processor context definition
159 /// FP / MMX / XMM registers (see fxrstor instruction definition)
186 // NOTE: UEFI 2.0 spec definition as follows.
282 /// IPF processor context definition
457 /// EBC processor context definition
474 /// Universal EFI_SYSTEM_CONTEXT definition
514 /// Machine type definition
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
CodeFragment.py 84 ## The description of function definition and start & end position
121 ## The description of enum definition and start & end position
137 ## The description of struct/union definition and start & end position
153 ## The description of 'Typedef' definition and start & end position
170 ## The description of function calling definition and start & end position
  /external/clang/include/clang/Basic/
DiagnosticSerializationKinds.td 88 "definition of macro '%0' differs between the precompiled header ('%1') "
100 "%q0 from module '%1' is not present in definition of %q2"
103 "definition has no member %0">;
108 "%select{definition in module '%2' is here|defined here}1">;
110 "definition in module '%0' is here">;
  /external/clang/test/CodeGenCXX/
explicit-instantiation.cpp 22 // Check that we emit definitions if we instantiate a function definition before
85 // definition as appropriate.
115 // Explicit instantiation definition of Outer causes explicit instantiation
116 // definition of Inner.
130 // occur prior to the definition itself.
  /external/clang/test/Index/
annotate-tokens.c 73 // CHECK: Punctuation: "*" [4:4 - 4:5] VarDecl=t_ptr:4:6 (Definition)
74 // CHECK: Identifier: "t_ptr" [4:6 - 4:11] VarDecl=t_ptr:4:6 (Definition)
75 // CHECK: Punctuation: "=" [4:12 - 4:13] VarDecl=t_ptr:4:6 (Definition)
88 // CHECK: Keyword: "struct" [7:3 - 7:9] VarDecl=x:7:12 (Definition)
90 // CHECK: Identifier: "x" [7:12 - 7:13] VarDecl=x:7:12 (Definition)
91 // CHECK: Punctuation: "=" [7:14 - 7:15] VarDecl=x:7:12 (Definition)
102 // CHECK: Keyword: "void" [8:3 - 8:7] VarDecl=xx:8:9 (Definition)
103 // CHECK: Punctuation: "*" [8:8 - 8:9] VarDecl=xx:8:9 (Definition)
104 // CHECK: Identifier: "xx" [8:9 - 8:11] VarDecl=xx:8:9 (Definition)
105 // CHECK: Punctuation: "=" [8:12 - 8:13] VarDecl=xx:8:9 (Definition)
    [all...]
overrides.m 103 // CHECK: overrides.m:27:9: ObjCInstanceMethodDecl=method:27:9 (Definition) [Overrides @16:9]
104 // CHECK: overrides.m:28:9: ObjCClassMethodDecl=methodWithParam::28:9 (Definition) [Overrides @18:9]
107 // CHECK: overrides.m:50:8: ObjCInstanceMethodDecl=meth:50:8 (Definition) [Overrides @43:8]
118 // CHECK: overrides.m:95:17: ObjCImplementationDecl=I5:95:17 (Definition) Extent=[95:1 - 97:2]
119 // CHECK: overrides.m:96:8: ObjCInstanceMethodDecl=meth:96:8 (Definition) [Overrides @92:8] Extent=[96:1 - 96:14]
  /external/clang/test/SemaObjC/
objc-literal-nsnumber.m 13 id num = @1000; // expected-error {{definition of class NSNumber must be available to use Objective-C numeric literals}}
16 id num1 = @(x); // expected-error {{definition of class NSNumber must be available to use Objective-C numeric literals}}\
23 id num = @1000; // expected-error {{definition of class NSNumber must be available to use Objective-C numeric literals}}
26 id num1 = @(x); // expected-error {{definition of class NSNumber must be available to use Objective-C numeric literals}}\
77 return @{@"name" : @"value"}; // expected-error {{definition of class NSDictionary must be available to use Objective-C dictionary literals}}
  /external/emma/core/java12/com/vladium/emma/rt/
IClassLoadHook.java 37 * The hook reads in the original class definition from 'in' and [possibly]
45 * intrumenting the pending class definition [or is unable to do so] only
47 * definition turns out to be for an interface and the hook does not process
52 * [perhaps because it cloned the original definition or never modified it]:
62 * class definition in 'bytes' ('out' could be backed by the same array as
  /external/libnl/doc/
DoxygenLayout.xml 24 <!-- Layout definition for a class page -->
79 <!-- Layout definition for a namespace page -->
102 <!-- Layout definition for a file page -->
131 <!-- Layout definition for a group page -->
177 <!-- Layout definition for a directory page -->
  /hardware/nxp/nfc/halimpl/dnld/
phDnldNfc_Internal.h 63 * Enum definition contains Download Event Types
81 * Enum definition contains Download Handler states for each event requested
95 * Enum definition contains Download Handler Transition
105 * Enum definition contains the Frame input type for CmdId in process
119 * Enum definition contains Firmware file format
  /packages/apps/Test/connectivity/sl4n/rapidjson/doc/misc/
DoxygenLayout.xml 25 <!-- Layout definition for a class page -->
84 <!-- Layout definition for a namespace page -->
108 <!-- Layout definition for a file page -->
138 <!-- Layout definition for a group page -->
184 <!-- Layout definition for a directory page -->
  /external/clang/include/clang/Lex/
MacroInfo.h 31 /// \brief Encapsulates the data about a macro definition (e.g. its tokens).
57 /// \brief Length in characters of the macro definition.
128 /// \brief Get length in characters of the macro definition.
135 /// \brief Return true if the specified macro definition is equal to
248 "Changing replacement tokens after definition length got calculated");
304 /// history. Usually a macro definition (MacroInfo) is where a macro name
338 /// \brief Set previous definition of the macro with the same name.
341 /// \brief Get previous definition of the macro with the same name.
344 /// \brief Get previous definition of the macro with the same name.
390 /// macro definition directive along with info about its undefined locatio
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
MacroInfo.h 31 /// \brief Encapsulates the data about a macro definition (e.g. its tokens).
57 /// \brief Length in characters of the macro definition.
128 /// \brief Get length in characters of the macro definition.
135 /// \brief Return true if the specified macro definition is equal to
248 "Changing replacement tokens after definition length got calculated");
304 /// history. Usually a macro definition (MacroInfo) is where a macro name
338 /// \brief Set previous definition of the macro with the same name.
341 /// \brief Get previous definition of the macro with the same name.
344 /// \brief Get previous definition of the macro with the same name.
390 /// macro definition directive along with info about its undefined locatio
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Lex/
MacroInfo.h 31 /// \brief Encapsulates the data about a macro definition (e.g. its tokens).
57 /// \brief Length in characters of the macro definition.
125 /// \brief Get length in characters of the macro definition.
132 /// \brief Return true if the specified macro definition is equal to
245 "Changing replacement tokens after definition length got calculated");
283 /// history. Usually a macro definition (MacroInfo) is where a macro name
317 /// \brief Set previous definition of the macro with the same name.
320 /// \brief Get previous definition of the macro with the same name.
323 /// \brief Get previous definition of the macro with the same name.
369 /// macro definition directive along with info about its undefined locatio
    [all...]

Completed in 5216 milliseconds

<<31323334353637383940>>