Home
last modified time | relevance | path

Searched refs:copies (Results 1 – 25 of 737) sorted by relevance

12345678910>>...30

/external/chromium_org/chrome/browser/resources/print_preview/settings/
Dcopies_settings.css5 #copies-settings input.copies {
11 #copies-settings-box {
15 #copies-settings input.copies.invalid {
20 #copies-settings button.increment:focus,
21 #copies-settings button.decrement:focus,
22 #copies-settings:focus {
26 #copies-settings .collate-container {
31 #copies-settings button.increment,
32 #copies-settings button.decrement {
43 #copies-settings button.increment {
[all …]
/external/chromium_org/tools/gyp/test/copies/src/
Dcopies.gyp10 'copies': [
12 'destination': 'copies-out',
22 'copies': [
24 'destination': '<(PRODUCT_DIR)/copies-out',
35 'copies': [
37 'destination': '<(PRODUCT_DIR)/copies-out',
49 'copies': [
51 'destination': '<(PRODUCT_DIR)/copies-out',
62 'copies': [
64 'destination': '<(PRODUCT_DIR)/copies-null',
Dcopies-slash.gyp11 'copies': [
13 'destination': '<(PRODUCT_DIR)/copies-out-slash/',
25 'copies': [
27 'destination': '<(PRODUCT_DIR)/copies-out-slash-2/',
29 '<(PRODUCT_DIR)/copies-out-slash/directory/',
Dcopies-samedir.gyp13 'copies': [
15 'destination': '<(PRODUCT_DIR)/copies-out-samedir',
26 'copies': [
28 'destination': '<(PRODUCT_DIR)/copies-out-samedir',
Dcopies-updir.gyp10 'copies': [
12 'destination': '<(PRODUCT_DIR)/../copies-out-updir',
/external/chromium_org/tools/gyp/test/generator-output/copies/
Dcopies.gyp17 'copies': [
19 'destination': 'copies-out',
29 'copies': [
31 'destination': '<(PRODUCT_DIR)/copies-out',
42 'copies': [
44 'destination': '<(PRODUCT_DIR)/copies-null',
/external/chromium/chrome/browser/resources/
Dprint_preview.js163 var copies = parseInt(copiesField.value, 10);
164 if (isNaN(copies))
165 copies = 1;
166 copiesField.value = copies;
232 var copies = parseInt($('copies').value, 10);
233 if (!copies || copies <= 1)
234 copies = 1;
235 return copies;
434 var copies = getCopies();
469 if (copies > 1) {
[all …]
/external/chromium/base/
Dbind_unittest.cc89 DerivedCopyCounter(int* copies, int* assigns) in DerivedCopyCounter()
90 : copies_(copies), assigns_(assigns) { in DerivedCopyCounter()
99 CopyCounter(int* copies, int* assigns) in CopyCounter() argument
100 : copies_(copies), assigns_(assigns) { in CopyCounter()
127 int copies() const { in copies() function in base::__anon6e9bcf080111::CopyCounter
167 return counter.copies(); in GetCopies()
489 int copies = 0; in TEST_F() local
491 CopyCounter counter(&copies, &assigns); in TEST_F()
495 EXPECT_EQ(0, copies); in TEST_F()
505 int copies = 0; in TEST_F() local
[all …]
/external/chromium_org/tools/gyp/test/generator-output/copies/subdir/
Dsubdir.gyp10 'copies': [
12 'destination': 'copies-out',
22 'copies': [
24 'destination': '<(PRODUCT_DIR)/copies-out',
/external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
Dcopies.js30 var copies = parseInt(value);
31 if (copies > 999 || copies < 1) {
67 dest.capabilities.printer.copies) ||
/external/chromium_org/base/
Dbind_unittest.cc88 DerivedCopyCounter(int* copies, int* assigns) in DerivedCopyCounter()
89 : copies_(copies), assigns_(assigns) { in DerivedCopyCounter()
98 CopyCounter(int* copies, int* assigns) in CopyCounter() argument
99 : copies_(copies), assigns_(assigns) { in CopyCounter()
126 int copies() const { in copies() function in base::__anon3cc00d0f0111::CopyCounter
187 return counter.copies(); in GetCopies()
660 int copies = 0; in TEST_F() local
662 CopyCounter counter(&copies, &assigns); in TEST_F()
666 EXPECT_EQ(0, copies); in TEST_F()
765 int copies = 0; in TEST_F() local
[all …]
/external/chromium_org/chrome/browser/resources/print_preview/data/
Dprint_ticket_store.js209 get copies() { getter in PrintTicketStore
327 return (!this.copies.isCapabilityAvailable() || this.copies.isValid()) &&
371 if (this.copies.isCapabilityAvailable() && this.copies.isUserEdited()) {
372 cjt.print.copies = {copies: this.copies.getValueAsNumber()}; property
/external/chromium_org/chrome/browser/resources/print_preview/
Dprint_header.js116 this.printTicketStore_.copies,
167 var copies = this.printTicketStore_.copies.getValueAsNumber();
168 numSheets *= copies;
169 numPages *= copies;
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
DRopeByteStringSubstringTest.java72 int copies = 250; in testToString() local
75 StringBuilder builder = new StringBuilder(copies * sourceString.length()); in testToString()
77 for (int i = 0; i < copies; ++i) { in testToString()
DRopeByteStringTest.java94 int copies = 250; in testToString() local
97 StringBuilder builder = new StringBuilder(copies * sourceString.length()); in testToString()
99 for (int i = 0; i < copies; ++i) { in testToString()
/external/llvm/test/CodeGen/SystemZ/
Dfp-copysign-01.ll10 ; Test f32 copies in which the sign comes from an f32.
20 ; Test f32 copies in which the sign comes from an f64.
31 ; Test f32 copies in which the sign comes from an f128.
44 ; Test f64 copies in which the sign comes from an f32.
55 ; Test f64 copies in which the sign comes from an f64.
65 ; Test f64 copies in which the sign comes from an f128.
78 ; Test f128 copies in which the sign comes from an f32. We shouldn't
/external/llvm/test/CodeGen/X86/
Dmisched-copy.ll6 ; Argument copies should be hoisted to the top of the block.
7 ; Return copies should be sunk to the end.
8 ; MUL_HiLo PhysReg use copies should be just above the mul.
9 ; MUL_HiLo PhysReg def copies should be just below the mul.
/external/chromium_org/printing/
Dprint_settings_initializer.cc85 int copies = 1; in InitSettings() local
88 !job_settings.GetInteger(kSettingCopies, &copies) || in InitSettings()
97 settings->set_copies(copies); in InitSettings()
Dprint_settings.h107 void set_copies(int copies) { copies_ = copies; } in set_copies() argument
108 int copies() const { return copies_; } in copies() function
/external/valgrind/main/memcheck/tests/
Dsh-mem-random.stdout.exp645 doing copies
13 doing copies
/external/chromium_org/tools/gyp/test/escaping/colon/
Dtest.gyp12 'copies': [
15 # MSVS2008 gets confused if the same file is in 'sources' and 'copies'
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
DNOTICE31 copies of the Software, and to permit persons to whom the Software is
35 all copies or substantial portions of the Software.
58 copies of the Software, and to permit persons to whom the Software is
62 all copies or substantial portions of the Software.
85 copies of the Software, and to permit persons to whom the Software is
89 all copies or substantial portions of the Software.
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
DNOTICE31 copies of the Software, and to permit persons to whom the Software is
35 all copies or substantial portions of the Software.
58 copies of the Software, and to permit persons to whom the Software is
62 all copies or substantial portions of the Software.
85 copies of the Software, and to permit persons to whom the Software is
89 all copies or substantial portions of the Software.
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
DNOTICE15 copies of the Software, and to permit persons to whom the Software is
19 all copies or substantial portions of the Software.
41 copies of the Software, and to permit persons to whom the Software is
45 all copies or substantial portions of the Software.
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
DNOTICE15 copies of the Software, and to permit persons to whom the Software is
19 all copies or substantial portions of the Software.
41 copies of the Software, and to permit persons to whom the Software is
45 all copies or substantial portions of the Software.

12345678910>>...30