HomeSort by relevance Sort by last modified time
    Searched refs:Internalize (Results 1 - 15 of 15) sorted by null

  /external/v8/src/ast/
ast-value-factory.cc 86 void AstRawString::Internalize(Isolate* isolate) {
118 void AstConsString::Internalize(Isolate* isolate) {
164 void AstValue::Internalize(Isolate* isolate) {
225 // allocation. Make sure we won't try to internalize the string in GetString.
240 if (isolate_) result->Internalize(isolate_);
252 new_string->Internalize(isolate_);
258 void AstValueFactory::Internalize(Isolate* isolate) {
266 strings_[i]->Internalize(isolate);
269 values_[i]->Internalize(isolate);
279 value->Internalize(isolate_)
    [all...]
ast-value-factory.h 51 virtual void Internalize(Isolate* isolate) = 0;
75 void Internalize(Isolate* isolate) override;
125 void Internalize(Isolate* isolate) override;
174 void Internalize(Isolate* isolate);
176 // Can be called after Internalize has been called.
313 void Internalize(Isolate* isolate);
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 79 LLVMBool Internalize,
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
passmgr_builder_ocaml.c 103 internalize:bool -> run_inliner:bool -> t -> unit */
105 LLVMPassManagerRef PM, value Internalize, value RunInliner,
109 Bool_val(Internalize), Bool_val(RunInliner));
  /external/llvm/lib/Transforms/IPO/
Android.mk 20 Internalize.cpp \
PassManagerBuilder.cpp 709 LLVMBool Internalize,
  /external/llvm/lib/Linker/
LinkModules.cpp 32 StringSet<> Internalize;
637 // Add these to the internalize list
642 Internalize.insert(GV.getName());
650 Internalize.insert(GV2->getName());
729 Internalize.insert(GV->getName());
739 for (auto &P : Internalize) {
  /external/llvm/tools/llvm-link/
llvm-link.cpp 70 Internalize("internalize", cl::desc("Internalize linked symbols"));
316 if (Internalize)
  /external/llvm/tools/gold/
gold-plugin.cpp 524 static void internalize(GlobalValue &GV) { function
598 StringSet<> &Internalize, StringSet<> &Maybe,
696 // so we can only internalize after linking.
698 Internalize.insert(GV->getName());
898 StringSet<> Internalize;
904 Context, F, InputFile.file(), ApiFile, Internalize, Maybe, Keep);
914 for (const auto &Name : Internalize) {
917 internalize(*GV);
926 internalize(*GV);
  /external/v8/src/parsing/
scanner.h 219 Handle<String> Internalize(Isolate* isolate) const;
parser.cc 872 // string table to internalize strings and values right after they're
875 ast_value_factory()->Internalize(info->isolate());
    [all...]
scanner.cc 23 Handle<String> LiteralBuffer::Internalize(Isolate* isolate) const {
    [all...]
parser.h 685 // internalize strings (move them to the heap).
686 void Internalize(Isolate* isolate, Handle<Script> script, bool error);
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 843 ast_value_factory.Internalize(CcTest::i_isolate());
    [all...]
  /external/v8/src/
api.cc     [all...]

Completed in 389 milliseconds