Searched defs:Load (Results 1 - 25 of 101) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/Class/
H A DLoad.pm1 package My::Test::Class::Load;
6 use base 'Test::Class::Load';
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRFileStream.cs60 Load( fileName, encoding );
63 public virtual void Load( string fileName, Encoding encoding ) method in class:Antlr.Runtime.ANTLRFileStream
H A DANTLRReaderStream.cs64 Load( r, size, readChunkSize );
67 public virtual void Load( TextReader r, int size, int readChunkSize ) method in class:Antlr.Runtime.ANTLRReaderStream
/external/v8/test/mjsunit/compiler/
H A Dproperty-refs.js30 function Load(o) { function
47 return Load(object);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs79 Load(fileName, encoding);
101 public virtual void Load(string fileName, Encoding encoding) method in class:Antlr.Runtime.ANTLRFileStream
H A DANTLRReaderStream.cs59 Load(r, size, readChunkSize);
62 public virtual void Load(TextReader r, int size, int readChunkSize) { method in class:Antlr.Runtime.ANTLRReaderStream
/external/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.h33 Load = (1<<1), enumerator in enum:llvm::SPII::__anon10880
/external/v8/test/mjsunit/
H A Ddictionary-properties.js23 function Load(o) { function
30 assertEquals(undefined, Load(o1));
31 assertEquals(4, Load(o2));
/external/icu/icu4c/source/test/depstest/
H A Ddependencies.py140 def Load(): function
/external/lzma/CPP/Windows/
H A DDLL.cpp46 bool CLibrary::Load(LPCTSTR fileName) function in class:NWindows::NDLL::CLibrary
48 // MessageBox(0, fileName, TEXT("Load"), 0);
66 bool CLibrary::Load(LPCWSTR fileName) function in class:NWindows::NDLL::CLibrary
70 return Load(GetSysPath(fileName));
/external/v8/src/arm64/
H A Ddelayed-masm-arm64.cc100 void DelayedMasm::Load(const CPURegister& rd, const MemOperand& operand) { function in class:v8::internal::DelayedMasm
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
H A Dhtml_module.py37 def Load(self): member in class:HTMLModule
38 super(HTMLModule, self).Load()
H A Dmodule.py164 def Load(self): member in class:Module
/external/v8/src/compiler/
H A Dmachine-operator.cc155 struct Load##Type##Operator FINAL : public Operator1<LoadRepresentation> { \
156 Load##Type##Operator() \
159 "Load", k##Type) {} \
161 Load##Type##Operator k##Load##Type;
205 const Operator* MachineOperatorBuilder::Load(LoadRepresentation rep) { function in class:v8::internal::compiler::MachineOperatorBuilder
209 return &impl_.k##Load##Type;
/external/llvm/lib/Target/R600/
H A DSITypeRewriter.cpp88 LoadInst *Load = Builder.CreateLoad(BitCast); local
92 Load->setMetadata(MD[i].first, MD[i].second);
94 Value *BitCastLoad = Builder.CreateBitCast(Load, I.getType());
/external/llvm/unittests/Linker/
H A DLinkModulesTest.cpp80 Value *Load = Builder.CreateLoad(GEP, "switch.load"); local
82 Builder.CreateRet(Load);
/external/opencv/otherlibs/highgui/
H A Dimage.cpp132 bool CvvImage::Load( const char* filename, int desired_color ) function in class:CvvImage
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp256 SDNode *Load = O2SMap[Offset]; local
257 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads))
259 Loads.push_back(Load);
274 SDNode *Load = Loads[I];
278 if (AddGlue(Load, InGlue, OutGlue, DAG)) {
280 InGlue = SDValue(Load, Load->getNumValues() - 1);
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp195 static StoreInst *findSafeStoreForStoreStrongContraction(LoadInst *Load, argument
202 // Get the location associated with Load.
203 AliasAnalysis::Location Loc = AA->getLocation(Load);
206 for (auto I = std::next(BasicBlock::iterator(Load)),
207 E = Load->getParent()->end();
240 if (!CanUse(Inst, Load, PA, Class)) {
312 /// ; Load old value.
335 auto *Load = dyn_cast<LoadInst>(GetArgRCIdentityRoot(Release)); local
336 if (!Load || !Load
373 << " Load: " << *Load << "\\n"); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoadCombine.cpp46 : Load(L), POP(P), InsertOrder(O) {}
47 LoadInst *Load; member in struct:__anon11032::LoadPOPPair
138 BaseLoad = L.Load;
140 PrevSize = L.Load->getModule()->getDataLayout().getTypeStoreSize(
141 L.Load->getType());
145 if (L.Load->getAlignment() > BaseLoad->getAlignment())
160 PrevSize = L.Load->getModule()->getDataLayout().getTypeStoreSize(
161 L.Load->getType());
174 TotalSize += L.Load->getType()->getPrimitiveSizeInBits();
176 TotalSize -= Loads.pop_back_val().Load
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_pattern.cpp42 FX_BOOL CPDF_TilingPattern::Load() function in class:CPDF_TilingPattern
109 FX_BOOL CPDF_ShadingPattern::Load() function in class:CPDF_ShadingPattern
133 m_pFunctions[i] = CPDF_Function::Load(((CPDF_Array*)pFunc)->GetElementValue(i));
136 m_pFunctions[0] = CPDF_Function::Load(pFunc);
155 return Load();
157 FX_BOOL CPDF_MeshStream::Load(CPDF_Stream* pShadingStream, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS) function in class:CPDF_MeshStream
260 if (!stream.Load(pStream, pFuncs, nFuncs, pCS)) {
/external/skia/src/opts/
H A DSkNx_neon.h69 static SkNf Load(const float vals[2]) { return vld1_f32(vals); } function in class:SkNf
153 static SkNf Load(const double vals[2]) { return vld1q_f64(vals); } function in class:SkNf
216 static SkNi Load(const int vals[4]) { return vld1q_s32(vals); } function in class:SkNi
244 static SkNf Load(const float vals[4]) { return vld1q_f32(vals); } function in class:SkNf
316 static SkNi Load(const uint16_t vals[8]) { return vld1q_u16(vals); } function in class:SkNi
349 static SkNi Load(const uint8_t vals[16]) { return vld1q_u8(vals); } function in class:SkNi
H A DSkNx_sse.h59 static SkNf Load(const float vals[2]) { function in class:SkNf
106 static SkNf Load(const double vals[2]) { return _mm_loadu_pd(vals); } function in class:SkNf
150 static SkNi Load(const int vals[4]) { return _mm_loadu_si128((const __m128i*)vals); } function in class:SkNi
189 static SkNf Load(const float vals[4]) { return _mm_loadu_ps(vals); } function in class:SkNf
235 static SkNi Load(const uint16_t vals[4]) { return _mm_loadl_epi64((const __m128i*)vals); } function in class:SkNi
262 static SkNi Load(const uint16_t vals[8]) { return _mm_loadu_si128((const __m128i*)vals); } function in class:SkNi
299 static SkNi Load(const uint8_t vals[16]) { return _mm_loadu_si128((const __m128i*)vals); } function in class:SkNi
/external/v8/samples/
H A Dshell.cc61 void Load(const v8::FunctionCallbackInfo<v8::Value>& args);
129 // Bind the global 'load' function to the C++ Load callback.
131 v8::FunctionTemplate::New(isolate, Load));
192 void Load(const v8::FunctionCallbackInfo<v8::Value>& args) { function
/external/v8/tools/
H A Dpresubmit.py141 def Load(self): member in class:FileContentsCache
252 good_files_cache.Load()

Completed in 879 milliseconds

12345