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

1 2

  /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/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/chromium_org/third_party/libaddressinput/src/cpp/src/
ondemand_supply_task.cc 63 Loaded();
66 // implemented by Load(), will finish by calling Loaded(), which will finish
131 Loaded();
135 void OndemandSupplyTask::Loaded() {
ondemand_supply_task.h 57 void Loaded();
  /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/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFace.cpp 66 setLoadStatus(FontFace::Loaded);
101 setLoadStatus(FontFace::Loaded);
145 setLoadStatus(FontFace::Loaded);
152 setLoadStatus(FontFace::Loaded);
176 case FontFace::Loaded:
FontFace.cpp 75 case FontFace::Loaded:
363 case Loaded:
364 return "loaded";
378 if (m_status == Loaded || m_status == Error) {
384 if (m_status == Loaded)
398 if (m_status == Loaded || m_status == Error)
415 if (m_status == Loaded)
612 m_status = Loaded;
FontFace.h 56 enum LoadStatus { Unloaded, Loading, Loaded, Error };
83 ScriptPromise loaded(ScriptState* scriptState) { return fontStatusPromise(scriptState); } function in class:WebCore::FontFace
CSSSegmentedFontFace.cpp 180 if ((*it)->loadStatus() != FontFace::Loaded)
199 if ((*it)->loadStatus() != FontFace::Loaded && (*it)->cssFontFace()->ranges().intersectsWith(text))
  /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/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.
supplier_test.cc 117 loaded_(BuildCallback(this, &PreloadSupplierWrapper::Loaded)) {}
119 void Loaded(bool success, const std::string&, int) {
address_validator_test.cc 132 loaded_(BuildCallback(this, &PreloadValidatorWrapper::Loaded)) {}
134 void Loaded(bool success, const std::string&, int) {
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 96 assert(0 && "Out-of bounds loaded preprocessed entity");
141 Loaded = ExternalSource->findPreprocessedEntitiesInRange(Range);
144 if (Loaded.first == Loaded.second)
149 // Check if range spans loaded entities.
151 return std::make_pair(int(Loaded.first)-TotalLoaded,
152 int(Loaded.second)-TotalLoaded);
154 // Range spands loaded and local entities.
155 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second);
332 "Out-of bounds loaded preprocessed entity")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.h 77 enum ReadinessState { NotLoaded = 0, Loading = 1, Loaded = 2, FailedToLoad = 3 };
  /external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/
options.js 48 message('Loaded saved CSS.');
  /external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
background.js 19 console.log("Loaded.");
48 // but the content script will not be loaded at that point, so we send
  /external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/
example.js 12 updateStatus('Page Loaded');
15 // Indicate success when the NaCl module has loaded.
17 updateStatus('LOADED');
  /external/chromium_org/v8/test/webkit/
tostring-exception-in-property-access.js 47 testFailed('FAIL: Loaded property from object when subscript threw.');
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTrackElement.cpp 230 // 1. Change the text track readiness state to loaded.
231 setReadyState(HTMLTrackElement::LOADED);
241 COMPILE_ASSERT(HTMLTrackElement::LOADED == static_cast<HTMLTrackElement::ReadyState>(TextTrack::Loaded), TextTrackEnumLoaded_Is_Wrong_Should_Be_HTMLTrackElementEnumLOADED);
  /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/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
coverage_html.js 38 // Loaded on index.html
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
share_dialog.js 167 console.debug('Loaded.');
171 this.webViewWrapper_.classList.add('loaded');
  /external/chromium_org/chrome/browser/resources/feedback/js/
feedback.js 238 * .) DOMContent Loaded -> . Request feedbackInfo object
  /external/clang/include/clang/Serialization/
ASTReader.h 177 /// This is called for each AST file loaded.
368 /// \brief The global module index, if loaded.
384 /// \brief Types that have already been loaded from the chain.
387 /// ID = (I + 1) << FastQual::Width has already been loaded
398 /// \brief Declarations that have already been loaded from the chain.
401 /// = I + 1 has already been loaded.
420 /// \brief Declaration updates for already-loaded declarations that we need
455 // ID as a key. It will be realized when the context is actually loaded.
463 /// haven't been loaded yet.
485 /// loaded
    [all...]

Completed in 520 milliseconds

1 2