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 278 // Delim, for the four JSON delimiters [ ] { }
346 // A Delim is a JSON array or object delimiter, one of [ ] { or }.
347 type Delim rune
349 func (d Delim) String() string {
361 // number, and null?along with delimiters [ ] { } of type Delim
378 return Delim('['), nil
388 return Delim(']'), nil
397 return Delim('{'), nil
407 return Delim('}'), nil
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 278 // Delim, for the four JSON delimiters [ ] { }
346 // A Delim is a JSON array or object delimiter, one of [ ] { or }.
347 type Delim rune
349 func (d Delim) String() string {
361 // number, and null?along with delimiters [ ] { } of type Delim
378 return Delim('['), nil
388 return Delim(']'), nil
397 return Delim('{'), nil
407 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 191 milliseconds