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

12

/external/clang/test/Preprocessor/
H A Dmacro-reserved-cxx11.cpp4 #define for 0 // expected-warning {{keyword is hidden by macro definition}} macro
H A Dmacro_expand.c11 #define for(x) h(x macro
14 C: for(for))
17 // CHECK: {{^}}C: for(){{$}}
23 // CHECK: #pragma omp parallel for
25 #define Streaming _Pragma("omp FOO for")
H A Dmacro-reserved.c3 #define for 0 // expected-warning {{keyword is hidden by macro definition}} macro
10 #undef for macro
H A Dmacro-reserved.cpp3 #define for 0 // expected-warning {{keyword is hidden by macro definition}} macro
9 #undef for macro
H A Dcxx_oper_keyword_ms_compat.cpp16 // The second 'and' is a valid C++ operator name for '&&'.
55 #define for macro
140 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/capstone/bindings/vb6/
H A Dmx86.bas4 'Capstone Disassembly Engine bindings for VB6
249 'Operand type for instruction's operands
356 scale As Long ' scale for index register
364 ' x86_reg reg; // register value for REG operand
365 ' int64_t imm; // immediate value for IMM operand
366 ' double fp; // floating point value for FP operand
367 ' x86_op_mem mem; // base/index/scale/disp value for MEM operand
385 ' prefix[1] indicates segment override (irrelevant for x86_64):
396 rex As Byte ' REX prefix: only a non-zero value is relavant for x86_64 UNSIGNED
410 'operands(0 To 7) As cs_x86_op ' operands for thi
[all...]
/external/python/cpython2/Lib/plat-irix5/
H A Dpanel.py3 # Support for the Panel library.
30 for item in list:
36 # Don't use 'prop' for name.
39 for item in list:
48 for item in list:
66 for item in a:
71 for a in item[1:]:
85 for item in p:
90 for a in item[1:]:
117 for ite
282 from pnl import * # for export namespace
[all...]
/external/python/cpython2/Lib/plat-irix6/
H A Dpanel.py3 # Support for the Panel library.
30 for item in list:
36 # Don't use 'prop' for name.
39 for item in list:
48 for item in list:
66 for item in a:
71 for a in item[1:]:
85 for item in p:
90 for a in item[1:]:
117 for ite
282 from pnl import * # for export namespace
[all...]
/external/one-true-awk/
H A Dawkgram.y6 its documentation for any purpose and without fee is hereby
36 int inloop = 0; /* = 1 if in while, for, do */
38 Node *arglist = 0; /* list of args for current function */
70 %type <p> for if else while
123 for: label
325 | for
480 for ( ; vl; vl = vl->nnext) {
/external/python/cpython2/Lib/idlelib/
H A DGrepDialog.py4 import re # for htest namespace
6 from Tkinter import StringVar, BooleanVar, Checkbutton # for GrepDialog namespace
7 from Tkinter import Tk, Text, Button, SEL, END # for htest namespace
88 for fn in list:
91 for lineno, line in enumerate(f, 1):
116 for name in names:
124 for subdir in subdirs:
/external/python/cpython3/Lib/idlelib/
H A Dquery.py5 Query is the generic base class for a popup dialog.
11 Subclass SectionName gets a name for a new config file section.
12 Configdialog uses it for new highlight theme and keybinding set names.
13 Subclass ModuleName gets a name for File => Open Module.
14 Subclass HelpSource gets menu item and path for additions to Help menu.
25 from sys import executable, platform # Platform is set for one test. namespace
33 """Base class for getting verified answer from a user.
46 text0 - initial value for entry
74 self.update_idletasks() # Needed here for winfo_reqwidth below.
88 # Bind to self widgets needed for entry_o
[all...]
/external/python/cpython3/Lib/tkinter/
H A Dsimpledialog.py17 Dialog -- a base class for dialogs
29 import tkinter # used at _QueryDialog for tkinter._default_root namespace
51 for num in range(len(buttons)):
118 This class is intended as a base class for custom dialogs
133 self.withdraw() # remain invisible for now
166 # wait for window to appear on screen before calling grab_set
/external/python/cpython2/Demo/classes/
H A Dbitvec.py7 import sys; rprt = sys.stderr.write #for debugging namespace
62 for item in param:
143 #for i in self._len>>1: self[i], self[l-i] = self[l-i], self[i]
145 for i in range(self._len):
164 for i in self:
317 #needed for *some* of the arithmetic operations
/external/python/cpython2/Lib/test/
H A Dtest_runpy.py17 # See test_cmd_line_script for a test that executes that code path
22 """Unit tests for runpy._run_code and runpy._run_module_code"""
84 """Unit tests for runpy.run_module"""
92 self.fail("Expected import error for " + mod_name) namespace
123 for i in range(depth):
137 for entry in list(sys.modules):
143 for root, dirs, files in os.walk(top, topdown=False):
144 for name in files:
149 for name in dirs:
211 for
[all...]
/external/python/cpython3/Lib/
H A Dshutil.py1 """Utility functions for copying and archiving files and directory trees.
92 # All other platforms: check for same pathname.
106 for fn in [src, dst]:
162 for name in names:
220 for err in 'EOPNOTSUPP', 'ENOTSUP':
268 for pattern in patterns:
299 called once for each directory that is copied. It returns a
317 for name in names:
344 # Will raise a SpecialFileError for unsupported file types
377 for nam
623 import tarfile # late import for breaking circular dependency namespace
666 import zipfile # late import for breaking circular dependency namespace
874 import zipfile # late import for breaking circular dependency namespace
908 import tarfile # late import for breaking circular dependency namespace
[all...]
H A Dssl.py1 # Wrapper module for _ssl, providing some additional facilities
4 """This module provides some more Pythonic support for SSL.
12 SSLError -- exception raised for I/O errors
16 cert_time_to_seconds -- convert time string used for certificate
154 _PROTOCOL_NAMES = {value: name for name, value in _SSLMethod.__members__.items()}
164 import base64 # for DER-to-PEM translation namespace
182 # * Prefer ECDHE over DHE for better performance
183 # * Prefer AEAD over CBC for better performance and security
186 # * Prefer any AES-GCM and ChaCha20 over any AES-CBC for better
190 # for securit
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_runpy.py23 # See test_cmd_line_script for a test that executes that code path
86 for k in list(result_ns):
100 # type, rather than checking for full equality
104 for attr in self.CHECKED_SPEC_ATTRIBUTES:
112 for k in result_ns:
145 """Unit tests for runpy._run_code and runpy._run_module_code"""
184 """Unit tests for runpy.run_module"""
192 self.fail("Expected import error for " + mod_name) namespace
235 for namespace_flag in namespace_flags:
251 for entr
[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/python/cpython2/Lib/
H A Dcookielib.py1 r"""HTTP cookie handling for web clients.
37 import httplib # only for the default HTTP port namespace
58 # There are a few catch-all except: statements in this module, for
84 for month in MONTHS: MONTHS_LOWER.append(month.lower())
241 # fast exit for strictly conforming string
286 As for http2time, but parses the ISO 8601 formats:
336 This means that this function is useful for parsing header fields that
338 the requirement for tokens).
357 Each header is represented by a list of key/value pairs. The value for a
373 for tex
[all...]
H A Dssl.py1 # Wrapper module for _ssl, providing some additional facilities
4 """This module provides some more Pythonic support for SSL.
12 SSLError -- exception raised for I/O errors
16 cert_time_to_seconds -- convert time string used for certificate
116 for n in dir(_ssl):
130 _PROTOCOL_NAMES = {value: name for name, value in globals().items()
146 import base64 # for DER-to-PEM translation namespace
161 # * Prefer ECDHE over DHE for better performance
162 # * Prefer AEAD over CBC for better performance and security
165 # * Prefer any AES-GCM and ChaCha20 over any AES-CBC for bette
[all...]
/external/python/cpython2/
H A Dsetup.py1 # Autodetecting setup.py script for building the Python extensions
67 """Searches for the directory where a given file is located,
84 for dir in std_dirs:
93 for dir in paths:
115 for p in std_dirs:
124 # for programs that are being built with an SDK and searching
125 # for specific libraries. Distutils find_library_file() now
126 # knows to also search for and return .tbd files. But callers
130 # for example:
144 for
336 self.announce('WARNING: skipping import check for Cygwin-based "%s"' namespace
[all...]
/external/python/cpython3/Lib/http/
H A Dcookiejar.py1 r"""HTTP cookie handling for web clients.
40 import http.client # only for the default HTTP port namespace
61 # There are a few catch-all except: statements in this module, for
87 for month in MONTHS: MONTHS_LOWER.append(month.lower())
252 # fast exit for strictly conforming string
297 As for http2time, but parses the ISO 8601 formats:
347 This means that this function is useful for parsing header fields that
349 the requirement for tokens).
368 Each header is represented by a list of key/value pairs. The value for a
384 for tex
[all...]
/external/python/cpython3/
H A Dsetup.py1 # Autodetecting setup.py script for building the Python extensions
21 # Add special CFLAGS reserved for building the interpreter and the stdlib
28 """Hack for parallel build"""
57 for i, path in enumerate(dirlist):
85 """Searches for the directory where a given file is located,
102 for dir in std_dirs:
111 for dir in paths:
133 for p in std_dirs:
142 # for programs that are being built with an SDK and searching
143 # for specifi
365 self.announce('WARNING: skipping import check for Cygwin-based "%s"' namespace
[all...]
/external/compiler-rt/lib/sanitizer_common/scripts/
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...]

Completed in 948 milliseconds

12