/external/chromium_org/ui/views/examples/ |
double_split_view_example.cc | 21 void SetColor(SkColor from, SkColor to); 37 void SplittedView::SetColor(SkColor from, SkColor to) { 38 set_background(Background::CreateVerticalGradientBackground(from, to));
|
single_split_view_example.cc | 20 void SetColor(SkColor from, SkColor to); 38 void SplittedView::SetColor(SkColor from, SkColor to) { 39 set_background(Background::CreateVerticalGradientBackground(from, to));
|
/external/chromium_org/v8/src/ |
hydrogen-minus-zero.cc | 13 // contributors may be used to endorse or promote products derived 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 41 // int32-to-tagged and int32-to-double. 45 ASSERT(change->to().IsTagged() || 46 change->to().IsDouble() || 47 change->to().IsSmiOrInteger32()); 62 // For phis, we must propagate the check to all of its inputs. 73 // to the left and the right side [all...] |
regexp-stack.cc | 13 // contributors may be used to endorse or promote products derived 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 58 char* RegExpStack::ArchiveStack(char* to) { 60 OS::MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); 62 return to + size;
|
/external/clang/test/Sema/ |
parentheses.cpp | 8 // expected-note {{place parentheses around the '+' expression to silence this warning}} \ 9 // expected-note {{place parentheses around the '?:' expression to evaluate it first}} 16 // expected-note {{place parentheses around the '-' expression to silence this warning}} \ 17 // expected-note {{place parentheses around the '?:' expression to evaluate it first}} 24 // expected-note {{place parentheses around the '*' expression to silence this warning}} \ 25 // expected-note {{place parentheses around the '?:' expression to evaluate it first}} 43 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \ 44 // expected-note {{place parentheses around the '?:' expression to evaluate it first}} 51 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \ 52 // expected-note {{place parentheses around comparison expression to evaluate it first} [all...] |
/external/icu4c/i18n/ |
ztrans.h | 22 * A TimeZoneTransition. Use the ztrans_* API to manipulate. Create with 36 * @param to The time zone rule used after the transition. 39 ztrans_open(UDate time, const void* from, const void* to); 50 * @param trans the object to dispose of 64 * Returns true if trans1 is identical to trans2 66 * @param trans1 to be checked for containment 67 * @param trans2 to be checked for containment 75 * param trans, the transition to use 83 * param trans, the transition to use 91 * param trans, the transition to us [all...] |
/external/libpng/projects/visualc71/ |
README_zlib.txt | 2 It is expected to be part of the next zlib release under 12 To use: 19 3) Set one of the project as the StartUp project. If you just want to build the 21 Project | Set as StartUp project). If you want to build and test the 22 binaries set it to "example" (Select "example" tree view item + Project | 23 Set as StartUp project), If you want to build the minigzip utility set it to 28 Choose the configuration you wish to build.
|
/external/libvorbis/doc/ |
01-introduction.tex | 16 Vorbis is a general purpose perceptual audio CODEC intended to allow 17 maximum encoder flexibility, thus allowing it to scale competitively 22 without resampling to a lower rate. Vorbis is also intended for 23 lower and higher sample rates (from 8kHz telephony to 192kHz digital 25 polyphonic, stereo, quadraphonic, 5.1, ambisonic, or up to 255 31 Modified Discrete Cosine Transform. The codec is structured to allow 32 addition of a hybrid wavelet filterbank in Vorbis II to offer better 33 transient response and reproduction using a transform better suited to 46 to which they are pre-decoded into a cache is the dominant factor in 59 decodable; this is not to be considered an error condition and is use [all...] |
/external/llvm/test/MC/X86/AlignedBundling/ |
pad-align-to-bundle-end.s | 4 # Test some variations of padding to the end of a bundle. 16 # To align this group to a bundle end, we need a 1-byte NOP. 26 # Here we have to pad until the end of the *next* boundary because
|
/external/mesa3d/src/gallium/auxiliary/rbug/ |
rbug_internal.h | 5 * Permission is hereby granted, free of charge, to any person obtaining a 7 * to deal in the Software without restriction, including without limitation 8 * on the rights to use, copy, modify, merge, publish, distribute, sub 9 * license, and/or sell copies of the Software, and to permit persons to whom 10 * the Software is furnished to do so, subject to the following conditions: 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 26 * This file is internal to the rbug protocol code, and contains asorted 46 #define PAD(from, to) \ [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
MinSEParser.java | 23 * @param text is the text of the header to parse 68 String to[] = local 73 for (int i = 0; i < to.length; i++) { 74 MinSEParser tp = new MinSEParser(to[i]);
|
SessionExpiresParser.java | 19 * @param text is the text of the header to parse 66 String to[] = local 71 for (int i = 0; i < to.length; i++) { 72 SessionExpiresParser tp = new SessionExpiresParser(to[i]);
|
/external/v8/src/ |
regexp-stack.cc | 13 // contributors may be used to endorse or promote products derived 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 57 char* RegExpStack::ArchiveStack(char* to) { 59 memcpy(reinterpret_cast<void*>(to), 63 return to + size;
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
fldcw_check.S | 10 # fldcw is most often used to set the rouding mode when doing 11 # floating point to integer conversions 18 # these are instructions with similar encodings to fldcw 54 # Hence the need to hand-code them 126 # in a loop to give a bigger count 132 fnstcw saved_cw # store control word to mem 134 movb $12, %ah # set cw for "round to zero" 135 movw %rax, cw # store back to memory 137 fistpl result # save stack value as integer to mem 140 loop big_loop # loop to make the count more obviou [all...] |
/external/valgrind/main/exp-bbv/tests/x86/ |
fldcw_check.S | 10 # fldcw is most often used to set the rouding mode when doing 11 # floating point to integer conversions 20 # these are instructions with similar encodings to fldcw 80 # in a loop to give a bigger count 86 fnstcw saved_cw # store control word to mem 88 movb $12, %ah # set cw for "round to zero" 89 movw %ax, cw # store back to memory 91 fistpl result # save stack value as integer to mem 94 loop big_loop # loop to make the count more obvious 96 movl result, %ebx # sanity check to see if th [all...] |
million.S | 1 # many thanks to David Fang 2 # for providing an OSX 10.5 machine to test on 9 xor %ecx,%ecx # not needed, pads total to 1M
|
/external/chromium_org/remoting/webapp/ |
host_native_messaging.js | 7 * Class to communicate with the Host components via Native Messaging. 45 * @param {?function(...):void} onDone The callback, if any, to be triggered 47 * @param {function(remoting.Error):void} onError The callback to be triggered 58 * Sets up connection to the Native Messaging host process and exchanges 60 * process is not installed, this returns false to the callback. 74 // NativeMessaging API exists on Chrome 26.xxx but fails to notify 76 // to blacklist these versions of Chrome. 102 * @param {string} name Name of the object, to be included in the error log. 103 * @param {*} object Object to test. 109 console.error('NativeMessaging: "' + name + '" expected to be of type "' [all...] |
host_plugin_proto.js | 6 // with JSCompiler to verify the type-correctness of our code. 24 /** @param {function(string):string} callback Pointer to chrome.i18n.getMessage. 28 /** @param {function(string):void} callback Callback to be called with the 35 * @param {function(string):void} callback Callback to be called with the hash 40 /** @param {function(string, string):void} callback Callback to be called 55 * Callback to be called when finished. 60 /** @param {function(string):void} callback Callback to be called with 65 /** @param {function(string):void} callback Callback to be called with 70 /** @param {function(boolean, boolean, boolean):void} callback Callback to be 77 * Callback to be called when finished [all...] |
/external/chromium_org/chrome/browser/resources/ |
flags.js | 6 * This variable structure is here to document the structure that the template 7 * expects to correctly populate the page. 22 // Add handlers to dynamically created HTML elements. 58 * Highlight an element associated with the page's location's hash. We need to 78 * Asks the C++ FlagsDOMHandler to get details about the available experiments 80 * should reply to returnFlagsExperiments() (below). 87 * Asks the C++ FlagsDOMHandler to restart the browser (restoring tabs). 94 * Reset all flags to their default values and refresh the UI. 97 // Asks the C++ FlagsDOMHandler to reset all flags to default values [all...] |
/ndk/sources/host-tools/sed-4.2.1/sed/ |
execute.c | 16 along with this program; if not, write to the Free Software 89 char *text; /* Pointer to line allocated by malloc. */ 90 char *active; /* Pointer to non-consumed part of text. */ 105 /* A queue of text to write out at the end of a cycle 117 /* The list of yet-to-be-opened files. It is invalid for file_list 118 to be NULL. When *file_list is NULL we are currently processing 123 /* Count of files we failed to open. */ 130 starting to process the next (possibly the first) file. */ 133 /* Function to read one line. If FP is NULL, read_fn better not 142 /* Owner and mode to be set just before closing the file. * [all...] |
/external/chromium_org/chrome/browser/resources/print_preview/ |
print_preview_utils.js | 6 * @param {string} toTest The string to be tested. 17 * @param {string} value The string to be tested. 26 * @param {Array.<{from: number, to: number}>} array1 The first array. 27 * @param {Array.<{from: number, to: number}>} array2 The second array. 50 array1[i].to != array2[i].to) { 59 * @param {Array.<number>} inArray The array to be processed. 80 * greater the 0 and less or equal to |totalPageCount| unless wildcards are 90 * Example: "2-" is valid, assuming |totalPageCount| >= 2, means from 2 to the 95 * @param {string} pageRangeText The text to be checked [all...] |
/external/chromium_org/v8/test/mjsunit/ |
double-equals.js | 13 // contributors may be used to endorse or promote products derived 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 30 * assertEquals(..., ...) to not rely on the details of the 54 // Object where ToPrimitive returns value by failover to toString when 65 // Numbers are equal if same, unless NaN, which isn't equal to anything, and 99 // Null and undefined are equal to themselves. 130 // Null and undefined are equal to each-other, and to nothing else. 145 // Numbers compared to Strings will convert the string to a number usin [all...] |
/external/v8/test/mjsunit/ |
double-equals.js | 13 // contributors may be used to endorse or promote products derived 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 30 * assertEquals(..., ...) to not rely on the details of the 54 // Object where ToPrimitive returns value by failover to toString when 65 // Numbers are equal if same, unless NaN, which isn't equal to anything, and 99 // Null and undefined are equal to themselves. 130 // Null and undefined are equal to each-other, and to nothing else. 145 // Numbers compared to Strings will convert the string to a number usin [all...] |
/external/chromium_org/chrome/browser/resources/standalone/ |
standalone_hack.js | 7 * This file contains the code necessary to make the Touch LIS work 8 * as a stand-alone application (as opposed to being embedded into chrome). 69 // We don't want to hand out our array directly because the NTP will 70 // assume it owns the array and is free to modify it. For now we make a 77 * Like Array.prototype.indexOf but calls a predicate to test for match 79 * @param {Array} array The array to search. 80 * @param {function(Object): boolean} predicate The function to invoke on 94 * Requires the specified app to be present 96 * @param {string} id The ID of the application to locate. 109 * @param {string} name The user name to search for [all...] |
/ndk/build/core/ |
add-application.mk | 9 # Unless required by applicable law or agreed to in writing, software 16 # this script is used to record an application definition in the 20 # variable named '_application_mk' which points to a given Application.mk 22 # to describe the application to the build system, and the rest of the 34 # We set APP_DEBUG to <undefined>, 'true' or 'false'. 45 $(call __ndk_warning,NDK_DEBUG is defined to the unsupported value '$(NDK_DEBUG)', will be ignored!) 65 # revert to the default value (i.e. "android-3"). 79 $(call ndk_log, Defaulted to APP_PLATFORM=$(APP_PLATFORM)) 92 $(call ndk_log, Adjusting APP_PLATFORM android-$(APP_PLATFORM_LEVEL) to $(APP_PLATFORM) [all...] |