/external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/ |
options.js | 12 options.frequency.disabled = isDeactivated; // The control manipulability. 19 options.frequency.value = localStorage.frequency; 20 // The display frequency, in minutes. 24 // Set the display activation and frequency. 30 options.frequency.onchange = function() { 31 localStorage.frequency = options.frequency.value;
|
background.js | 25 localStorage.frequency = 1; // The display frequency, in minutes. 31 // While activated, show notifications at the display frequency. 41 localStorage.frequency <= interval
|
/external/llvm/include/llvm/Support/ |
BlockFrequency.h | 1 //===-------- BlockFrequency.h - Block Frequency Wrapper --------*- C++ -*-===// 10 // This file implements Block Frequency class. 24 // This class represents Block Frequency as a 64-bit value. 27 uint64_t Frequency; 30 // Scale frequency by N/D, saturating on overflow. 34 BlockFrequency(uint64_t Freq = 0) : Frequency(Freq) { } 36 /// \brief Returns the frequency of the entry block of the function. 39 /// \brief Returns the maximum possible frequency, the saturation value. 42 /// \brief Returns the frequency as a fixpoint number scaled by the entry 43 /// frequency [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/notifications/ |
options.html | 41 options.frequency.disabled = isDeactivated; // The control manipulability. 48 options.frequency.value = localStorage.frequency; 49 // The display frequency, in minutes. 53 // Set the display activation and frequency. 59 options.frequency.onchange = function() { 60 localStorage.frequency = options.frequency.value; 72 <select name="frequency">
|
/external/oprofile/libutil/ |
op_cpufreq.h | 3 * get cpu frequency declaration 20 * return the estimated cpu frequency in Mhz through
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnWord.java | 32 public int frequency; field in class:WnnWord 60 * @param frequency The score of word 62 public WnnWord(String candidate, String stroke, int frequency) { 63 this(0, candidate, stroke, new WnnPOS(), frequency, 0); 83 * @param frequency The score of word 85 public WnnWord(String candidate, String stroke, WnnPOS posTag, int frequency) { 86 this(0, candidate, stroke, posTag, frequency, 0); 96 * @param frequency The score of word 98 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency) { 99 this(id, candidate, stroke, posTag, frequency, 0) [all...] |
WnnClause.java | 32 * @param frequency The frequency of the clause 34 public WnnClause(String candidate, String stroke, WnnPOS posTag, int frequency) { 38 frequency); 52 stem.frequency, 68 stem.frequency,
|
WnnSentence.java | 43 this.frequency = 0; 54 this.frequency = headClause.frequency; 69 this.frequency = headClause.frequency; 86 this.frequency = clause.frequency; 104 this.frequency = prev.frequency + clause.frequency; [all...] |
/external/libnfc-nci/src/nfa/dm/ |
nfa_dm_cfg.c | 60 /* the RF Discovery Frequency for each technology */ 63 1, /* Frequency for NFC Technology A */ 64 1, /* Frequency for NFC Technology B */ 65 1, /* Frequency for NFC Technology F */ 66 1, /* Frequency for Proprietary Technology/15693 */ 67 1, /* Frequency for Proprietary Technology/B-Prime */ 68 1, /* Frequency for Proprietary Technology/Kovio */ 69 1, /* Frequency for NFC Technology A active mode */ 70 1 /* Frequency for NFC Technology F active mode */
|
/external/chromium_org/third_party/WebKit/ManualTests/webaudio/ |
limit-level-0db.html | 11 var frequency = 1000; 16 oscillator.frequency.value = frequency; 25 oscillator.frequency.value = frequency;
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowScanResult.java | 14 public static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int frequency) { 20 scanResult.frequency = frequency; 31 .append(", frequency: ").append(realObject.frequency)
|
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/ |
exynos_parser_test.js | 31 'exynos_busfreq_target_int: frequency=200000', 33 'exynos_busfreq_target_int: frequency=267000', 35 'exynos_busfreq_target_int: frequency=160000', 37 'exynos_busfreq_target_mif: frequency=200000' 44 assertEquals(3, c0.counters['INT Frequency'].series[0].samples.length); 45 assertEquals(1, c0.counters['MIF Frequency'].series[0].samples.length);
|
/external/llvm/lib/Support/ |
BlockFrequency.cpp | 10 // This file implements Block Frequency class. 70 // Calculate Frequency * N. 71 uint64_t MulLo = (Frequency & UINT32_MAX) * N; 72 uint64_t MulHi = (Frequency >> 32) * N; 77 Frequency = MulRes / D; 84 mult96bit(Frequency, N, W); 85 Frequency = div96bit(W, D); 96 BlockFrequency Freq(Frequency); 107 BlockFrequency Freq(Frequency); 113 uint64_t Before = Freq.Frequency; [all...] |
/frameworks/base/core/java/android/provider/ |
UserDictionary.java | 30 * frequency information and locale information. 75 * The frequency column. A value between 1 and 255. Higher values imply higher frequency. 78 public static final String FREQUENCY = "frequency"; 112 * Sort by descending order of frequency. 114 public static final String DEFAULT_SORT_ORDER = FREQUENCY + " DESC"; 116 /** Adds a word to the dictionary, with the given frequency and the specified 130 int frequency, int localeType) { 144 addWord(context, word, frequency, null, locale) [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
WifiAssociationTestRunner.java | 33 * The instrument will set frequency band if it is necessary 38 * -e security-type [OPEN|WEP64|WEP128|WPA_TKIP|WPA2_AES] -e frequency-band [2.4|5.0|auto] 61 String mFrequencyBand = arguments.getString("frequency-band"); 70 Log.v(TAG, "set frequency band to 2.4"); 73 Log.v(TAG, "set frequency band to 5.0"); 76 Log.v(TAG, "set frequency band to auto"); 79 Assert.fail("invalid frequency band"); 83 Log.v(TAG, "frequency band has been set");
|
/external/chromium_org/chromeos/test/data/network/ |
shill_wifi_psk.json | 10 "WiFi.Frequency": 2412,
|
/external/kernel-headers/original/asm-x86/ |
param.h | 5 # define HZ CONFIG_HZ /* Internal kernel timer frequency */
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
Biquad.h | 55 // frequency is 0 - 1 normalized, resonance and dbGain are in decibels. 57 void setLowpassParams(double frequency, double resonance); 58 void setHighpassParams(double frequency, double resonance); 59 void setBandpassParams(double frequency, double Q); 60 void setLowShelfParams(double frequency, double dbGain); 61 void setHighShelfParams(double frequency, double dbGain); 62 void setPeakingParams(double frequency, double Q, double dbGain); 63 void setAllpassParams(double frequency, double Q); 64 void setNotchParams(double frequency, double Q); 81 const float* frequency, [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
SimpleAbstractMultisetTest.java | 72 Integer frequency = backingMap.get(element); local 73 if (frequency == null) { 74 frequency = 0; 77 return frequency; 79 checkArgument(occurrences <= Integer.MAX_VALUE - frequency); 80 backingMap.put(element, frequency + occurrences); 81 return frequency; 104 Integer frequency = backingMap.get(getElement()); local 105 return (frequency == null) ? 0 : frequency; [all...] |
/external/webrtc/src/common_audio/vad/ |
vad_filterbank.h | 26 * This function removes DC from the lowest frequency band 29 * - in_vector : Samples in the frequency interval 0 - 250 Hz 34 * - out_vector : Samples in the frequency interval 80 - 250 Hz 47 * different frequency bands 72 * different frequency bands 75 * - in_vector : Input signal to be split into two frequency bands. 98 * 6 frequency bands used by the VAD: 125 * This function is used to get the logarithm of the power of one frequency band. 128 * - vector : Input speech samples for one frequency band 129 * - offset : Offset value for the current frequency ban [all...] |
/system/media/audio_effects/include/audio_effects/ |
effect_equalizer.h | 35 EQ_PARAM_NUM_BANDS, // Gets the number of frequency bands that the equalizer 39 EQ_PARAM_CENTER_FREQ, // Gets the center frequency of the given band. 40 EQ_PARAM_BAND_FREQ_RANGE, // Gets the frequency range of the given frequency band. 42 // frequency.
|
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/ |
p2p_group_add.py | 17 print " [-f <frequency>] [-o <group_object_path>] \ " 22 print " -f = frequency" 51 global frequency 64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency, 70 self.frequency = frequency 126 if (self.frequency != None): 127 if (int(self.frequency) > 0): 128 self.P2PDictionary.update({'frequency':int(self.frequency)}) 160 frequency = None variable [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
timex.h | 28 * Added defines for hybrid phase/frequency-lock loop. 71 #define SHIFT_PLL 4 /* PLL frequency factor (shift) */ 72 #define SHIFT_FLL 2 /* FLL frequency factor (shift) */ 81 * time_tolerance variables, which represent the current frequency 82 * offset and maximum frequency tolerance. 85 #define SHIFT_USEC 16 /* frequency offset scale (shift) */ 86 #define SHIFT_NSEC 12 /* kernel frequency offset scale */ 89 #define MAXFREQ (512L << SHIFT_USEC) /* max frequency error (ppm) */ 90 #define MAXFREQ_NSEC (512000L << SHIFT_NSEC) /* max frequency error (ppb) */ 102 long freq; /* frequency offset (scaled ppm) * [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
timex.h | 28 * Added defines for hybrid phase/frequency-lock loop. 71 #define SHIFT_PLL 4 /* PLL frequency factor (shift) */ 72 #define SHIFT_FLL 2 /* FLL frequency factor (shift) */ 81 * time_tolerance variables, which represent the current frequency 82 * offset and maximum frequency tolerance. 85 #define SHIFT_USEC 16 /* frequency offset scale (shift) */ 86 #define SHIFT_NSEC 12 /* kernel frequency offset scale */ 89 #define MAXFREQ (512L << SHIFT_USEC) /* max frequency error (ppm) */ 90 #define MAXFREQ_NSEC (512000L << SHIFT_NSEC) /* max frequency error (ppb) */ 102 long freq; /* frequency offset (scaled ppm) * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
timex.h | 28 * Added defines for hybrid phase/frequency-lock loop. 71 #define SHIFT_PLL 4 /* PLL frequency factor (shift) */ 72 #define SHIFT_FLL 2 /* FLL frequency factor (shift) */ 81 * time_tolerance variables, which represent the current frequency 82 * offset and maximum frequency tolerance. 85 #define SHIFT_USEC 16 /* frequency offset scale (shift) */ 86 #define SHIFT_NSEC 12 /* kernel frequency offset scale */ 89 #define MAXFREQ (512L << SHIFT_USEC) /* max frequency error (ppm) */ 90 #define MAXFREQ_NSEC (512000L << SHIFT_NSEC) /* max frequency error (ppb) */ 102 long freq; /* frequency offset (scaled ppm) * [all...] |