/external/chromium_org/third_party/skia/src/effects/ |
SkColorMatrixFilter.cpp | 200 static int32_t pin(int32_t value, int32_t max) { function 260 r = pin(result[0], SK_R32_MASK); 261 g = pin(result[1], SK_G32_MASK); 262 b = pin(result[2], SK_B32_MASK); 263 a = pin(result[3], SK_A32_MASK); 294 r = pin(result[0], SK_R32_MASK); 295 g = pin(result[1], SK_G32_MASK); 296 b = pin(result[2], SK_B32_MASK); 390 // We pin the color to [0,1]. This would happen to the *final* color output from the frag 391 // shader but currently the effect does not pin its own output. So in the case of over [all...] |
/external/chromium_org/media/video/capture/win/ |
pin_base_win.h | 5 // Implement a simple base class for a DirectShow input pin. It may only be 33 // Checks if a media type is acceptable. This is called when this pin is 34 // connected to an output pin. Must return true if the media type is 42 // thread as where the pin is created. 52 STDMETHOD(ConnectedTo)(IPin** pin); 100 // owner_ is the filter owning this pin. We don't reference count it since
|
/external/chromium_org/third_party/libxml/src/ |
regressions.py | 153 pin, pout, perr = os.popen3(cmd) 156 pin.writelines(infile.readlines()) 158 pin.close() 197 pin.close()
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/ |
filterbanks.c | 83 void WebRtcIsac_SplitAndFilterFloat(float *pin, float *LP, float *HP, 101 in[k] = pin[k] + kHpStCoefInFloat[2] * prefiltdata->HPstates_float[0] + 103 ftmp = pin[k] - kHpStCoefInFloat[0] * prefiltdata->HPstates_float[0] -
|
/external/chromium_org/chromeos/dbus/ |
fake_shill_device_client.cc | 130 const std::string& pin, 135 if (pin != kSimPin) { 166 const std::string& pin, 170 if (pin != kSimPin) { 185 const std::string& pin,
|
/external/arduino/hardware/arduino/cores/arduino/ |
wiring.h | 122 unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout);
|
/external/chromium_org/remoting/client/jni/ |
chromoting_jni_instance.h | 69 // Provides the user's PIN and resumes the host authentication attempt. Call 70 // on the UI thread once the user has finished entering this PIN into the UI, 71 // but only after the UI has been asked to provide a PIN (via FetchSecret()). 72 void ProvideSecret(const std::string& pin, bool create_pair, 126 // Notifies the user interface that the user needs to enter a PIN. The 168 // Pass this the user's PIN once we have it. To be assigned and accessed on
|
chromoting_jni_instance.cc | 169 void ChromotingJniInstance::ProvideSecret(const std::string& pin, 181 base::Bind(pin_callback_, pin));
|
chromoting_jni_runtime.cc | 99 jstring pin, 103 ConvertJavaStringToUTF8(env, pin).c_str(), createPair,
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
RendererOneColorBufferTest.java | 213 int [] pin = pinbuffer.array(); local 214 int pixel = pin[0];
|
/external/chromium_org/remoting/webapp/browser_test/ |
update_pin_browser_test.js | 9 * 1. Change the PIN. 10 * 2. Connect with the new PIN. 12 * 4. Disconnect and reconnect with the old PIN. 27 'The new PIN and the old PIN cannot be the same'); 41 // Clean up the test by disconnecting and changing the PIN back 44 // The PIN must be restored regardless of success or failure. 58 browserTest.clickOnControl('change-daemon-pin');
|
mock_client_plugin.js | 111 remoting.MockClientPlugin.prototype.onPinFetched = function(pin) {};
|
bump_scroll_browser_test.js | 41 browserTest.expect(typeof data.pin == 'string'); 52 return browserTest.enterPIN(data.pin);
|
/external/fio/os/ |
os-android.h | 72 struct ashmem_pin pin = {0 , length}; local 73 ret = ioctl(__shmid, ASHMEM_UNPIN, &pin);
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
host_file_system_provider.py | 54 |commit| if non-None determines a specific commit to pin the host file
|
/external/chromium_org/chromeos/network/ |
network_device_handler_impl.cc | 339 const std::string& pin, 344 pin, local 352 const std::string& pin, 357 pin, local
|
/external/chromium_org/remoting/webapp/ |
event_handlers.js | 83 { event: 'click', id: 'change-daemon-pin', 87 { event: 'click', id: 'daemon-pin-cancel', fn: goHome },
|
host_daemon_facade.js | 310 * Calculates PIN hash value to be stored in the config, passing the resulting 314 * @param {string} pin The PIN. 320 function(hostId, pin, onDone, onError) { 324 pin: pin
|
main.css | 584 #ask-pin-form .table-label { 590 #ask-pin-form > div { 669 #remember-pin { 688 #set-pin-table td {
|
client_plugin.js | 56 * @param {string} sharedSecret The access code for IT2Me or the PIN 132 * Tell the plugin to request a PIN asynchronously. 147 * Called when a PIN is obtained from the user. 149 * @param {string} pin The PIN. 151 remoting.ClientPlugin.prototype.onPinFetched = function(pin) {}; 261 * @param {function(boolean):void} handler Callback for fetching a PIN from 262 * the user. The parameter is true if PIN pairing is supported by the
|
ui_mode.js | 36 CLIENT_PIN_PROMPT: 'home.client.pin-prompt', 47 HOST_SETUP_ASK_PIN: 'home.host-setup.ask-pin',
|
/external/bluetooth/bluedroid/btif/src/ |
btif_dm.c | 820 ** Description Executes pin request event in btif context 869 pin_code.pin[0] = 0x30; 870 pin_code.pin[1] = 0x30; 871 pin_code.pin[2] = 0x30; 872 pin_code.pin[3] = 0x30; 875 BTA_DmPinReply( (UINT8*)bd_addr.address, TRUE, 4, pin_code.pin); 886 pin_code.pin[0] = 0x30; 887 pin_code.pin[1] = 0x30; 888 pin_code.pin[2] = 0x30; 889 pin_code.pin[3] = 0x30 [all...] |
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_strip_model.cc | 283 bool pin = extensions_tab_helper->is_app() || add_types & ADD_PINNED; local 284 index = ConstrainInsertionIndex(index, pin); 297 data->set_pinned(pin); 1022 bool pin = WillContextMenuPin(context_index); local [all...] |
/external/chromium_org/chrome/test/remoting/ |
remote_desktop_browsertest.cc | 493 EXPECT_TRUE(result) << "Cannot start the host with Pin:" << me2me_pin(); 507 // Enter the pin # passed in from the command line. 528 // Enter the pin # passed in from the command line. 727 void RemoteDesktopBrowserTest::EnterPin(const std::string& pin, 729 // Wait for the pin-form to be displayed. This can take a while. 732 // called when the pin-form is ready? 743 "document.getElementById(\"pin-entry\").value = \"" + pin + "\";"); 746 EXPECT_TRUE(HtmlElementVisible("remember-pin")); 748 "document.getElementById('remember-pin-checkbox').checked")) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
RangeConstraintManager.cpp | 149 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { function in class:__anon22893::RangeSet 173 // The range starts below what's possible but ends within it. Pin. 178 // The range spans all possible values for the symbol. Pin. 197 // The range starts within what's possible but ends above it. Pin. 240 if (!pin(Lower, Upper))
|