HomeSort by relevance Sort by last modified time
    Searched refs:Specs (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/icu/icu4c/source/i18n/
tridpars.h 68 class Specs : public UMemory {
75 Specs(const UnicodeString& s, const UnicodeString& t,
81 Specs(const Specs &other); // forbid copying of this class
82 Specs &operator=(const Specs &other); // forbid copying of this class
310 * at any location between specs or delimiters, and is returned
312 * @return a Specs object, or null if the parse failed. If
315 * pattern is returned in the Specs object, otherwise the returned
319 static Specs* parseFilterID(const UnicodeString& id, int32_t& pos
    [all...]
tridpars.cpp 55 TransliteratorIDParser::Specs::Specs(const UnicodeString& s, const UnicodeString& t,
119 Specs* specsA = NULL;
120 Specs* specsB = NULL;
222 Specs* specs = parseFilterID(id, pos, TRUE); local
223 if (specs == NULL) {
229 SingleID* single = specsToID(specs, FORWARD);
231 single->filter = specs->filter;
233 delete specs;
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
import.go 29 // Identify and sort runs of specs on successive lines.
31 specs := d.Specs[:0]
32 for j, s := range d.Specs {
33 if j > i && fset.Position(s.Pos()).Line > 1+fset.Position(d.Specs[j-1].End()).Line {
35 specs = append(specs, sortSpecs(fset, f, d.Specs[i:j])...)
39 specs = append(specs, sortSpecs(fset, f, d.Specs[i:])...
    [all...]
filter.go 211 d.Specs = filterSpecList(d.Specs, f, export)
212 return len(d.Specs) > 0
427 // Collect import specs from all package files.
  /prebuilts/go/linux-x86/src/go/ast/
import.go 29 // Identify and sort runs of specs on successive lines.
31 specs := d.Specs[:0]
32 for j, s := range d.Specs {
33 if j > i && fset.Position(s.Pos()).Line > 1+fset.Position(d.Specs[j-1].End()).Line {
35 specs = append(specs, sortSpecs(fset, f, d.Specs[i:j])...)
39 specs = append(specs, sortSpecs(fset, f, d.Specs[i:])...
    [all...]
filter.go 211 d.Specs = filterSpecList(d.Specs, f, export)
212 return len(d.Specs) > 0
427 // Collect import specs from all package files.
  /prebuilts/go/darwin-x86/src/cmd/fix/
fix.go 242 walkBeforeAfter(&n.Specs, before, after)
317 for _, spec := range gen.Specs {
512 for _, s := range d.Specs {
598 for j, spec := range gen.Specs {
621 if len(impDecl.Specs) > 0 && !impDecl.Lparen.IsValid() {
627 insertAt = len(impDecl.Specs)
629 impDecl.Specs = append(impDecl.Specs, nil)
630 copy(impDecl.Specs[insertAt+1:], impDecl.Specs[insertAt:]
    [all...]
  /prebuilts/go/linux-x86/src/cmd/fix/
fix.go 242 walkBeforeAfter(&n.Specs, before, after)
317 for _, spec := range gen.Specs {
512 for _, s := range d.Specs {
598 for j, spec := range gen.Specs {
621 if len(impDecl.Specs) > 0 && !impDecl.Lparen.IsValid() {
627 insertAt = len(impDecl.Specs)
629 impDecl.Specs = append(impDecl.Specs, nil)
630 copy(impDecl.Specs[insertAt+1:], impDecl.Specs[insertAt:]
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorIDParser.java 84 private static class Specs {
90 Specs(String s, String t, String v, boolean sawS, String f) {
154 Specs specs = parseFilterID(id, pos, true); local
155 if (specs == null) {
161 SingleID single = specsToID(specs, FORWARD);
162 single.filter = specs.filter;
184 Specs specsA = null;
185 Specs specsB = null;
584 * at any location between specs or delimiters, and is returne
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorIDParser.java 83 private static class Specs {
89 Specs(String s, String t, String v, boolean sawS, String f) {
153 Specs specs = parseFilterID(id, pos, true); local
154 if (specs == null) {
160 SingleID single = specsToID(specs, FORWARD);
161 single.filter = specs.filter;
183 Specs specsA = null;
184 Specs specsB = null;
583 * at any location between specs or delimiters, and is returne
    [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 164 llvm::FoldingSetVector<EntryType> &Specs, ArrayRef<TemplateArgument> Args,
169 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos);
277 uint32_t *Specs = CommonPtr->LazySpecializations;
279 for (uint32_t I = 0, N = *Specs++; I != N; ++I)
280 (void)Context.getExternalSource()->GetExternalDecl(Specs[I]);
351 uint32_t *Specs = CommonPtr->LazySpecializations;
353 for (uint32_t I = 0, N = *Specs++; I != N; ++I)
354 (void)Context.getExternalSource()->GetExternalDecl(Specs[I]);
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/
filter.go 25 for _, d := range d.Specs {
example.go 160 for _, spec := range d.Specs {
278 importDecl.Specs = append(importDecl.Specs, s)
280 importDecl.Specs = append(importDecl.Specs, blankImports...)
exports.go 229 d.Specs = r.filterSpecList(d.Specs, d.Tok)
230 return len(d.Specs) > 0
reader.go 225 func specNames(specs []ast.Spec) []string {
226 names := make([]string, 0, len(specs)) // reasonable estimate
227 for _, s := range specs {
247 for _, spec := range decl.Specs {
289 if domName != "" && r.isVisible(domName) && domFreq >= int(float64(len(decl.Specs))*threshold) {
298 Names: specNames(decl.Specs),
476 for _, spec := range d.Specs {
491 if len(d.Specs) == 1 && !d.Lparen.IsValid() {
497 if s, ok := d.Specs[0].(*ast.TypeSpec); ok {
502 for _, spec := range d.Specs {
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/
filter.go 25 for _, d := range d.Specs {
example.go 160 for _, spec := range d.Specs {
278 importDecl.Specs = append(importDecl.Specs, s)
280 importDecl.Specs = append(importDecl.Specs, blankImports...)
exports.go 229 d.Specs = r.filterSpecList(d.Specs, d.Tok)
230 return len(d.Specs) > 0
reader.go 225 func specNames(specs []ast.Spec) []string {
226 names := make([]string, 0, len(specs)) // reasonable estimate
227 for _, s := range specs {
247 for _, spec := range decl.Specs {
289 if domName != "" && r.isVisible(domName) && domFreq >= int(float64(len(decl.Specs))*threshold) {
298 Names: specNames(decl.Specs),
476 for _, spec := range d.Specs {
491 if len(d.Specs) == 1 && !d.Lparen.IsValid() {
497 if s, ok := d.Specs[0].(*ast.TypeSpec); ok {
502 for _, spec := range d.Specs {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/cgo/
ast.go 74 for _, spec := range d.Specs {
84 if cg == nil && len(d.Specs) == 1 {
108 for _, spec := range d.Specs {
111 d.Specs[ws] = spec
118 d.Specs = d.Specs[0:ws]
462 f.walk(n.Specs, "spec", visit)
godefs.go 70 for _, s := range d.Specs {
  /prebuilts/go/linux-x86/src/cmd/cgo/
ast.go 74 for _, spec := range d.Specs {
84 if cg == nil && len(d.Specs) == 1 {
108 for _, spec := range d.Specs {
111 d.Specs[ws] = spec
118 d.Specs = d.Specs[0:ws]
462 f.walk(n.Specs, "spec", visit)
godefs.go 70 for _, s := range d.Specs {
  /prebuilts/go/darwin-x86/src/cmd/doc/
pkg.go 219 if len(n.Specs) > 1 {
225 for i, spec := range n.Specs {
477 for _, spec := range typ.Decl.Specs {
550 for _, spec := range decl.Specs {
585 specs := make([]ast.Spec, 0, len(value.Decl.Specs))
587 for _, spec := range value.Decl.Specs {
607 specs = append(specs, vspec)
613 if len(specs) == 0
    [all...]
  /prebuilts/go/linux-x86/src/cmd/doc/
pkg.go 219 if len(n.Specs) > 1 {
225 for i, spec := range n.Specs {
477 for _, spec := range typ.Decl.Specs {
550 for _, spec := range decl.Specs {
585 specs := make([]ast.Spec, 0, len(value.Decl.Specs))
587 for _, spec := range value.Decl.Specs {
607 specs = append(specs, vspec)
613 if len(specs) == 0
    [all...]

Completed in 799 milliseconds

1 2 3 4