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

1 2 3

  /external/vulkan-validation-layers/
vulkan.py 76 class Proto(object):
80 # the proto has only a param
165 return "Proto(\"%s\", \"%s\",\n%s)" % \
188 for proto in self.protos:
189 param_lines = str(proto).splitlines()
190 param_lines[-1] += ",\n" if proto != self.protos[-1] else ","
230 Proto("VkResult", "CreateInstance",
235 Proto("void", "DestroyInstance",
239 Proto("VkResult", "EnumeratePhysicalDevices",
244 Proto("void", "GetPhysicalDeviceFeatures"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 154 std::unique_ptr<PrototypeAST> Proto;
158 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
160 : Proto(std::move(Proto)), Body(std::move(Body)) {}
350 auto Proto = ParsePrototype();
351 if (!Proto)
355 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E));
362 // Make an anonymous proto.
363 auto Proto = helper::make_unique<PrototypeAST>("__anon_expr",
365 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 161 std::unique_ptr<PrototypeAST> Proto;
165 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
167 : Proto(std::move(Proto)), Body(std::move(Body)) {}
359 auto Proto = ParsePrototype();
360 if (!Proto)
364 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
371 // Make an anonymous proto.
372 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
374 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-571517.js 6 function Proto() { this.proto = "proto"; }
14 var proto = rec.__proto__.__proto__; variable
21 var p2 = new Proto();
23 proto.__proto__ = p2;
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 155 std::unique_ptr<PrototypeAST> Proto;
159 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
161 : Proto(std::move(Proto)), Body(std::move(Body)) {}
353 auto Proto = ParsePrototype();
354 if (!Proto)
358 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
365 // Make an anonymous proto.
366 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
368 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 467 std::string Proto = D->getNameInfo().getAsString();
471 Proto = '(' + Proto + ')';
480 Proto += "(";
482 llvm::raw_string_ostream POut(Proto);
496 Proto += ", ";
497 Proto += D->getParamDecl(i)->getNameAsString();
501 Proto += ")";
505 Proto += " const";
507 Proto += " volatile"
    [all...]
Mangle.cpp 165 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
169 if (!Proto) {
173 assert(!Proto->isVariadic());
178 for (const auto &AT : Proto->param_types())
ItaniumCXXABI.cpp 62 const FunctionProtoType *Proto =
67 Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 203 std::unique_ptr<PrototypeAST> Proto;
207 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
209 : Proto(std::move(Proto)), Body(std::move(Body)) {}
483 auto Proto = ParsePrototype();
484 if (!Proto)
488 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
495 // Make an anonymous proto.
496 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
498 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 241 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
243 : Proto(std::move(Proto)), Body(std::move(Body)) {}
247 std::unique_ptr<PrototypeAST> Proto;
620 auto Proto = ParsePrototype();
621 if (!Proto)
625 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
632 // Make an anonymous proto.
633 auto Proto =
635 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 240 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
246 std::unique_ptr<PrototypeAST> Proto;
619 auto Proto = ParsePrototype();
620 if (!Proto)
624 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
631 // Make an anonymous proto.
632 auto Proto =
634 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 241 PrototypeAST *Proto;
244 FunctionAST(PrototypeAST *proto, ExprAST *body)
245 : Proto(proto), Body(body) {}
596 PrototypeAST *Proto = ParsePrototype();
597 if (Proto == 0) return 0;
600 return new FunctionAST(Proto, E);
607 // Make an anonymous proto.
608 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
609 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 248 PrototypeAST *Proto;
251 FunctionAST(PrototypeAST *proto, ExprAST *body)
252 : Proto(proto), Body(body) {}
603 PrototypeAST *Proto = ParsePrototype();
604 if (Proto == 0) return 0;
607 return new FunctionAST(Proto, E);
614 // Make an anonymous proto.
615 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
616 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 225 PrototypeAST *Proto;
228 FunctionAST(PrototypeAST *proto, ExprAST *body)
229 : Proto(proto), Body(body) {}
580 PrototypeAST *Proto = ParsePrototype();
581 if (Proto == 0) return 0;
584 return new FunctionAST(Proto, E);
591 // Make an anonymous proto.
592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
593 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 226 PrototypeAST *Proto;
229 FunctionAST(PrototypeAST *proto, ExprAST *body)
230 : Proto(proto), Body(body) {}
581 PrototypeAST *Proto = ParsePrototype();
582 if (Proto == 0) return 0;
585 return new FunctionAST(Proto, E);
592 // Make an anonymous proto.
593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
594 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 227 PrototypeAST *Proto;
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
231 : Proto(proto), Body(body) {}
582 PrototypeAST *Proto = ParsePrototype();
583 if (Proto == 0) return 0;
586 return new FunctionAST(Proto, E);
593 // Make an anonymous proto.
594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
595 return new FunctionAST(Proto, E)
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 278 std::string Name, Proto;
322 Intrinsic(Record *R, StringRef Name, StringRef Proto, TypeSpec OutTS,
325 : R(R), Name(Name.str()), Proto(Proto.str()), OutTS(OutTS), InTS(InTS),
332 if (Proto.find('i') != std::string::npos)
337 if (Proto.find('p') != std::string::npos ||
338 Proto.find('c') != std::string::npos)
344 Proto.find('s') != std::string::npos)
350 Types.emplace_back(OutTS, Proto[0]);
351 for (unsigned I = 1; I < Proto.size(); ++I
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 240 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
246 std::unique_ptr<PrototypeAST> Proto;
619 auto Proto = ParsePrototype();
620 if (!Proto)
624 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
631 // Make an anonymous proto.
632 auto Proto =
634 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 240 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
246 std::unique_ptr<PrototypeAST> Proto;
619 auto Proto = ParsePrototype();
620 if (!Proto)
624 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
631 // Make an anonymous proto.
632 auto Proto =
634 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 236 std::unique_ptr<PrototypeAST> Proto;
240 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
574 auto Proto = ParsePrototype();
575 if (!Proto)
579 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
586 // Make an anonymous proto.
587 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
589 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 255 std::unique_ptr<PrototypeAST> Proto;
259 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
261 : Proto(std::move(Proto)), Body(std::move(Body)) {}
644 auto Proto = ParsePrototype();
645 if (!Proto)
649 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
656 // Make an anonymous proto.
657 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
659 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 267 PrototypeAST *Proto;
270 FunctionAST(PrototypeAST *proto, ExprAST *body)
271 : Proto(proto), Body(body) {}
622 PrototypeAST *Proto = ParsePrototype();
623 if (Proto == 0) return 0;
626 return new FunctionAST(Proto, E);
633 // Make an anonymous proto.
634 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
635 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 386 std::unique_ptr<PrototypeAST> Proto;
390 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
392 : Proto(std::move(Proto)), Body(std::move(Body)) {}
788 auto Proto = ParsePrototype();
789 if (!Proto)
793 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
801 // Make an anonymous proto.
802 auto Proto = llvm::make_unique<PrototypeAST>(FnLoc, "__anon_expr",
804 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/gmock/include/gmock/
gmock-actions.h 704 template <size_t N, typename Proto>
705 class SetArgumentPointeeAction<N, Proto, true> {
708 // N-th function argument to 'proto'. Both ProtocolMessage and
711 explicit SetArgumentPointeeAction(const Proto& proto) : proto_(new Proto) {
712 proto_->CopyFrom(proto);
722 const internal::linked_ptr<Proto> proto_;
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 704 template <size_t N, typename Proto>
705 class SetArgumentPointeeAction<N, Proto, true> {
708 // N-th function argument to 'proto'. Both ProtocolMessage and
711 explicit SetArgumentPointeeAction(const Proto& proto) : proto_(new Proto) {
712 proto_->CopyFrom(proto);
722 const internal::linked_ptr<Proto> proto_;
    [all...]

Completed in 1003 milliseconds

1 2 3