HomeSort by relevance Sort by last modified time
    Searched defs:includes (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_globals.py 29 """Module to share global variables (includes and interfaces) across modules."""
31 includes = set() variable
v8_callback_interface.py 37 from v8_globals import includes namespace
74 includes.clear()
75 includes.update(CALLBACK_INTERFACE_CPP_INCLUDES)
v8_dictionary.py 10 from v8_globals import includes namespace
44 includes.clear()
45 includes.update(DICTIONARY_CPP_INCLUDES)
93 includes.clear()
v8_attributes.py 38 from v8_globals import includes, interfaces namespace
56 includes.add('bindings/core/v8/BindingSecurity.h')
61 includes.add('core/dom/custom/CustomElementProcessingStack.h')
73 includes.add('bindings/core/v8/PrivateScriptRunner.h')
74 includes.add('core/frame/LocalFrame.h')
75 includes.add('platform/ScriptForbiddenScope.h')
83 includes.add('bindings/core/v8/V8ErrorHandler.h')
373 includes.add('bindings/core/v8/V8ErrorHandler.h')
421 includes.add('core/%s.h' % namespace)
v8_methods.py 39 from v8_globals import includes namespace
84 includes.add('bindings/core/v8/PrivateScriptRunner.h')
85 includes.add('core/frame/LocalFrame.h')
86 includes.add('platform/ScriptForbiddenScope.h')
93 includes.update(['bindings/core/v8/ScriptCallStackFactory.h',
97 includes.add('bindings/core/v8/ScriptState.h')
100 includes.add('bindings/core/v8/BindingSecurity.h')
103 includes.add('core/dom/custom/CustomElementProcessingStack.h')
code_generator_v8.py 77 from v8_globals import includes, interfaces namespace
88 # Add includes for any dependencies
91 includes.update(interface_info.get('dependencies_include_paths', []))
92 template_context['cpp_includes'] = sorted(includes)
v8_utilities.py 40 from v8_globals import includes namespace
165 includes.add('bindings/core/v8/V8DOMActivityLogger.h')
235 includes.add('core/frame/UseCounter.h')
304 includes.add('core/frame/UseCounter.h')
v8_interface.py 44 from v8_globals import includes namespace
76 includes.clear()
77 includes.update(INTERFACE_CPP_INCLUDES)
87 includes.add('modules/webaudio/AudioBuffer.h')
91 includes.update(['bindings/core/v8/ScriptController.h',
101 includes.add('bindings/core/v8/BindingSecurity.h')
120 includes.add('core/frame/UseCounter.h')
125 includes.update(['bindings/core/v8/V8GCController.h',
226 includes.add('bindings/core/v8/Dictionary.h')
228 includes.add('bindings/core/v8/SerializedScriptValue.h'
    [all...]
v8_types.py 44 from v8_globals import includes namespace
320 # Includes
388 includes.update(idl_type.includes_for_type)
398 includes.update(includes_for_interface(interface_name))
667 """Returns V8 conversion type, adding any additional includes.
688 # Basic types, without additional includes
707 # Data type with potential additional includes
    [all...]
  /external/chromium_org/chromeos/dbus/
bluetooth_gatt_service_client.h 39 dbus::Property<std::vector<dbus::ObjectPath> > includes; member in struct:chromeos::BluetoothGattServiceClient::Properties
  /external/chromium_org/chrome/browser/extensions/
convert_user_script.cc 131 base::ListValue* includes = new base::ListValue(); local
133 includes->Append(new base::StringValue(script.globs().at(i)));
142 content_script->Set(keys::kIncludeGlobs, includes);
  /external/chromium_org/build/config/linux/
pkg-config.py 15 # The result will be [ <includes>, <cflags>, <libs>, <lib_dirs>, <ldflags> ]
140 includes = [] variable
155 includes.append(RewritePath(flag[2:], prefix, sysroot))
169 print json.dumps([includes, cflags, libs, lib_dirs, ldflags])
  /external/chromium_org/third_party/skia/gm/
gm_error.h 109 * Returns true iff this ErrorCombination includes this ErrorType.
111 bool includes(const ErrorType type) const { function in class:skiagm::ErrorCombination
125 if (this->includes(type)) {
136 * Returns a new ErrorCombination, which includes the union of all
  /external/clang/lib/Frontend/
ChainedIncludesSource.cpp 115 std::vector<std::string> &includes = CI.getPreprocessorOpts().ChainedIncludes; local
116 assert(!includes.empty() && "No '-chain-include' in options!");
124 for (unsigned i = 0, e = includes.size(); i != e; ++i) {
133 CInvok->getPreprocessorOpts().Includes.clear();
138 FrontendInputFile InputFile(includes[i], IK);
180 std::string pchName = includes[i-1];
204 std::string pchName = includes.back() + ".pch-final";
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
Antlr3Mojo.java 166 * Unless otherwise specified, the include list scans for and includes all
174 protected Set includes = new HashSet(); field in class:Antlr3Mojo
261 // Includes
263 for (String e : (Set<String>) includes) {
415 // What are the sets of includes (defaulted or otherwise).
417 Set includes = getIncludesPatterns(); local
425 SourceInclusionScanner scan = new SimpleSourceInclusionScanner(includes, excludes);
465 if (includes == null || includes.isEmpty()) {
468 return includes;
    [all...]
  /external/bison/src/
lalr.c 66 static goto_number **includes; variable
225 includes = xnmalloc (ngotos, sizeof *includes);
272 includes[i] = NULL;
276 includes[i] = xnmalloc (nedges + 1, sizeof includes[i][0]);
278 includes[i][j] = edge[j];
279 includes[i][nedges] = END_NODE;
286 relation_transpose (&includes, ngotos);
296 relation_digraph (includes, ngotos, &goto_follows)
    [all...]
  /external/chromium_org/extensions/browser/api/bluetooth_low_energy/
bluetooth_low_energy_apitest.cc 419 std::vector<BluetoothGattService*> includes; local
420 includes.push_back(service1_.get());
430 .WillOnce(Return(includes));
    [all...]
bluetooth_low_energy_event_router.cc 374 const std::vector<BluetoothGattService*>& includes = local
377 includes.begin();
378 iter != includes.end();
    [all...]
  /external/chromium_org/v8/src/
frames-inl.h 45 inline bool StackHandler::includes(Address address) const { function in class:v8::internal::StackHandler
  /external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
GUnitExecuteMojo.java 88 private Set includes; field in class:GUnitExecuteMojo
115 return includes == null || includes.isEmpty()
117 : includes;
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
ANTLR3.java 415 String[] includes = {"antlr-*.jar", "stringtemplate-*.jar"}; local
418 ds.setIncludes(includes);
  /external/chromium_org/third_party/libxml/src/
schematron.c 198 int nbIncludes; /* number of includes in the array */
200 xmlNodePtr *includes; /* the array of includes */ member in struct:_xmlSchematronParserCtxt
607 ret->includes = NULL;
735 if (ctxt->includes == NULL) {
737 ctxt->includes = (xmlNodePtr *)
739 if (ctxt->includes == NULL) {
740 xmlSchematronPErrMemory(NULL, "allocating parser includes",
749 xmlRealloc(ctxt->includes, ctxt->maxIncludes * 4 *
752 xmlSchematronPErrMemory(NULL, "allocating parser includes",
    [all...]
  /external/libxml2/
schematron.c 198 int nbIncludes; /* number of includes in the array */
200 xmlNodePtr *includes; /* the array of includes */ member in struct:_xmlSchematronParserCtxt
607 ret->includes = NULL;
735 if (ctxt->includes == NULL) {
737 ctxt->includes = (xmlNodePtr *)
739 if (ctxt->includes == NULL) {
740 xmlSchematronPErrMemory(NULL, "allocating parser includes",
749 xmlRealloc(ctxt->includes, ctxt->maxIncludes * 4 *
752 xmlSchematronPErrMemory(NULL, "allocating parser includes",
    [all...]
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-starteam.jar 

Completed in 447 milliseconds

1 2