Searched refs:definition (Results 1 - 25 of 77) sorted by relevance

1234

/external/stlport/test/unit/
H A Dmacro_checks.cpp6 # error Missing CHAR_BIT definition.
14 # error Missing CHAR_MAX definition.
18 # error Missing CHAR_MIN definition.
26 # error Missing INT_MAX definition.
30 # error Missing INT_MIN definition.
38 # error Missing LONG_MAX definition.
42 # error Missing LONG_MIN definition.
50 # error Missing SCHAR_MAX definition.
54 # error Missing SCHAR_MIN definition.
62 # error Missing SHRT_MAX definition
[all...]
/external/clang/test/PCH/
H A Dfuzzy-pch.c14 # error FOO has the wrong definition
/external/webkit/Source/JavaScriptCore/API/
H A DJSClassRef.cpp59 OpaqueJSClass::OpaqueJSClass(const JSClassDefinition* definition, OpaqueJSClass* protoClass) argument
60 : parentClass(definition->parentClass)
62 , initialize(definition->initialize)
63 , finalize(definition->finalize)
64 , hasProperty(definition->hasProperty)
65 , getProperty(definition->getProperty)
66 , setProperty(definition->setProperty)
67 , deleteProperty(definition->deleteProperty)
68 , getPropertyNames(definition->getPropertyNames)
69 , callAsFunction(definition
142 createNoAutomaticPrototype(const JSClassDefinition* definition) argument
149 JSClassDefinition definition = *clientDefinition; // Avoid modifying client copy. local
[all...]
/external/webkit/Source/JavaScriptCore/API/tests/
H A DJSNodeList.c107 JSClassDefinition definition = kJSClassDefinitionEmpty; local
108 definition.staticValues = JSNodeList_staticValues;
109 definition.staticFunctions = JSNodeList_staticFunctions;
110 definition.getProperty = JSNodeList_getProperty;
111 definition.initialize = JSNodeList_initialize;
112 definition.finalize = JSNodeList_finalize;
114 jsClass = JSClassCreate(&definition);
H A DJSNode.c172 JSClassDefinition definition = kJSClassDefinitionEmpty; local
173 definition.staticValues = JSNode_staticValues;
174 definition.staticFunctions = JSNode_staticFunctions;
175 definition.initialize = JSNode_initialize;
176 definition.finalize = JSNode_finalize;
178 jsClass = JSClassCreate(&definition);
/external/clang/test/Sema/
H A Dincomplete-decl.c6 struct foo f; // expected-error{{tentative definition has type 'struct foo' that is never completed}}
9 static struct foo g; // expected-warning {{tentative definition of variable with internal linkage has incomplete non-array type 'struct foo'}} \
10 expected-error{{tentative definition has type 'struct foo' that is never completed}}
15 int ary[]; // expected-warning {{tentative array definition assumed to have one element}}
19 int ary[]; // expected-error{{definition of variable with array type needs an explicit size or an initializer}}
24 int h[]; // expected-warning {{tentative array definition assumed to have one element}}
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml5 (* top ::= definition | external | expression | ';' *)
20 print_endline "parsed a function definition.";
H A Dast.ml24 (* func - This type represents a function definition itself. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml7 (* top ::= definition | external | expression | ';' *)
22 print_endline "parsed a function definition.";
H A Dast.ml24 (* func - This type represents a function definition itself. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml24 (* var definition *)
H A Dtoplevel.ml8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";
/external/clang/test/SemaTemplate/
H A Dinstantiate-call.cpp28 expected-error {{neither visible in the template definition nor found by argument-dependent lookup}}
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";
H A Dast.ml24 (* func - This type represents a function definition itself. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";
H A Dast.ml30 (* func - This type represents a function definition itself. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";
/external/chromium/chrome/common/
H A Dweb_apps.cc91 "Invalid application definition URL. Must be a valid relative URL or "
95 "an absolute URL with the same origin as the application definition.";
98 "an absolute URL with the same origin as the application definition.";
101 "an absolute URL with the same origin as the application definition.";
173 } else if (LowerCaseEqualsASCII(rel, "chrome-application-definition")) {
183 // If there is a definition file, all attributes come from it.
242 DictionaryValue* definition = static_cast<DictionaryValue*>(definition_value); local
248 CHECK(definition->GetString("launch_url", &app_url_string));
258 if (definition->GetList("permissions", &permissions_value)) {
269 if (definition
[all...]
H A Dweb_apps_unittest.cc66 scoped_ptr<DictionaryValue> definition(LoadDefinitionFile(name));
67 if (!definition.get())
74 if (web_apps::ParseWebAppFromDefinitionFile(definition.get(), &web_app,
87 // Test one definition file with a JSON schema error, just to make sure we're
H A Dweb_apps.h92 // Documents can also contain a link to a application 'definition'. In this case
100 // Parses |web_app| information out of |definition|. Returns true on success, or
103 bool ParseWebAppFromDefinitionFile(Value* definition,
/external/clang/test/CodeGenCXX/
H A Dmangle-template.cpp135 struct definition { struct in struct:test10::X
141 typename X<T>::template definition<U> f(T, U) { }
/external/webkit/Tools/android/flex-2.5.4a/
H A Dsym.c176 /* ndinstal - install a name definition */
178 void ndinstal( name, definition )
180 Char definition[];
186 (char *) copy_unsigned_string( definition ), 0,
192 /* ndlookup - lookup a name definition
194 * Returns a nil pointer if the name definition does not exist.
232 /* Generate start condition definition, for use in BEGIN et al. */
/external/libvpx/build/make/
H A Dgen_msvs_def.sh21 This script generates a MSVC module definition file containing a list of symbols
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DCodeGeneratorTestRunner.pm216 JSClassDefinition definition = kJSClassDefinitionEmpty;
217 definition.className = "${idlType}";
218 definition.parentClass = @{[$self->_parentClassRefGetterExpression($interface)]};
219 definition.staticValues = staticValues();
220 definition.staticFunctions = staticFunctions();
223 push(@contents, " definition.initialize = initialize;\n") unless _parentInterface($interface);
224 push(@contents, " definition.finalize = finalize;\n") unless _parentInterface($interface);
227 jsClass = JSClassCreate(&definition);

Completed in 271 milliseconds

1234