HomeSort by relevance Sort by last modified time
    Searched refs:definition (Results 1 - 25 of 253) 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;
  /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...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorMeasurementTests.java 41 * - the matrix definition
75 for(Object definition[] : testDefinitionMatrix) {
77 test.mSensorType = (Integer)definition[0];
78 test.mSamplingRateInUs = (Integer)definition[1];
79 test.mReferenceValue = (Float)definition[2];
80 test.mThreshold = (Float)definition[3];
129 for(Object definition[] : testDefinitionMatrix) {
131 test.mSensorType = (Integer)definition[0];
132 test.mSamplingRateInUs = (Integer)definition[1];
133 test.mReportLatencyInUs = (Integer)definition[2]
    [all...]
SensorFrequencyTests.java 42 * - the matrix definition
69 for(int definition[] : testDefinitionMatrix) {
71 test.mSensorType = definition[0];
72 test.mReportLatencyInUs = definition[1];
73 test.mThresholdPercentageOfNs = definition[2];
118 for(int definition[] : testDefinitionMatrix) {
120 test.mSensorType = definition[0];
121 test.mReportLatencyInUs = definition[1];
122 test.mThresholdPercentageOfNs = definition[2];
170 for(int definition[] : testDefinitionMatrix)
    [all...]
SensorEventOrderingTests.java 37 * - the matrix definition
75 for(int definition[] : testDefinitionMatrix) {
77 test.mSensorType = definition[0];
78 test.mSamplingRateInUs = definition[1];
79 test.mReportLatencyInUs = definition[2];
  /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/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementRegistrationContext.cpp 50 CustomElementDefinition* definition = m_registry.registerElement(document, constructorBuilder, type, validNames, exceptionState); local
52 if (!definition)
55 // Upgrade elements that were waiting for this definition.
56 const CustomElementUpgradeCandidateMap::ElementSet& upgradeCandidates = m_candidates.takeUpgradeCandidatesFor(definition->descriptor());
58 didResolveElement(definition, *it);
96 CustomElementDefinition* definition = m_registry.find(descriptor); local
97 if (definition)
98 didResolveElement(definition, element);
103 void CustomElementRegistrationContext::didResolveElement(CustomElementDefinition* definition, Element* element)
105 CustomElement::define(element, definition);
    [all...]
CustomElementRegistry.cpp 103 RefPtr<CustomElementDefinition> definition = CustomElementDefinition::create(descriptor, lifecycleCallbacks); local
105 if (!constructorBuilder->createConstructor(document, definition.get(), exceptionState))
108 m_definitions.add(descriptor, definition);
111 if (!constructorBuilder->didRegisterDefinition(definition.get())) {
116 return definition.get();
CustomElement.cpp 94 RefPtr<CustomElementDefinition> definition(passDefinition);
103 definitions().add(element, definition);
104 CustomElementCallbackScheduler::scheduleCreatedCallback(definition->callbacks(), element);
111 CustomElementDefinition* definition = definitions().get(element); local
112 ASSERT(definition);
113 return definition;
153 void CustomElement::DefinitionMap::add(Element* element, PassRefPtr<CustomElementDefinition> definition)
155 ASSERT(definition.get());
156 DefinitionMap::ElementDefinitionHashMap::AddResult result = m_definitions.add(element, definition);
  /external/chromium_org/gpu/command_buffer/service/
mailbox_synchronizer.cc 68 const TextureDefinition& definition)
69 : definition(definition) {}
75 : version(group->definition.version()), group(group) {}
120 Texture* new_texture = group->definition.CreateTexture();
186 scoped_refptr<NativeImageBuffer> image_buffer = group->definition.image();
189 if (!group->definition.IsOlderThan(texture_version.version))
194 if (group->definition.Matches(texture))
202 group->definition = TextureDefinition(texture->target(),
217 TextureDefinition& definition = it->second.group->definition local
    [all...]
mailbox_synchronizer.h 63 explicit TextureGroup(const TextureDefinition& definition);
66 TextureDefinition definition; member in struct:gpu::gles2::MailboxSynchronizer::TextureGroup
  /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/chromium_org/chrome/browser/profile_resetter/
profile_resetter_browsertest.cc 32 void AddCookie(const std::string& host, const std::string& definition);
39 const std::string& definition);
77 const std::string& definition) {
86 definition));
105 const std::string& definition) {
110 GURL(host), definition, net::CookieOptions(), local
  /external/chromium_org/chrome/renderer/resources/extensions/
chrome_direct_setting.js 17 var getSchema = this.functionSchemas.get.definition.parameters;
25 this.functionSchemas.set.definition.parameters);
33 var clearSchema = this.functionSchemas.clear.definition.parameters;
chrome_setting.js 17 var getSchema = this.functionSchemas.get.definition.parameters;
25 this.functionSchemas.set.definition.parameters);
33 var clearSchema = this.functionSchemas.clear.definition.parameters;
content_setting.js 18 var getSchema = this.functionSchemas.get.definition.parameters;
26 this.functionSchemas.set.definition.parameters);
34 var clearSchema = this.functionSchemas.clear.definition.parameters;
42 this.functionSchemas.getResourceIdentifiers.definition.parameters;
  /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 *)

Completed in 641 milliseconds

1 2 3 4 5 6 7 8 91011