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

12345

/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/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_handshake.py147 definition used in this test is a pair of an extension name and a
158 for formatted_string, definition in _TEST_TOKEN_EXTENSION_DATA:
160 definition, parse_extensions(formatted_string,
169 for formatted_string, definition in _TEST_TOKEN_EXTENSION_DATA:
171 definition, parse_extensions(formatted_string,
174 for formatted_string, definition in _TEST_QUOTED_EXTENSION_DATA:
176 definition, parse_extensions(formatted_string,
181 definition) in _TEST_REDUNDANT_TOKEN_EXTENSION_DATA:
183 definition, parse_extensions(formatted_string,
187 definition) i
[all...]
/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/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DRegisterAllocator.java75 * Returns the category (width) of the definition site of the register.
82 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg);
84 if (definition == null) {
88 return definition.getResult().getCategory();
93 * Returns the RegisterSpec of the definition of the register.
96 * @return definition spec of the register or null if it is never defined
100 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg);
102 return definition == null ? null : definition.getResult();
106 * Returns true if the definition sit
[all...]
/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.";
/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/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dcommon.py197 def _parse_extension_param(state, definition, allow_quoted_string):
206 definition.add_parameter(param_name, None)
221 definition.add_parameter(param_name, param_value)
/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/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) { }

Completed in 298 milliseconds

12345