HomeSort by relevance Sort by last modified time
    Searched defs:Loaded (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/libaddressinput/chromium/
preload_address_validator_unittest.cc 61 loaded_(BuildCallback(this, &PreloadAddressValidatorTest::Loaded)) {
71 void Loaded(bool success,
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
address_input_helper_test.cc 52 loaded_(BuildCallback(this, &AddressInputHelperTest::Loaded)) {}
68 void Loaded(bool success, const std::string&, int) {
256 loaded_(BuildCallback(this, &AddressInputHelperMockDataTest::Loaded)) {}
274 void Loaded(bool success, const std::string&, int) {
290 // dependent locality, or the hierarchy won't be loaded.
324 // dependent locality, or the hierarchy won't be loaded.
address_validator_test.cc 132 loaded_(BuildCallback(this, &PreloadValidatorWrapper::Loaded)) {}
134 void Loaded(bool success, const std::string&, int) {
supplier_test.cc 117 loaded_(BuildCallback(this, &PreloadSupplierWrapper::Loaded)) {}
119 void Loaded(bool success, const std::string&, int) {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/media/
MediaPlayer.h 135 enum NetworkState { Empty, Idle, Loading, Loaded, FormatError, NetworkError, DecodeError };
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.h 56 enum LoadStatus { Unloaded, Loading, Loaded, Error };
83 ScriptPromise loaded(ScriptState* scriptState) { return fontStatusPromise(scriptState); } function in class:WebCore::FontFace
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.h 77 enum ReadinessState { NotLoaded = 0, Loading = 1, Loaded = 2, FailedToLoad = 3 };
  /external/llvm/lib/CodeGen/
AtomicExpandLoadLinkedPass.cpp 123 // xchg" that ignores the value loaded.
147 // %loaded = @load.linked(%addr)
148 // %new = some_op iN %loaded, %incr
171 Value *Loaded =
180 NewVal = Builder.CreateAdd(Loaded, AI->getValOperand(), "new");
183 NewVal = Builder.CreateSub(Loaded, AI->getValOperand(), "new");
186 NewVal = Builder.CreateAnd(Loaded, AI->getValOperand(), "new");
189 NewVal = Builder.CreateNot(Builder.CreateAnd(Loaded, AI->getValOperand()),
193 NewVal = Builder.CreateOr(Loaded, AI->getValOperand(), "new");
196 NewVal = Builder.CreateXor(Loaded, AI->getValOperand(), "new")
    [all...]
  /external/llvm/lib/Target/X86/
X86AtomicExpandPass.cpp 174 Value *Loaded, Value *Inc) {
180 return Builder.CreateAdd(Loaded, Inc, "new");
182 return Builder.CreateSub(Loaded, Inc, "new");
184 return Builder.CreateAnd(Loaded, Inc, "new");
186 return Builder.CreateNot(Builder.CreateAnd(Loaded, Inc), "new");
188 return Builder.CreateOr(Loaded, Inc, "new");
190 return Builder.CreateXor(Loaded, Inc, "new");
192 NewVal = Builder.CreateICmpSGT(Loaded, Inc);
193 return Builder.CreateSelect(NewVal, Loaded, Inc, "new");
195 NewVal = Builder.CreateICmpSLE(Loaded, Inc)
    [all...]
  /external/clang/include/clang/AST/
ExternalASTSource.h 44 /// \brief The external information has already been loaded, and therefore
466 /// \brief Represents a lazily-loaded vector of data.
468 /// The lazily-loaded vector of data contains data that is partially loaded
470 /// items loaded from the external source are loaded lazily, when needed for
476 SmallVector<T, LoadedStorage> Loaded;
488 /// loaded from the external source while non-negative values are used to
492 /// values (corresponding to loaded entities), so that position -M
493 /// corresponds to element 0 in the loaded entities vector, position -M+
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 2461 milliseconds