Searched defs:include (Results 1 - 25 of 53) sorted by relevance

123

/external/oprofile/libutil++/
H A Dstring_filter.h3 * Filter strings based on exclude/include list
15 #include <string>
16 #include <vector>
19 * string_filter - filtering of a string based on include/exclude list
31 * Initialise the filter with the include and exclude list,
38 * Initialise the filter with the include and exclude list.
49 /// include patterns
50 std::vector<std::string> include; member in class:string_filter
/external/chromium_org/tools/grit/grit/node/
H A Dmapping.py18 from grit.node import include namespace
29 'include' : include.IncludeNode,
H A Dempty.py11 from grit.node import include namespace
33 return isinstance(child, (include.IncludeNode, misc.IfNode, misc.PartNode))
H A Dinclude_unittest.py6 '''Unit tests for include.IncludeNode'''
18 from grit.node import include namespace
38 include_node = include.IncludeNode()
39 include_node.StartParsing(u'include', includes)
61 include_node = include.IncludeNode()
62 include_node.StartParsing(u'include', includes)
H A Dmisc.py302 from grit.node import include namespace
314 if isinstance(node, (io.FileNode, include.IncludeNode, misc.PartNode,
365 They include messages designated as variables, and language codes for html
445 print ('Please update %s to include an entry for %s. See the '
/external/chromium_org/tools/grit/grit/format/
H A Drc_header.py23 default_includes = ['#include <atlres.h>', '']
91 from grit.node import empty, include, message, misc, structure namespace
108 (include.IncludeNode, message.MessageNode,
H A Dresource_map.py54 #include <stddef.h>
84 #include "%(map_header_file)s"
86 #include "base/basictypes.h"
87 #include "%(rc_header_file)s"
107 from grit.node import include, structure namespace
112 if isinstance(item, (include.IncludeNode, structure.StructureNode)):
H A Ddata_pack.py19 from grit.node import include namespace
44 if isinstance(node, (include.IncludeNode, message.MessageNode,
H A Drc.py19 from grit.node import empty, include, message, structure namespace
33 elif isinstance(item, include.IncludeNode):
323 # Find the location of the resource header file, so that we can include
347 #include "%s"
348 #include <winresrc.h>
411 from grit.node import include namespace
412 assert isinstance(item, (structure.StructureNode, include.IncludeNode))
414 if isinstance(item, include.IncludeNode):
430 # if needed (e.g. if it is an HTML file include).
/external/chromium_org/tools/grit/grit/tool/
H A Dbuild.py79 resources to include. Anything not listed is dropped.
179 from grit.node import include namespace
184 if (isinstance(node, include.IncludeNode) or
H A Dresize.py17 from grit.node import include namespace
70 #include "resource.h"
71 #include <winresrc.h>
256 # Output all <include> nodes since the dialogs might depend on them (e.g.
260 if isinstance(node, include.IncludeNode):
H A Drc2grd.py16 from grit.node import include namespace
85 # re.split() should include both the normal text and what we intend to
270 adds each included resource as an <include> child node of 'node'.'''
279 node.AddChild(include.IncludeNode.Construct(node, id, res_type, fname))
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dninja_syntax.py93 def include(self, path): member in class:Writer
94 self._line('include %s' % path)
/external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
H A Dbouncing_balls.js26 function include(filename) { function
34 include("bouncing_balls_draw_ball_as_" + getArgValue('ball') + ".js");
35 include("bouncing_balls_draw_back_as_" + getArgValue('back') + ".js");
/external/chromium-trace/trace-viewer/third_party/gl-matrix/jsdoc-template/
H A Dpublish.js148 function include(path) { function
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dgenmodule.c28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <ctype.h>
33 #include "compat-queue.h"
40 typedef struct include { struct
41 STAILQ_ENTRY(include) link;
43 } include; typedef in typeref:struct:include
55 STAILQ_HEAD(includehead, include) includes =
57 include *in
[all...]
/external/lzma/Asm/x86/
H A D7zCrcOpt.asm4 include 7zAsm.asm label
H A DAesOpt.asm4 include 7zAsm.asm label
/external/chromium_org/third_party/libxslt/libxslt/
H A Dimports.c13 #include "libxslt.h"
15 #include <string.h>
18 #include <sys/types.h>
21 #include <math.h>
24 #include <float.h>
27 #include <ieeefp.h>
30 #include <nan.h>
33 #include <ctype.h>
36 #include <libxml/xmlmemory.h>
37 #include <libxm
191 xsltDocumentPtr include; local
[all...]
/external/junit/src/org/junit/experimental/categories/
H A DCategories.java81 public static CategoryFilter include(Class<?> categoryType) { method in class:Categories.CategoryFilter
/external/libxslt/libxslt/
H A Dimports.c13 #include "libxslt.h"
15 #include <string.h>
18 #include <sys/types.h>
21 #include <math.h>
24 #include <float.h>
27 #include <ieeefp.h>
30 #include <nan.h>
33 #include <ctype.h>
36 #include <libxml/xmlmemory.h>
37 #include <libxm
191 xsltDocumentPtr include; local
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DSubscribeForm.java165 * @param include true to receive the message body, false otherwise
167 public void setIncludeBody(boolean include) argument
170 setAnswer(SubscribeOptionFields.include_body.getFieldName(), include);
/external/chromium/chrome/browser/extensions/
H A Dextension_function.h9 #include <string>
10 #include <list>
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "chrome/browser/extensions/extension_function_dispatcher.h"
90 void set_include_incognito(bool include) { include_incognito_ = include; } argument
152 // True if this callback should include information from incognito contexts
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dcmdline.py35 include = optparse.make_option( variable in class:Opts
36 '', '--include', action='store',
116 include=None,
240 Opts.include,
278 Opts.include,
290 Opts.include,
307 Opts.include,
319 Opts.include,
458 include = unshell_list(options.include)
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DBaseCompiledTemplate.java305 * Code common to all three include commands.
307 * @param templateName String representing name of file to include.
312 protected void include(String templateName, boolean ignoreMissingFile, RenderingContext context) { method in class:BaseCompiledTemplate
322 throw new IllegalStateException("Unable to find on include stack: " + templateName);
326 // This method should ONLY be called from include()

Completed in 592 milliseconds

123