Home
last modified time | relevance | path

Searched defs:RawArray (Results 1 – 5 of 5) sorted by relevance

/third_party/protobuf/rust/upb/
Darray.rs13 pub type RawArray = NonNull<upb_Array>; typedef
16 pub fn upb_Array_New(a: RawArena, r#type: CType) -> RawArray; in upb_Array_New()
18 pub fn upb_Array_Set(arr: RawArray, i: usize, val: upb_MessageValue); in upb_Array_Set()
19 pub fn upb_Array_Get(arr: RawArray, i: usize) -> upb_MessageValue; in upb_Array_Get()
20 pub fn upb_Array_Append(arr: RawArray, val: upb_MessageValue, arena: RawArena) -> bool; in upb_Array_Append()
21 pub fn upb_Array_Resize(arr: RawArray, size: usize, arena: RawArena) -> bool; in upb_Array_Resize()
22 pub fn upb_Array_Reserve(arr: RawArray, size: usize, arena: RawArena) -> bool; in upb_Array_Reserve()
25 pub fn upb_Array_GetMutable(arr: RawArray, i: usize) -> upb_MutableMessageValue; in upb_Array_GetMutable()
Dmessage.rs163 pub fn upb_Message_GetArray(m: RawMessage, f: *const upb_MiniTableField) -> Option<RawArray>; in upb_Message_GetArray()
177 ) -> Option<RawArray>; in upb_Message_GetOrCreateMutableArray()
/third_party/python/Lib/multiprocessing/
Dsharedctypes.py54 def RawArray(typecode_or_type, size_or_initializer): function
Dcontext.py127 def RawArray(self, typecode_or_type, size_or_initializer): member in BaseContext
/third_party/python/Lib/test/
D_test_multiprocessing.py5864 RawArray = staticmethod(multiprocessing.RawArray) variable in ProcessesMixin