Home
last modified time | relevance | path

Searched refs:ident (Results 1 – 25 of 1361) sorted by relevance

12345678910>>...55

/external/python/cpython3/Lib/test/
Dtest_sys_setprofile.py46 self.events.append((frameno, event, ident(frame)))
50 disallowed = [ident(self.add_event.__func__), ident(ident)]
106 f_ident = ident(f)
114 f_ident = ident(f)
123 f_ident = ident(f)
132 f_ident = ident(f)
140 f_ident = ident(f)
157 f_ident = ident(f)
158 g_ident = ident(g)
173 f_ident = ident(f)
[all …]
/external/python/cpython2/Lib/test/
Dtest_sys_setprofile.py47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f)
159 g_ident = ident(g)
174 f_ident = ident(f)
[all …]
/external/flatbuffers/docs/source/
DGrammar.md11 namespace\_decl = `namespace` ident ( `.` ident )* `;`
13 attribute\_decl = `attribute` ident | `"`ident`"` `;`
15 type\_decl = ( `table` | `struct` ) ident metadata `{` field\_decl+ `}`
17 enum\_decl = ( `enum` ident [ `:` type ] | `union` ident ) metadata `{`
20 root\_decl = `root_type` ident `;`
22 field\_decl = ident `:` type [ `=` scalar ] metadata `;`
24 rpc\_decl = `rpc_service` ident `{` rpc\_method+ `}`
26 rpc\_method = ident `(` ident `)` `:` ident metadata `;`
32 `string` | `[` type `]` | ident
34 enumval\_decl = ident [ `=` integer\_constant ]
[all …]
/external/python/cpython3/Lib/multiprocessing/
Dmanagers.py235 ident, methodname, args, kwds = request
237 obj, exposed, gettypeid = id_to_obj[ident]
241 self.id_to_local_proxy_obj[ident]
273 self, conn, ident, obj, *args, **kwds
300 def fallback_getvalue(self, conn, ident, obj): argument
303 def fallback_str(self, conn, ident, obj): argument
306 def fallback_repr(self, conn, ident, obj): argument
327 for ident in keys:
328 if ident != '0':
330 (ident, self.id_to_refcount[ident],
[all …]
/external/scapy/scapy/asn1/
Dmib.py78 def mib_register(ident, value, the_mib, unresolved): argument
79 if ident in the_mib or ident in unresolved:
80 return ident in the_mib
99 unresolved[ident] = resval
102 the_mib[ident] = resval
132 ident,oid = gr[0],gr[-1]
133 ident=fixname(ident)
139 mib_register(ident, oid, the_mib, unresolved)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dident-metadata.ll2 ; Verify that llvm.ident metadata is emitted as .ident
5 ; CHECK: .ident "clang version x.x"
6 ; CHECK-NEXT: .ident "something else"
7 !llvm.ident = !{!0, !1}
/external/llvm/test/CodeGen/X86/
Dident-metadata.ll2 ; Verify that llvm.ident metadata is emitted as .ident
5 ; CHECK: .ident "clang version x.x"
6 ; CHECK-NEXT: .ident "something else"
7 !llvm.ident = !{!0, !1}
/external/python/cpython2/Tools/scripts/
Dwhich.py27 ident = ()
39 if not ident:
41 ident = st[:3]
43 if st[:3] == ident:
53 if not ident:
/external/python/cpython3/Tools/scripts/
Dwhich.py27 ident = ()
39 if not ident:
41 ident = st[:3]
43 if st[:3] == ident:
53 if not ident:
/external/bcc/src/cc/frontends/b/
Dparser.yy60 IdentExprNode *ident;
87 %type <ident> ident scoped_ident dotted_ident any_ident
149 "Table <...> <ident>(size)"
221 : TSTRUCT ident TLBRACE struct_decl_stmts TRBRACE
234 : ident TCLT table_decl_args TCGT ident TLPAREN TINTEGER TRPAREN
240 : ident
242 | table_decl_args TCOMMA ident
262 …: type_specifiers ident enter_statescope enter_varscope TLPAREN formals TRPAREN block exit_varscop…
276 : TMATCH ident enter_varscope TLPAREN formals TRPAREN block exit_varscope TSEMI
280 | TMISS ident enter_varscope TLPAREN TRPAREN block exit_varscope TSEMI
[all …]
/external/python/cpython2/Lib/multiprocessing/
Dmanagers.py241 ident, methodname, args, kwds = request
242 obj, exposed, gettypeid = id_to_obj[ident]
272 self, conn, ident, obj, *args, **kwds
299 def fallback_getvalue(self, conn, ident, obj): argument
302 def fallback_str(self, conn, ident, obj): argument
305 def fallback_repr(self, conn, ident, obj): argument
326 for ident in keys:
327 if ident != '0':
329 (ident, self.id_to_refcount[ident],
330 str(self.id_to_obj[ident][0])[:75]))
[all …]
/external/swiftshader/third_party/subzero/bloat/
Dbloat.py96 def demangle(ident, cppfilt): argument
97 if cppfilt and ident.startswith('_Z'):
99 ident = subprocess.check_output([cppfilt, ident]).strip()
100 return ident
117 def cleanup(self, ident, cppfilt): argument
122 found = s.re.match(ident)
126 ident = found.group(1) + found.group(3)
129 ident = demangle(ident, cppfilt)
131 ident += s
132 return ident
/external/llvm/test/Linker/
Dident.ll1 ; RUN: llvm-link %S/Inputs/ident.a.ll %S/Inputs/ident.b.ll -S | FileCheck %s
3 ; Verify that multiple input llvm.ident metadata are linked together.
5 ; CHECK-DAG: !llvm.ident = !{!0, !1, !2}
/external/swiftshader/third_party/llvm-7.0/llvm/test/Linker/
Dident.ll1 ; RUN: llvm-link %S/Inputs/ident.a.ll %S/Inputs/ident.b.ll -S | FileCheck %s
3 ; Verify that multiple input llvm.ident metadata are linked together.
5 ; CHECK-DAG: !llvm.ident = !{!0, !1, !2}
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinalg_impl.py130 ident = linalg_ops.eye(array_ops.shape(matrix)[-2],
134 tmp = matrix_2 + b[1] * ident
136 matrix_v = b[2] * matrix_2 + b[0] * ident
144 ident = linalg_ops.eye(array_ops.shape(matrix)[-2],
149 tmp = matrix_4 + b[3] * matrix_2 + b[1] * ident
151 matrix_v = b[4] * matrix_4 + b[2] * matrix_2 + b[0] * ident
159 ident = linalg_ops.eye(array_ops.shape(matrix)[-2],
165 tmp = matrix_6 + b[5] * matrix_4 + b[3] * matrix_2 + b[1] * ident
167 matrix_v = b[6] * matrix_6 + b[4] * matrix_4 + b[2] * matrix_2 + b[0] * ident
178 ident = linalg_ops.eye(array_ops.shape(matrix)[-2],
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Verifier/
Dident-meta1.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0, !1}
10 ; CHECK-NEXT: incorrect number of operands in llvm.ident metadata
Dident-meta4.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0}
9 ; CHECK-NEXT: invalid value for llvm.ident metadata entry operand(the operand should be a string)
Dident-meta3.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0}
9 ; CHECK-NEXT: invalid value for llvm.ident metadata entry operand(the operand should be a string)
Dident-meta2.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0, !1, !2, !3}
12 ; CHECK-NEXT: invalid value for llvm.ident metadata entry operand(the operand should be a string)
/external/llvm/test/Verifier/
Dident-meta1.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0, !1}
10 ; CHECK-NEXT: incorrect number of operands in llvm.ident metadata
Dident-meta4.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0}
9 ; CHECK-NEXT: invalid value for llvm.ident metadata entry operand(the operand should be a string)
Dident-meta2.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0, !1, !2, !3}
12 ; CHECK-NEXT: invalid value for llvm.ident metadata entry operand(the operand should be a string)
Dident-meta3.ll2 ; Verify that llvm.ident is properly structured.
3 ; llvm.ident takes a list of metadata entries.
6 !llvm.ident = !{!0}
9 ; CHECK-NEXT: invalid value for llvm.ident metadata entry operand(the operand should be a string)
/external/fonttools/Lib/fontTools/ttLib/
DttFont.py892 ident = ""
894 ident = ident + _escapechar(c)
895 if re.match("[0-9]", ident):
896 ident = "_" + ident
897 return ident
900 def identifierToTag(ident): argument
902 if ident == "GlyphOrder":
903 return ident
904 if len(ident) % 2 and ident[0] == "_":
905 ident = ident[1:]
[all …]
/external/tcpdump/tests/
Disakmp4.out3 IP 192.1.2.254.500 > 192.1.2.23.500: isakmp: phase 1 I ident
4 IP 192.1.2.23.500 > 192.1.2.254.500: isakmp: phase 1 R ident
5 IP 192.1.2.254.500 > 192.1.2.23.500: isakmp: phase 1 I ident
6 IP 192.1.2.23.500 > 192.1.2.254.500: isakmp: phase 1 R ident
7 IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 1 I ident[E]
8 IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 1 R ident[E]

12345678910>>...55