HomeSort by relevance Sort by last modified time
    Searched defs:Delim (Results 1 - 4 of 4) sorted by null

  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 271 // Delim, for the four JSON delimiters [ ] { }
339 // A Delim is a JSON array or object delimiter, one of [ ] { or }.
340 type Delim rune
342 func (d Delim) String() string {
354 // number, and null?along with delimiters [ ] { } of type Delim
371 return Delim('['), nil
381 return Delim(']'), nil
390 return Delim('{'), nil
400 return Delim('}'), nil
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 271 // Delim, for the four JSON delimiters [ ] { }
339 // A Delim is a JSON array or object delimiter, one of [ ] { or }.
340 type Delim rune
342 func (d Delim) String() string {
354 // number, and null?along with delimiters [ ] { } of type Delim
371 return Delim('['), nil
381 return Delim(']'), nil
390 return Delim('{'), nil
400 return Delim('}'), nil
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 175 getVec(const std::string &S, char Delim) {
179 while (std::getline(SS, Item, Delim))
185 getUnordSet(const std::string &S, char Delim = ' ') {
189 while (std::getline(SS, Item, Delim))
195 getSet(const std::string &S, char Delim = ' ') {
199 while (std::getline(SS, Item, Delim))
294 concat(const std::string &S1, const std::string &S2, char Delim = ' ') {
299 S = S1 + Delim + S2;
315 getStr(const T &C, char Delim = ' ') {
320 SS << Delim;
    [all...]
  /external/spirv-llvm/lib/SPIRV/
SPIRVWriter.cpp 392 const char Delim[] = { kSPIRVTypeName::Delimiter, 0 };
393 Name.split(SubStrs, Delim, -1, true);
    [all...]

Completed in 579 milliseconds