/development/tools/apkcheck/src/com/android/apkcheck/ |
ApkCheck.java | 62 usage(); method 70 usage(); method 102 args[idx] + " (use \"--help\" for usage info)"); 110 usage(); method 141 * Prints usage statement. 143 static void usage() { method in class:ApkCheck 146 System.err.println("Usage: apkcheck [options] public-api.xml apk1.xml ...\n");
|
/development/tools/elftree/ |
elftree.c | 256 static void usage(void) function 258 fprintf(stderr, "Usage: elftree [ -s | -h ] elf-file\n" 277 usage(); 311 usage();
|
/development/tools/etc1tool/ |
etc1tool.cpp | 31 void usage(char* message, ...) { function 38 fprintf(stderr, "usage:\n"); 45 fprintf(stderr, "\t\t--help print this usage information.\n"); 477 usage("At most one occurrence of --encode --encodeNoHeader or --decode is allowed.\n"); 502 usage("Only one -o flag allowed."); 505 usage("Expected outfile after -o"); 523 usage("Only one --showDifference option allowed.\n"); 527 usage("Expected difffile after --showDifference"); 531 usage( NULL); 533 usage("Unknown flag %s", pArg) [all...] |
/development/tools/mkstubs/src/com/android/mkstubs/ |
Main.java | 152 usage(null); 154 usage("Unknown argument: " + arg); 166 usage("Missing input or output JAR."); 249 * @param error The error that generated the usage, if any. Can be null. 251 private void usage(String error) { method in class:Main 256 System.out.println("Usage: mkstub [--h|--s|--v] input.jar output.jar [excluded-class @excluded-classes-file ...]"); 259 " --h | --help : print this usage.\n" +
|
/external/bison/src/ |
getargs.c | 286 static void usage (int) ATTRIBUTE_NORETURN; 289 usage (int status) function 301 printf (_("Usage: %s [OPTION]... FILE\n"), program_name); 680 usage (EXIT_SUCCESS); 741 usage (EXIT_FAILURE); 750 usage (EXIT_FAILURE);
|
/external/checkpolicy/test/ |
dispol.c | 40 void usage(char *progname) function 42 printf("usage: %s binary_pol_file\n\n", progname); 407 usage(argv[0]);
|
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
gflags2man.py | 38 Usage: 92 def usage(self, shorthelp=0): member in class:App 530 app.usage(shorthelp=1)
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_engine_interface.h | 101 UsageEntry usage; member in struct:chromeos::InputMethodEngineInterface::Candidate
|
/external/chromium_org/chrome/browser/media/ |
media_stream_capture_indicator.cc | 110 // Stores usage counts for all the capture devices associated with a single 276 WebContentsDeviceUsage*& usage = usage_map_[web_contents]; local 277 if (!usage) 278 usage = new WebContentsDeviceUsage(this, web_contents); 279 return usage->RegisterMediaStream(devices); 405 const WebContentsDeviceUsage& usage = *iter->second; local 410 if ((usage.IsCapturingAudio() || usage.IsCapturingVideo()) 415 audio = audio || usage.IsCapturingAudio(); 416 video = video || usage.IsCapturingVideo() [all...] |
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_sync_context_unittest.cc | 597 // Record the initial usage (likely 0). 624 // At this point the usage must be greater than the initial usage. 661 // The quota usage data must have reflected the deletion. 683 // Record the initial usage (likely 0). 698 // At this point the usage must be greater than the initial usage. 726 // The quota usage data must have reflected the deletion. 788 // Record the usage. 789 int64 usage = -1, new_usage = -1 local [all...] |
/external/chromium_org/chrome/renderer/pepper/ |
pepper_flash_renderer_host.cc | 127 void RecordFlashNavigateUsage(FlashNavigateUsage usage) { 128 DCHECK_NE(FLASH_NAVIGATE_USAGE_ENUM_COUNT, usage); 129 UMA_HISTOGRAM_ENUMERATION("Plugin.FlashNavigateUsage", usage, 331 FlashNavigateUsage usage = iter != rejected_headers.end() ? local 333 RecordFlashNavigateUsage(usage);
|
/external/chromium_org/content/browser/fileapi/ |
file_system_quota_client_unittest.cc | 155 // Create the usage cache. 201 int64 usage() const { return usage_; } function in class:fileapi::FileSystemQuotaClientTest 209 void OnGetUsage(int64 usage) { 210 usage_ = usage; 411 EXPECT_EQ(11 + 22 + file_paths_cost, usage()); 420 EXPECT_EQ(11 + 22 + file_paths_cost, usage());
|
file_writer_delegate_unittest.cc | 83 int64 usage() { function in class:fileapi::FileWriterDelegateTest 239 ASSERT_EQ(0, usage()); 246 ASSERT_EQ(kDataSize, usage()); 247 EXPECT_EQ(GetFileSizeOnDisk("test"), usage()); 259 ASSERT_EQ(0, usage()); 265 ASSERT_EQ(kAllowedGrowth, usage()); 266 EXPECT_EQ(GetFileSizeOnDisk("test"), usage()); 279 ASSERT_EQ(0, usage()); 285 ASSERT_EQ(kAllowedGrowth, usage()); 286 EXPECT_EQ(GetFileSizeOnDisk("test"), usage()); [all...] |
/external/chromium_org/gpu/command_buffer/service/ |
buffer_manager.h | 44 GLenum usage() const { function in class:gpu::gles2::Buffer 118 // Sets the size, usage and initial data of a buffer. 121 GLsizeiptr size, GLenum usage, bool shadow, const GLvoid* data, 163 // Usage of buffer. 206 const GLvoid * data, GLenum usage); 224 // Tells for a given usage if this would be a client side array. 225 bool IsUsageClientSideArray(GLenum usage); 255 GLenum usage, 258 // Sets the size, usage and initial data of a buffer. 261 Buffer* buffer, GLsizeiptr size, GLenum usage, const GLvoid* data) [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/ |
sdk_update_main.py | 44 def usage(more): function 172 @usage('<bundle names...>') 199 @usage('<bundle names...>') 238 @usage('<bundle names...>') 251 @usage('<bundle names...>') 342 parser.set_usage('usage: %%prog %s [options] %s' % (cmd, more)) 373 # Format for CMDhelp usage. 413 # "fix" the usage and the description now that we know the subcommand.
|
/external/chromium_org/third_party/angle/samples/translator/ |
translator.cpp | 26 static void usage(); 198 usage(); 212 // print usage to stdout 214 void usage() function 216 printf("Usage: translate [-i -m -o -u -l -e -b=e -b=g -b=h -x=i -x=d] file1 file2 ...\n" 367 // Notice the usage of do-while instead of a while loop here.
|
/external/chromium_org/third_party/icu/source/tools/ctestfw/ |
uperf.cpp | 22 "Usage: %s [OPTIONS] [FILES]\n" 25 "\t-h or -? or --help this usage text\n" 296 this->usage(); 467 * Print a usage message for this test class. 469 void UPerfTest::usage( void ) function in class:UPerfTest
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
cpumonitor.cc | 331 // Get live thread usage. 342 // Get terminated thread usage. 359 rusage usage; local 360 if (getrusage(RUSAGE_SELF, &usage) < 0) { 366 (usage.ru_utime.tv_sec + usage.ru_stime.tv_sec) * kNumMicrosecsPerSec + 367 usage.ru_utime.tv_usec + usage.ru_stime.tv_usec;
|
/external/chromium_org/third_party/libxml/src/win32/ |
configure.js | 107 function usage() function 110 txt = "Usage:\n"; 551 usage(); 563 usage();
|
/external/chromium_org/third_party/libxslt/win32/ |
configure.js | 93 function usage() function 96 txt = "Usage:\n"; 389 usage(); 397 usage();
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_inlines.h | 198 ps->usage = flags; 236 unsigned usage, 244 buffer.usage = usage; 258 unsigned usage, 273 usage, 293 unsigned usage, 296 return pipe_buffer_map_range(pipe, buffer, 0, buffer->width0, usage, transfer); 342 unsigned usage = PIPE_TRANSFER_WRITE; local 345 usage |= PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/ |
nv50_screen.h | 112 uint32_t usage; member in struct:nv50_format
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/ |
nvc0_screen.h | 111 uint32_t usage; member in struct:nvc0_format
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_resource_buffer_upload.c | 53 unsigned usage, 61 buf = sws->buffer_create(sws, alignment, usage, size); 68 buf = sws->buffer_create(sws, alignment, usage, size); 104 unsigned usage = 0; local 107 sbuf->hwbuf = sws->buffer_create(sws, alignment, usage, size); 470 const unsigned usage = 0; local 491 hwbuf = sws->buffer_create(sws, alignment, usage, size); 496 hwbuf = sws->buffer_create(sws, alignment, usage, size);
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
fs-test.c | 22 static void usage(char *name) function 24 fprintf(stderr, "usage: %s [ options ] shader_filename\n", name); 469 surf_tmpl.usage = PIPE_BIND_RENDER_TARGET; 540 usage(argv[0]); 546 usage(argv[0]);
|