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

1 2 3 4 5 6 7 8 91011>>

  /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/lldb/source/Interpreter/
Property.cpp 26 Property::Property (const PropertyDefinition &definition) :
27 m_name (definition.name),
28 m_description (definition.description),
30 m_is_global (definition.global)
32 switch (definition.type)
38 // "definition.default_uint_value" is not used
39 // "definition.default_cstr_value" as a string value that represents the default string value for the architecture/triple
40 m_value_sp.reset (new OptionValueArch(definition.default_cstr_value));
44 // "definition.default_uint_value" is always a OptionValue::Type
49 // "definition.default_uint_value" is always a OptionValue::Typ
    [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/tracing/third_party/components/webcomponentsjs/
CustomElements.js 327 var definition = scope.getRegisteredDefinition(is || node.localName);
328 if (definition) {
329 if (is && definition.tag == node.localName) {
330 return upgradeWithDefinition(node, definition);
331 } else if (!is && !definition.extends) {
332 return upgradeWithDefinition(node, definition);
337 function upgradeWithDefinition(element, definition) {
339 if (definition.is) {
340 element.setAttribute("is", definition.is);
342 implementPrototype(element, definition);
    [all...]
webcomponents-lite.js     [all...]
  /dalvik/dx/src/com/android/multidex/
Path.java 50 private final String definition; field in class:Path
54 Path(String definition) throws IOException {
55 this.definition = definition;
56 for (String filePath : definition.split(Pattern.quote(File.pathSeparator))) {
84 return definition;
  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 73 * Returns the category (width) of the definition site of the register.
80 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg); local
82 if (definition == null) {
86 return definition.getResult().getCategory();
91 * Returns the RegisterSpec of the definition of the register.
94 * @return definition spec of the register or null if it is never defined
98 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg); local
100 return definition == null ? null : definition.getResult();
104 * 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.";
  /frameworks/av/media/img_utils/src/
TiffWriter.cpp 154 const TagDefinition_t* definition = NULL; local
158 definition = mTagMaps[i][index];
163 if (definition == NULL) {
164 ALOGE("%s: No definition exists for tag with id %x.", __FUNCTION__, tag);
166 return definition;
188 const TagDefinition_t* definition = lookupDefinition(tag); local
190 if (definition == NULL) {
191 ALOGE("%s: No definition exists for tag 0x%x.", __FUNCTION__, tag);
312 const TagDefinition_t* definition = lookupDefinition(tag); local
313 if (definition == NULL)
321 const TagDefinition_t* definition = lookupDefinition(tag); local
339 const TagDefinition_t* definition = lookupDefinition(tag); local
    [all...]
  /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/clang/test/SemaTemplate/
instantiate-call.cpp 28 expected-error {{neither visible in the template definition nor found by argument-dependent lookup}}
  /external/lldb/include/lldb/Interpreter/
Property.h 42 Property (const PropertyDefinition &definition);
  /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.";
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeRegex.java 210 definition = entry.getValue();
218 String altered2 = definition2.replace(variable, definition);
364 StringBuffer definition = new StringBuffer();
393 throw new IllegalArgumentException("Duplicate variable definition in " + line);
395 definition.append(linePart.substring(equalsPos+1).trim());
400 definition.append(bnfLineSeparator).append(linePart);
404 variables.put(variable, definition.toString());
406 definition.setLength(0);

Completed in 7160 milliseconds

1 2 3 4 5 6 7 8 91011>>