Home
last modified time | relevance | path

Searched refs:constant_name (Results 1 – 6 of 6) sorted by relevance

/third_party/node/src/
Dnode.h812 v8::Local<v8::String> constant_name = \
820 constant_name, \
830 v8::Local<v8::String> constant_name = \
841 constant_name, \
Dutil.h735 v8::Local<v8::String> constant_name = \
743 constant_name, \
/third_party/protobuf/python/google/protobuf/internal/
Dpython_message.py619 constant_name = field.name.upper() + '_FIELD_NUMBER'
620 setattr(cls, constant_name, field.number)
789 constant_name = extension_name.upper() + '_FIELD_NUMBER'
790 setattr(cls, constant_name, extension_field.number)
/third_party/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.cc587 std::string constant_name = extension_field.name() + "_FIELD_NUMBER"; in PrintTopLevelExtensions() local
588 ToUpper(&constant_name); in PrintTopLevelExtensions()
590 constant_name, "number", in PrintTopLevelExtensions()
/third_party/node/deps/v8/src/torque/
Ddeclarable.h273 explicit NamespaceConstant(Identifier* constant_name, in NamespaceConstant() argument
276 : Value(Declarable::kNamespaceConstant, type, constant_name), in NamespaceConstant()
/third_party/rust/crates/bindgen/bindgen/codegen/
Dmod.rs2883 let constant_name = match mangling_prefix { in with_variant() localVariable
2890 let ident = ctx.rust_ident(constant_name); in with_variant()
3174 let constant_name = if enum_.name().is_some() { in codegen() localVariable
3183 let constant_name = ctx.rust_ident(constant_name); in codegen() localVariable
3186 pub const #constant_name : #enum_rust_ty = in codegen()