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

1 2 3 4 5 6 7 8

  /cts/tools/signature-tools/src/signature/model/impl/
SigTypeVariableReference.java 28 private ITypeVariableDefinition definition; field in class:SigTypeVariableReference
30 public SigTypeVariableReference(ITypeVariableDefinition definition) {
31 this.definition = definition;
35 return definition;
SigClassReference.java 27 private final IClassDefinition definition; field in class:SigClassReference
29 public SigClassReference(IClassDefinition definition) {
30 this.definition = definition;
34 return definition;
SigClassDefinition.java 179 public static int hashCode(IClassDefinition definition) {
183 // return definition.getQualifiedName().hashCode();
187 + ((definition.getName() == null) ? 0 : definition.getName()
191 + ((definition.getPackageName() == null) ? 0 : definition
  /external/stlport/test/unit/
macro_checks.cpp 6 # 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...]
  /ndk/tests/device/test-gnustl-full/unit/
macro_checks.cpp 6 # 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...]
  /ndk/tests/device/test-stlport/unit/
macro_checks.cpp 6 # 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/
fuzzy-pch.c 20 # error FOO has the wrong definition
27 // CHECK-FOO: definition of macro 'FOO' differs between the precompiled header ('1') and the command line ('blah')
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_handshake.py 147 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) in _TEST_REDUNDANT_QUOTED_EXTENSION_DATA
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.cpp 59 OpaqueJSClass::OpaqueJSClass(const JSClassDefinition* definition, OpaqueJSClass* protoClass)
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->callAsFunction
149 JSClassDefinition definition = *clientDefinition; \/\/ Avoid modifying client copy. local
    [all...]
  /external/webkit/Source/JavaScriptCore/API/tests/
JSNodeList.c 107 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);
JSNode.c 172 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);
  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 75 * Returns the category (width) of the definition site of the register.
82 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg); local
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); local
102 return definition == null ? null : definition.getResult();
106 * Returns true if the definition site of this register is
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
RegisterAllocator.java 75 * Returns the category (width) of the definition site of the register.
82 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg); local
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); local
102 return definition == null ? null : definition.getResult();
106 * Returns true if the definition site of this register is
    [all...]
  /external/clang/test/Sema/
incomplete-decl.c 6 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/
toplevel.ml 5 (* top ::= definition | external | expression | ';' *)
20 print_endline "parsed a function definition.";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 7 (* top ::= definition | external | expression | ';' *)
22 print_endline "parsed a function definition.";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 24 (* var definition *)
toplevel.ml 8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
WordActivity.java 35 * Displays a word and its definition.
57 TextView definition = (TextView) findViewById(R.id.definition); local
63 definition.setText(cursor.getString(dIndex));
  /external/chromium/chrome/common/
web_apps.h 92 // 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,
web_apps.cc 91 "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->GetList("urls", &urls_value))
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-call.cpp 28 expected-error {{neither visible in the template definition nor found by argument-dependent lookup}}
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 8 (* top ::= definition | external | expression | ';' *)
23 print_endline "parsed a function definition.";

Completed in 522 milliseconds

1 2 3 4 5 6 7 8