/packages/inputmethods/PinyinIME/jni/share/ |
utf16reader.cpp | 25 fp_ = NULL; 33 if (NULL != fp_) 34 fclose(fp_); 58 if ((fp_ = fopen(filename, "rb")) == NULL) 63 if (fread(&header, sizeof(header), 1, fp_) != 1 || header != 0xfeff) { 64 fclose(fp_); 65 fp_ = NULL; 73 if (NULL == fp_ || NULL == read_buf || 0 == max_len) 82 buffer_total_len_, fp_); 122 if (NULL != fp_) [all...] |
/external/v8/src/ |
mksnapshot.cc | 135 fp_ = i::OS::FOpen(snapshot_file, "wb"); 136 if (fp_ == NULL) { 140 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n"); 141 fprintf(fp_, "#include \"v8.h\"\n"); 142 fprintf(fp_, "#include \"platform.h\"\n\n"); 143 fprintf(fp_, "#include \"snapshot.h\"\n\n"); 144 fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n"); 145 fprintf(fp_, "const byte Snapshot::data_[] = {"); 149 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position()); 151 fprintf(fp_, "const byte* Snapshot::raw_data_ = NULL;\n") 223 FILE* fp_; member in class:CppByteSink [all...] |
frames.cc | 96 fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) { 104 fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) { 111 fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) { 120 fp_(use_top ? NULL : fp), sp_(sp), 172 ASSERT(fp_ != NULL); 173 state.fp = fp_; 176 reinterpret_cast<Address*>(StandardFrame::ComputePCAddress(fp_))); [all...] |
deoptimizer.h | 424 intptr_t GetFp() const { return fp_; } 425 void SetFp(intptr_t fp) { fp_ = fp; } 490 intptr_t fp_;
|
ic.h | 138 Address fp() const { return fp_; } 172 Address fp_; member in class:v8::internal::IC
|
frames.h | 688 Address fp_;
|
deoptimizer.cc | [all...] |
ic.cc | 136 fp_ = fp; [all...] |
/external/chromium_org/v8/src/ |
mksnapshot.cc | 95 fp_ = i::OS::FOpen(snapshot_file, "wb"); 96 if (fp_ == NULL) { 100 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n"); 101 fprintf(fp_, "#include \"v8.h\"\n"); 102 fprintf(fp_, "#include \"platform.h\"\n\n"); 103 fprintf(fp_, "#include \"snapshot.h\"\n\n"); 104 fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n"); 105 fprintf(fp_, "const byte Snapshot::data_[] = {"); 109 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position()); 111 fprintf(fp_, "const byte* Snapshot::raw_data_ = NULL;\n") 195 FILE* fp_; member in class:CppByteSink [all...] |
deoptimizer.h | 540 intptr_t GetFp() const { return fp_; } 541 void SetFp(intptr_t fp) { fp_ = fp; } 606 intptr_t fp_;
|
ic.h | 174 Address fp() const { return fp_; } 264 Address fp_; member in class:v8::internal::IC [all...] |
deoptimizer.cc | [all...] |
ic.cc | 146 fp_ = fp; [all...] |
/external/bison/lib/ |
stdio-impl.h | 35 # define fp_ ((struct { struct __FILE_public pub; \ macro 57 # define fp_ fp macro 70 # define fp_ub fp_->_ub 94 # define fp_ ((struct { unsigned char *_ptr; \ macro 102 # define fp_ fp macro
|
fseterr.c | 35 fp_->_flags |= __SERR; 41 fp_->_flag |= _IOERR;
|
/packages/inputmethods/PinyinIME/jni/include/ |
utf16reader.h | 27 FILE *fp_; member in class:ime_pinyin::Utf16Reader
|
/external/openfst/src/include/fst/ |
bi-table.h | 281 : fp_(fp ? fp : new FP()) { 287 : fp_(table.fp_ ? new FP(*table.fp_) : 0), 291 ~VectorBiTable() { delete fp_; } 294 ssize_t fp = (*fp_)(entry); 313 const FP &Fingerprint() const { return *fp_; } 316 FP *fp_; member in class:fst::VectorBiTable 341 fp_(fp ? fp : new FP()), 354 fp_(table.fp_ ? new FP(*table.fp_) : 0) 458 FP *fp_; \/\/ Fingerprint used when hashing entry into vector member in class:fst::VectorHashBiTable [all...] |
/external/chromium_org/v8/test/cctest/ |
test-serialize.cc | 172 fp_ = OS::FOpen(snapshot_file, "wb"); 174 if (fp_ == NULL) { 180 if (fp_ != NULL) { 181 fclose(fp_); 185 if (fp_ != NULL) { 186 fputc(byte, fp_); 190 return ftell(fp_); 202 FILE* fp_; member in class:FileByteSink
|
/external/v8/test/cctest/ |
test-serialize.cc | 173 fp_ = OS::FOpen(snapshot_file, "wb"); 175 if (fp_ == NULL) { 181 if (fp_ != NULL) { 182 fclose(fp_); 186 if (fp_ != NULL) { 187 fputc(byte, fp_); 191 return ftell(fp_); 203 FILE* fp_; member in class:FileByteSink
|
/art/runtime/hprof/ |
hprof.cc | 190 fp_ = NULL; 203 fp_ = fp; 219 int nb = fwrite(headBuf, 1, sizeof(headBuf), fp_); 223 nb = fwrite(body_, 1, length_, fp_); 358 FILE* fp_; member in class:art::hprof::HprofRecord [all...] |