Searched refs:glog (Results 1 – 20 of 20) sorted by relevance
/external/ceres-solver/cmake/ |
D | FindGlog.cmake | 32 # FindGlog.cmake - Find Google glog logging library. 36 # GLOG_FOUND: TRUE iff glog is found. 37 # GLOG_INCLUDE_DIRS: Include directories for glog. 38 # GLOG_LIBRARIES: Libraries required to link glog. 43 # search for glog includes, e.g: /timbuktu/include. 45 # search for glog libraries, e.g: /timbuktu/lib. 58 # GLOG_INCLUDE_DIR: Include directory for glog, not including the 60 # GLOG_LIBRARY: glog library, not including the libraries of any 63 # Called if we failed to find glog or any of it's required dependencies, 70 # Make results of search visible in the CMake GUI if glog has not [all …]
|
D | CeresConfig.cmake.in | 175 "for glog, beware this will likely cause problems if glog is later linked.") 177 # Append the locations of glog when Ceres was built to the search path hints.
|
/external/skia/platform_tools/android/bin/ |
D | android_run_app.go | 62 glog.Infof("Exec `%s %s`", adb.path, strings.Join(cmd, " ")) 99 glog.Warningf("Panic writing to channel... are we exiting?") 134 glog.Error(err) 165 glog.Errorf("Failed to kill logcat process: %v", err) 195 glog.Info(string(output)) 201 glog.Infof("Received SIGINT; killing app.") 206 glog.Errorf("Failed to kill app: %v", err) 209 glog.Errorf("Failed to kill logcat process: %v", err) 225 glog.Errorf("Failed to poll Skia process: %v", err) 227 glog.Infof("Skia process is no longer running!") [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | report_html.py | 110 def insert_gesture(self, glog, image, image_filename): argument 112 vlogs_content = self._insert_vlogs(glog.vlogs) 114 gesture_name=glog.name, 115 variation=glog.variation, 116 prompt=glog.prompt, 166 self.glog = firmware_log.GestureLog() 171 return [self.glog, self.encoded_image, self.image_filename] 186 if self.glog: 190 self.rlog.insert_glog(self.glog) 202 def insert_gesture_log(self, glog): argument [all …]
|
D | firmware_log.py | 453 def insert_glog(self, glog): argument 455 if glog.vlogs: 456 self._glogs.append(glog) 615 for glog in glogs: 616 self.gestures.add(glog.name) 617 for vlog in glog.vlogs: 619 key = (fw, round_name, glog.name, glog.variation, vlog.name)
|
D | test_flow.py | 306 glog = firmware_log.GestureLog() 307 glog.name = test.name 308 glog.variation = variation 309 glog.prompt = monochrome_prompt 311 return (msg, color_msg, glog) 649 (msg, color_msg, glog) = self._create_prompt(self.gesture, 652 self.output.report_html.insert_gesture_log(glog)
|
/external/skia/experimental/fiddle/ |
D | fiddler.go | 121 glog.Fatalf("usage: %s SKIA_SRC_PATH [PATH_TO_DRAW.CPP]", os.Args[0]) 128 glog.Fatal(err) 132 glog.Fatal(err) 136 glog.Fatal(err) 141 glog.Fatalf("os.RemoveAll(tempDir) failed: %v", err) 146 glog.Fatal(err) 151 glog.Fatalf("unable to open \"%s\": %v", os.Args[2], err) 155 glog.Fatal(err)
|
/external/autotest/client/site_tests/firmware_TouchMTB/tools/ |
D | print_log.py | 31 for glog in glogs: 32 vlogs = glog.vlogs 36 print prefix_spaces * 2 + '(%s %s)' % (glog.name, glog.variation)
|
/external/ceres-solver/docs/source/ |
D | faqs.rst | 13 #. Use `google-glog <http://code.google.com/p/google-glog>`_. 18 `google-glog <http://code.google.com/p/google-glog>`_ library. We 20 performance. `google-glog <http://code.google.com/p/google-glog>`_ 22 <http://google-glog.googlecode.com/svn/trunk/doc/glog.html>`_. Starting 28 `miniglog` - a minimal implementation of the ``glog`` interface 31 current version of `google-glog 32 <http://code.google.com/p/google-glog>`_ does not build using the 33 NDK. It has worse performance than the full fledged glog library
|
D | building.rst | 40 - `Google Log <http://code.google.com/p/google-glog>`_ 0.3.1 or 45 Ceres has a minimal replacement of ``glog`` called ``miniglog`` 47 option. ``miniglog`` is needed on Android as ``glog`` currently 121 # google-glog must be configured to use the previously installed gflags 122 tar -xvzf glog-0.3.2.tar.gz 123 cd glog-0.3.2 254 # google-glog and gflags 255 brew install glog 289 .. NOTE:: Using ``google-glog`` & ``miniglog`` with windows.h. 293 as a LogSeverity level in ``google-glog`` and ``miniglog``. There [all …]
|
D | version_history.rst | 257 #. ``miniglog`` can now be used as a replacement for ``google-glog`` 287 #. Consistent glog path across files.
|
/external/google-tv-pairing-protocol/cpp/ |
D | INSTALL | 13 * glog 0.3.2 14 http://code.google.com/p/google-glog/
|
/external/google-breakpad/ |
D | DEPS | 37 "src/src/third_party/glog": 38 "http://google-glog.googlecode.com/svn/trunk@97",
|
D | .gitignore | 42 src/third_party/glog
|
/external/ceres-solver/ |
D | CMakeLists.txt | 96 OPTION(MINIGLOG "Use a stripped down version of glog." OFF) 162 MESSAGE(STATUS "Building for iOS, forcing use of miniglog instead of glog.") 390 MESSAGE("-- Compiling minimal glog substitute into Ceres.") 392 MESSAGE("-- Using minimal glog substitute (include): ${GLOG_INCLUDE_DIRS}") 394 # Mark as advanced (remove from default GUI view) the glog search 411 "GLOG_LIBRARY or enable MINIGLOG option to use minimal glog " 751 INSTALL(FILES ${CMAKE_SOURCE_DIR}/internal/ceres/miniglog/glog/logging.h 752 DESTINATION include/ceres/internal/miniglog/glog)
|
D | Android.mk | 232 LOCAL_SRC_FILES += $(CERES_SRC_PATH)/miniglog/glog/logging.cc
|
/external/ceres-solver/internal/ceres/ |
D | CMakeLists.txt | 170 # glog implementation into Ceres. 172 LIST(APPEND CERES_LIBRARY_SOURCE miniglog/glog/logging.cc)
|
/external/ceres-solver/scripts/ |
D | ceres-solver.spec | 31 BuildRequires: glog-devel
|
/external/ceres-solver/jni/ |
D | Android.mk | 223 LOCAL_SRC_FILES += $(CERES_SRC_PATH)/miniglog/glog/logging.cc
|
/external/libchrome/base/ |
D | base.gyp | 1344 'third_party/symbolize/glog/logging.h', 1345 'third_party/symbolize/glog/raw_logging.h',
|