Searched defs:for (Results 1 - 17 of 17) sorted by relevance

/external/clang/test/Preprocessor/
H A Dmacro_expand.c11 #define for(x) h(x macro
14 C: for(for))
17 // CHECK: {{^}}C: for(){{$}}
H A Dcxx_oper_keyword_ms_compat.cpp45 #define for macro
130 for
/external/mdnsresponder/mDNSPosix/
H A Dparselog.py15 # See the License for the specific language governing permissions and
20 # Requires OS X 10.3 Panther or later, for Python and Core Graphics Python APIs
31 # (These instructions are for BBEdit, which I highly recommend you use when doing this.)
58 import math # for pi namespace
78 for line in lines:
99 for t in time:
139 #print "Couldn't find any preceeding question for", qaList
189 for point in plotPoints:
204 for index in point[3:]:
216 for i
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/
H A DMSVSUserFile.py9 import socket # for gethostname namespace
21 for an actual file to launch a debugger on, not just a command
32 for path in paths:
40 for arg in args:
42 # them for cmd shell, and then quote the whole thing if there
80 """Adds a DebugSettings node to the user file for a particular config.
94 for (key,val) in environment.iteritems()]
138 for config, spec in sorted(self.configurations.iteritems()):
/external/chromium_org/tools/site_compare/drivers/win32/
H A Dkeyboard.py6 """SiteCompare module for simulating keyboard input.
9 pressing keys on a keyboard. Support is provided for formatted strings
13 import time # for sleep namespace
14 import win32api # for keybd_event and VkKeyCode namespace
22 # is just plain ugly, and win32con is a huge import for just a handful of
75 \p is "pause" for one second, useful when driving menus
78 TODO(jhaas): support for explicit control of SHIFT, support for
80 support for explicit control of left vs. right ALT or SHIFT,
81 support for Window
[all...]
H A Dmouse.py6 """SiteCompare module for simulating mouse input.
13 import time # for sleep namespace
15 import win32api # for mouse_event namespace
17 import win32gui # for window functions namespace
/external/chromium_org/tools/site_compare/commands/
H A Dmaskmaker.py5 """Component for automatically creating masks of changing areas of a website.
13 import os # Functions for walking the directory tree namespace
15 import time # Used for sleep() and naming masks by time namespace
25 """Inserts the command and arguments into a command line for parsing."""
61 ["-t", "--timeout"], "Amount of time (seconds) to wait for browser to "
99 # Get the list of URLs to generate masks for
101 """Helper class for holding information about a URL passed to maskmaker."""
116 url_list = [MaskmakerURL(url.strip()) for url in
138 for url in url_list:
189 print " ** Exceeded maximum error count for thi
[all...]
H A Dtimeload.py15 import os # Functions for walking the directory tree namespace
19 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
27 """Inserts the command and arguments into a command line for parsing."""
62 ["-t", "--timeout"], "Amount of time (seconds) to wait for browser to "
93 if [b for b in browsers if b not in ["chrome", "ie", "firefox"]]:
98 for b in xrange(num_browsers):
104 raise ValueError("could not find scraper for (%r, %r)" %
116 url_list = [url.strip() for url in
122 for b in xrange(num_browsers):
129 for ur
[all...]
H A Dcompare2.py13 import os # Functions for walking the directory tree namespace
17 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
25 """Inserts the command and arguments into a command line for parsing."""
46 ["-b1n", "--browser1name"], "Optional name for first browser (used in "
49 ["-b2n", "--browser2name"], "Optional name for second browser (used in "
71 ["-t", "--timeout"], "Amount of time (seconds) to wait for browser to "
79 ["-m", "--maskdir"], "Path that holds masks to use for comparison")
102 url_list = [url.strip() for url in
116 for index in xrange(1, 3):
133 for ur
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/
H A Dv8_types.py29 """Functions for type handling and type conversion (Blink/C++ <-> V8/JS).
45 import idl_definitions # for UnionType namespace
120 for enum in enumerations.values()])
245 # but we use NullString for performance.
398 # Index is None for setters, index (starting at 0) for method arguments,
473 separate name for the type of conversion (e.g., 'DOMWrapper').
578 # the isolate parameter is needed for callback interfaces
/external/linux-tools-perf/config/
H A Dutilities.mak78 # escape-for-shell-sq
80 # Usage: embeddable-text = $(call escape-for-shell-sq,text)
82 # This function produces text that is suitable for
86 escape-for-shell-sq = $(subst ','\'',$(1))
92 shell-sq = '$(escape-for-shell-sq)'
162 # The goal is to get an absolute path for an executable;
/external/chromium_org/tools/site_compare/
H A Dsite_compare.py18 import os # Functions for walking the directory tree namespace
22 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
34 # later but for now it's been superceded by "measure"
46 timeout: time (in seconds) to wait for page to load
54 parameter, for things like length of time to wait for timeout, speed
65 for browser in browsers:
93 a log.txt file, with operator-dependent images saved for error output
133 for filename in os.listdir(base_dir):
144 for o
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb90 (instead of basic tokens), and adds some helper methods for working with trees.
97 the purpose of which is to provide a homogeneous interface for handling tree
100 See Tree and TreeAdaptor for more information.
199 class for AST classes; it specifies the attributes that are expected of basic class in class:ANTLR3.AST
391 for i in offset ... length
466 TreeAdaptor class to handle tree construction and manipulation for the
564 for child in self do child.infer_boundaries end
590 for child in self
729 for i in 0 ... child_count( tree )
898 for method_nam
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py37 """Support for check-webkit-style."""
39 import math # for log namespace
82 # for substring matching to work.
91 # Replacement macros for CHECK/DCHECK/EXPECT_TRUE/EXPECT_FALSE
92 _CHECK_REPLACEMENT = dict([(m, {}) for m in _CHECK_MACROS])
94 for op, replacement in [('==', 'EQ'), ('!=', 'NE'),
104 for op, inv_replacement in [('==', 'NE'), ('!=', 'EQ'),
113 # These constants define types of headers for use with
121 # The regexp compilation caching is inlined in all regexp functions for
135 """Searches the string for th
[all...]
/external/libvpx/libvpx/tools/
H A Dcpplint.py33 # caught by lint, it would save time both for myself and that of my reviewers.
40 # - Check for no 'explicit' for multi-arg ctor
41 # - Check for boolean assign RHS in parens
42 # - Check for ctor initializer-list colon position and spacing
48 # - Check for using public includes for testing
49 # - Check for spaces between brackets in one-line inline method
50 # - Check for no assert()
51 # - Check for space
81 import math # for log namespace
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js58 for (var a in a1) this.alias(a, a1[a], a2);
64 for (var p in a1) add(this, p, a1[p], a2);
81 for (var i = 0, l = objects.length; i < l; i++) objects[i].implement(properties);
92 for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});
95 for (var t in types) Native.typize(types[t], t);
101 for (var g in generics){
102 for (var i = generics[g].length; i--;) Native.genericize(window[g], generics[g][i], true);
112 for (var key in object) this[key] = object[key];
121 for (var key in this){
128 for (va
[all...]
/external/dropbear/libtomcrypt/
H A Dcrypt.tex119 LibTomCrypt is a portable ISO C cryptographic library meant to be a tool set for cryptographers who are
124 (and helper API functions) are able to use the new designs automatically. There exists self-check functions for each
128 \subsection{What the library IS for?}
130 The library serves as a toolkit for developers who have to solve cryptographic problems. Out of the box LibTomCrypt
158 On top of making the build simple and the API approachable I've also attempted for a reasonably high level of
172 that for the PRNG needs within the library (\textit{e.g. making a RSA key}). All the developer has to do
173 is write a descriptor and the few support routines required for the device. After that the rest of the
180 mode routines for every single cipher. That means every time you add or remove a cipher from the library
201 I would like to give thanks to the following people (in no particular order) for helping me develop this project from
253 There is no initialization routine for th
[all...]

Completed in 769 milliseconds