/external/mesa3d/src/freedreno/ir3/ |
D | ir3_lexer.l | 31 #define TOKEN(t) (ir3_yylval.tok = t) macro 76 "@localsize" return TOKEN(T_A_LOCALSIZE); 77 "@const" return TOKEN(T_A_CONST); 78 "@buf" return TOKEN(T_A_BUF); 79 "@invocationid" return TOKEN(T_A_INVOCATIONID); 80 "@wgid" return TOKEN(T_A_WGID); 81 "@numwg" return TOKEN(T_A_NUMWG); 82 "@in" return TOKEN(T_A_IN); 83 "@out" return TOKEN(T_A_OUT); 84 "@tex" return TOKEN(T_A_TEX); [all …]
|
/external/mesa3d/src/freedreno/afuc/ |
D | lexer.l | 32 #define TOKEN(t) (yylval.tok = t) macro 55 "nop" return TOKEN(T_OP_NOP); 56 "add" return TOKEN(T_OP_ADD); 57 "addhi" return TOKEN(T_OP_ADDHI); 58 "sub" return TOKEN(T_OP_SUB); 59 "subhi" return TOKEN(T_OP_SUBHI); 60 "and" return TOKEN(T_OP_AND); 61 "or" return TOKEN(T_OP_OR); 62 "xor" return TOKEN(T_OP_XOR); 63 "not" return TOKEN(T_OP_NOT); [all …]
|
/external/llvm-project/mlir/test/Dialect/Async/ |
D | async-ref-counting.mlir | 27 // CHECK: %[[TOKEN:.*]] = async.execute 28 // CHECK: async.drop_ref %[[TOKEN]] {count = 1 : i32} 37 // CHECK: %[[TOKEN:.*]] = async.execute 41 // CHECK: return %[[TOKEN]] 47 // CHECK: %[[TOKEN:.*]] = async.execute 51 // CHECK: async.await %[[TOKEN]] 53 // CHECK: async.drop_ref %[[TOKEN]] {count = 1 : i32} 60 // CHECK: %[[TOKEN:.*]] = async.execute 64 // CHECK: async.await %[[TOKEN]] 67 // CHECK: return %[[TOKEN]] [all …]
|
D | async-parallel-for.mlir | 7 // CHECK: %[[TOKEN:.*]] = async.execute { 12 // CHECK: async.add_to_group %[[TOKEN]], %[[GROUP]] 29 // CHECK: %[[TOKEN:.*]] = async.execute { 35 // CHECK: async.add_to_group %[[TOKEN]], %[[GROUP]]
|
/external/python/pycparser/pycparser/ |
D | c_lexer.py | 13 from .ply.lex import TOKEN 287 @TOKEN(string_literal) 294 @TOKEN(decimal_constant) 424 @TOKEN(r'\{') 428 @TOKEN(r'\}') 440 @TOKEN(floating_constant) 444 @TOKEN(hex_floating_constant) 448 @TOKEN(hex_constant) 452 @TOKEN(bin_constant) 456 @TOKEN(bad_octal_constant) [all …]
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/parse/ |
D | lexer.py | 23 from ply.lex import TOKEN 203 @TOKEN(floating_constant) 207 @TOKEN(hex_constant) 211 @TOKEN(octal_constant_disallowed) 216 @TOKEN(decimal_constant) 222 @TOKEN(bad_string_literal) 228 @TOKEN(octal_or_hex_ordinal_disallowed) 233 @TOKEN(ordinal) 237 @TOKEN(missing_ordinal_value) 242 @TOKEN(identifier)
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowAsyncQueryHandlerTest.java | 24 private static final int TOKEN = 22; field in ShadowAsyncQueryHandlerTest 41 TOKEN, in startQuery_callbackIsCalled() 49 assertThat(asyncQueryHandler.token).isEqualTo(TOKEN); in startQuery_callbackIsCalled() 58 asyncQueryHandler.startInsert(TOKEN, COOKIE, EXTERNAL_CONTENT_URI, null /* initialValues */); in startInsert_callbackIsCalled() 60 assertThat(asyncQueryHandler.token).isEqualTo(TOKEN); in startInsert_callbackIsCalled() 72 TOKEN, in startUpdate_callbackIsCalled() 79 assertThat(asyncQueryHandler.token).isEqualTo(TOKEN); in startUpdate_callbackIsCalled() 90 TOKEN, COOKIE, EXTERNAL_CONTENT_URI, null /* selection */, null /* selectionArgs */); in startDelete_callbackIsCalled() 92 assertThat(asyncQueryHandler.token).isEqualTo(TOKEN); in startDelete_callbackIsCalled()
|
/external/llvm-project/llvm/tools/llvm-rc/ |
D | ResourceScriptTokenList.def | 16 TOKEN(Invalid) // Invalid token. Should not occur in a valid script. 17 TOKEN(Int) // Integer (decimal, octal or hexadecimal). 18 TOKEN(String) // String value. 19 TOKEN(Identifier) // Script identifier (resource name or type). 20 TOKEN(LineComment) // Beginning of single-line comment. 21 TOKEN(StartComment) // Beginning of multi-line comment. 38 #undef TOKEN
|
/external/llvm-project/llvm/include/llvm/WindowsResource/ |
D | ResourceScriptTokenList.h | 16 TOKEN(Invalid) // Invalid token. Should not occur in a valid script. 17 TOKEN(Int) // Integer (decimal, octal or hexadecimal). 18 TOKEN(String) // String value. 19 TOKEN(Identifier) // Script identifier (resource name or type).
|
D | ResourceScriptToken.h | 32 #define TOKEN(Name) Name, macro 35 #undef TOKEN
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/WindowsResource/ |
D | ResourceScriptTokenList.h | 16 TOKEN(Invalid) // Invalid token. Should not occur in a valid script. 17 TOKEN(Int) // Integer (decimal, octal or hexadecimal). 18 TOKEN(String) // String value. 19 TOKEN(Identifier) // Script identifier (resource name or type).
|
D | ResourceScriptToken.h | 32 #define TOKEN(Name) Name, macro 35 #undef TOKEN
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | MediaType.java | 30 private static final String TOKEN = "([a-zA-Z0-9-!#$%&'*+.^_`{|}~]+)"; field in MediaType 32 private static final Pattern TYPE_SUBTYPE = Pattern.compile(TOKEN + "/" + TOKEN); 34 ";\\s*(?:" + TOKEN + "=(?:" + TOKEN + "|" + QUOTED + "))?");
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | MediaType.java | 28 private static final String TOKEN = "([a-zA-Z0-9-!#$%&'*+.^_`{|}~]+)"; field in MediaType 30 private static final Pattern TYPE_SUBTYPE = Pattern.compile(TOKEN + "/" + TOKEN); 32 ";\\s*(?:" + TOKEN + "=(?:" + TOKEN + "|" + QUOTED + "))?");
|
/external/skqp/src/sksl/ |
D | SkSLParser.cpp | 84 #define TOKEN(name, text) (*layoutTokens)[text] = LayoutToken::name in InitLayoutMap() macro 85 TOKEN(LOCATION, "location"); in InitLayoutMap() 86 TOKEN(OFFSET, "offset"); in InitLayoutMap() 87 TOKEN(BINDING, "binding"); in InitLayoutMap() 88 TOKEN(INDEX, "index"); in InitLayoutMap() 89 TOKEN(SET, "set"); in InitLayoutMap() 90 TOKEN(BUILTIN, "builtin"); in InitLayoutMap() 91 TOKEN(INPUT_ATTACHMENT_INDEX, "input_attachment_index"); in InitLayoutMap() 92 TOKEN(ORIGIN_UPPER_LEFT, "origin_upper_left"); in InitLayoutMap() 93 TOKEN(OVERRIDE_COVERAGE, "override_coverage"); in InitLayoutMap() [all …]
|
/external/e2fsprogs/lib/ss/ |
D | parse.c | 25 enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING }; enumerator 93 parse_mode = TOKEN; in ss_parse() 106 while (parse_mode == TOKEN) { in ss_parse() 138 parse_mode = TOKEN; in ss_parse()
|
/external/rust/crates/grpcio-sys/grpc/tools/github/ |
D | pr_latency.py | 49 if TOKEN: 50 request.add_header('Authorization', 'token {}'.format(TOKEN)) 173 global TOKEN 176 TOKEN = args.token
|
/external/grpc-grpc/tools/github/ |
D | pr_latency.py | 49 if TOKEN: 50 request.add_header('Authorization', 'token {}'.format(TOKEN)) 173 global TOKEN 176 TOKEN = args.token
|
/external/rust/crates/serde_json/src/ |
D | raw.rs | 278 pub const TOKEN: &str = "$serde_json::private::RawValue"; constant 285 let mut s = serializer.serialize_struct(TOKEN, 1)?; in serialize() 286 s.serialize_field(TOKEN, &self.json)?; in serialize() 317 deserializer.deserialize_newtype_struct(TOKEN, ReferenceVisitor) in deserialize() 347 deserializer.deserialize_newtype_struct(TOKEN, BoxedVisitor) in deserialize() 371 if s == TOKEN { in deserialize() 456 visitor.visit_borrowed_str(TOKEN) in deserialize_any()
|
/external/skia/src/sksl/ |
D | SkSLParser.cpp | 88 #define TOKEN(name, text) (*layoutTokens)[text] = LayoutToken::name in InitLayoutMap() macro 89 TOKEN(LOCATION, "location"); in InitLayoutMap() 90 TOKEN(OFFSET, "offset"); in InitLayoutMap() 91 TOKEN(BINDING, "binding"); in InitLayoutMap() 92 TOKEN(INDEX, "index"); in InitLayoutMap() 93 TOKEN(SET, "set"); in InitLayoutMap() 94 TOKEN(BUILTIN, "builtin"); in InitLayoutMap() 95 TOKEN(INPUT_ATTACHMENT_INDEX, "input_attachment_index"); in InitLayoutMap() 96 TOKEN(ORIGIN_UPPER_LEFT, "origin_upper_left"); in InitLayoutMap() 97 TOKEN(OVERRIDE_COVERAGE, "override_coverage"); in InitLayoutMap() [all …]
|
/external/mesa3d/src/freedreno/registers/ |
D | text-format.txt | 81 TOKEN 82 <value value="TOKEN" /> if inside a reg or enum and TOKEN starts with a digit 83 <value name="TOKEN" /> if inside a reg or enum and TOKEN does not start with a digit 84 <REGLIKE offset="TOKEN" /> otherwise
|
/external/rust/crates/grpcio-sys/grpc/tools/release/ |
D | release_notes.py | 107 req.add_header('Authorization', 'token %s' % TOKEN) 319 global TOKEN 326 TOKEN = args.token 327 if TOKEN == '': 329 TOKEN = os.environ["GITHUB_TOKEN"] 332 if TOKEN == '':
|
/external/openssh/regress/ |
D | agent-pkcs11.sh | 35 TOKEN=$DIR/tokendir 36 mkdir -p $TOKEN 41 directories.tokendir = ${TOKEN}
|
/external/libtextclassifier/native/utils/java/ |
D | jni-base.h | 28 #define TC3_ADD_QUOTES_HELPER(TOKEN) #TOKEN argument 29 #define TC3_ADD_QUOTES(TOKEN) TC3_ADD_QUOTES_HELPER(TOKEN) argument
|
/external/icing/icing/text_classifier/lib3/utils/java/ |
D | jni-base.h | 26 #define TC3_ADD_QUOTES_HELPER(TOKEN) #TOKEN argument 27 #define TC3_ADD_QUOTES(TOKEN) TC3_ADD_QUOTES_HELPER(TOKEN) argument
|