/external/chromium_org/content/browser/renderer_host/ |
D | compositing_iosurface_shader_programs_mac.cc | 286 GLuint CompileAndLinkProgram(ShaderProgram which, bool output_swap_rb) { in CompileAndLinkProgram() argument 287 TRACE_EVENT1("gpu", "CompileAndLinkProgram", "program", which); in CompileAndLinkProgram() 291 CompileShaderGLSL(which, GL_VERTEX_SHADER, false); in CompileAndLinkProgram() 293 CompileShaderGLSL(which, GL_FRAGMENT_SHADER, output_swap_rb); in CompileAndLinkProgram() 391 const int which = SHADER_PROGRAM_RGB_TO_YV12__1_OF_2 + pass_number - 1; in UseRGBToYV12Program() local 392 DCHECK_GE(which, SHADER_PROGRAM_RGB_TO_YV12__1_OF_2); in UseRGBToYV12Program() 393 DCHECK_LE(which, SHADER_PROGRAM_RGB_TO_YV12__2_OF_2); in UseRGBToYV12Program() 395 const GLuint program = GetShaderProgram(which); in UseRGBToYV12Program() 399 BindUniformTextureVariable(which, 0); in UseRGBToYV12Program() 400 if (which == SHADER_PROGRAM_RGB_TO_YV12__1_OF_2) { in UseRGBToYV12Program() [all …]
|
D | compositing_iosurface_transformer_mac.cc | 270 CachedTexture which, const gfx::Size& size) { in PrepareTexture() argument 271 DCHECK_GE(which, 0); in PrepareTexture() 272 DCHECK_LT(which, NUM_CACHED_TEXTURES); in PrepareTexture() 275 if (!textures_[which]) { in PrepareTexture() 276 glGenTextures(1, &textures_[which]); in PrepareTexture() 277 DCHECK_NE(textures_[which], 0u); in PrepareTexture() 278 texture_sizes_[which] = gfx::Size(); in PrepareTexture() 282 if (texture_sizes_[which] != size) { in PrepareTexture() 284 "which", which, in PrepareTexture() 286 glBindTexture(texture_target_, textures_[which]); in PrepareTexture() [all …]
|
/external/icu4c/common/ |
D | uprops.cpp | 48 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which); 61 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which)… in caseBinaryPropertyContains() argument 62 return ucase_hasBinaryProperty(c, which); in caseBinaryPropertyContains() 96 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) { in isNormInert() argument 99 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode); in isNormInert() 280 u_hasBinaryProperty(UChar32 c, UProperty which) { in u_hasBinaryProperty() argument 282 if(which<UCHAR_BINARY_START || UCHAR_BINARY_LIMIT<=which) { in u_hasBinaryProperty() 286 const BinaryProperty &prop=binProps[which]; in u_hasBinaryProperty() 287 return prop.contains(prop, c, which); in u_hasBinaryProperty() 293 typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UProperty which); [all …]
|
/external/chromium_org/third_party/icu/source/common/ |
D | uprops.cpp | 48 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which); 61 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which)… in caseBinaryPropertyContains() argument 62 return ucase_hasBinaryProperty(c, which); in caseBinaryPropertyContains() 96 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) { in isNormInert() argument 99 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode); in isNormInert() 280 u_hasBinaryProperty(UChar32 c, UProperty which) { in u_hasBinaryProperty() argument 282 if(which<UCHAR_BINARY_START || UCHAR_BINARY_LIMIT<=which) { in u_hasBinaryProperty() 286 const BinaryProperty &prop=binProps[which]; in u_hasBinaryProperty() 287 return prop.contains(prop, c, which); in u_hasBinaryProperty() 319 typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UProperty which); [all …]
|
/external/checkpolicy/ |
D | policy_define.h | 16 avrule_t *define_cond_compute_type(int which); 18 avrule_t *define_cond_te_avtab(int which); 27 int define_default_user(int which); 28 int define_default_role(int which); 29 int define_default_range(int which); 31 int define_compute_type(int which); 59 int define_te_avtab(int which);
|
/external/oprofile/include/ |
D | sstream | 46 stringbuf(int which=ios::in|ios::out) 47 : streambuf(), mode(static_cast<ios::open_mode>(which)), 54 stringbuf(const string &str, int which=ios::in|ios::out) 55 : streambuf(), mode(static_cast<ios::open_mode>(which)), 141 seekoff(off_type off, ios::seek_dir way, int which = ios::in | ios::out) 144 bool testin = which & ios::in && mode & ios::in; 145 bool testout = which & ios::out && mode & ios::out; 197 seekpos(pos_type sp, int which = ios::in | ios::out) 199 pos_type ret = seekoff(sp, ios::beg, which); 238 istringstream(int which=ios::in) [all …]
|
/external/clang/test/Rewriter/ |
D | objc-bool-literal-check-modern.mm | 15 BOOL which (int flag) { function 20 which (__objc_yes); 21 which (__objc_no); 27 // CHECK: which (((bool)1)); 28 // CHECK: which (((bool)0));
|
/external/clang/test/SemaObjC/ |
D | nonnull.m | 34 …func1(0, cp2, i1); // expected-warning {{null passed to a callee which requires a non-null argume… 35 …func1(cp1, 0, i1); // expected-warning {{null passed to a callee which requires a non-null argume… 39 …func3(0, i2, cp3, i3); // expected-warning {{null passed to a callee which requires a non-null arg… 40 …func3(cp3, i2, 0, i3); // expected-warning {{null passed to a callee which requires a non-null ar… 42 func4(0, cp1); // expected-warning {{null passed to a callee which requires a non-null argument}} 43 func4(cp1, 0); // expected-warning {{null passed to a callee which requires a non-null argument}} 67 …_dispatch_queue_push_list(0); // expected-warning {{null passed to a callee which requires a non-n… 90 …NullPointer:NULL:1:NULL]; // expected-warning 2 {{null passed to a callee which requires a non-nul… 91 …hNonNullPointer:vp:1:NULL]; // expected-warning {{null passed to a callee which requires a non-nul… 92 …syWithNonNullPointer:NULL]; // expected-warning {{null passed to a callee which requires a non-nul… [all …]
|
/external/clang/tools/diag-build/ |
D | diag-build.sh | 29 elif [[ ! -z $(which clang) ]]; then 30 CC=$(which clang) 42 elif [[ ! -z $(which clang++) ]]; then 43 CXX=$(which clang++) 49 diagtool=$(which diagtool)
|
/external/chromium_org/net/third_party/nss/patches/ |
D | cipherorder.patch | 10 + * which must be an array of cipher suite ids of length |len|. All the given 23 @@ -12423,6 +12423,46 @@ ssl3_CipherPrefGet(sslSocket *ss, ssl3CipherSuite which, PRBool *enabled) 74 @@ -1711,6 +1711,8 @@ extern SECStatus ssl3_CipherPrefSet(sslSocket *ss, ssl3CipherSuite which, PRB… 75 extern SECStatus ssl3_CipherPrefGet(sslSocket *ss, ssl3CipherSuite which, PRBool *on); 76 extern SECStatus ssl2_CipherPrefSet(sslSocket *ss, PRInt32 which, PRBool enabled); 77 extern SECStatus ssl2_CipherPrefGet(sslSocket *ss, PRInt32 which, PRBool *enabled); 81 extern SECStatus ssl3_SetPolicy(ssl3CipherSuite which, PRInt32 policy); 82 extern SECStatus ssl3_GetPolicy(ssl3CipherSuite which, PRInt32 *policy); 87 @@ -1344,6 +1344,19 @@ SSL_CipherPrefSet(PRFileDesc *fd, PRInt32 which, PRBool enabled) 105 SSL_CipherPrefGet(PRFileDesc *fd, PRInt32 which, PRBool *enabled)
|
/external/llvm/test/CodeGen/SystemZ/ |
D | int-mul-05.ll | 1 ; Test 32-bit multiplication in which the second operand is constant. 5 ; Check multiplication by 2, which should use shifts. 32 ; Check the next value up, which should use shifts. 41 ; Check the next value up again, which can use MSFI. 59 ; Check the next value up, which should use shifts. 68 ; Check the next value up again, which is treated as a negative value. 77 ; Check multiplication by -1, which is a negation. 86 ; Check multiplication by -2, which should use shifts. 114 ; Check the next value down, which should use shifts. 124 ; Check the next value down again, which can use MSFI. [all …]
|
D | int-mul-06.ll | 1 ; Test 64-bit multiplication in which the second operand is constant. 5 ; Check multiplication by 2, which should use shifts. 32 ; Check the next value up, which should use shifts. 41 ; Check the next value up again, which can use MSGFI. 59 ; Check the next value up, which should use shifts. 68 ; Check the next value up again, which cannot use a constant multiplicatoin. 77 ; Check multiplication by -1, which is a negation. 86 ; Check multiplication by -2, which should use shifts. 114 ; Check the next value down, which should use shifts. 124 ; Check the next value down again, which can use MSGFI. [all …]
|
D | int-const-02.ll | 23 ; Check the next value up, which must use LLILL instead. 39 ; Check the first useful LLILH value, which is the next one up. 47 ; Check the first useful LGFI value, which is the next one up again. 63 ; Check the next value up, which should use LLILH instead. 71 ; Check the next value up again, which should use LLILF. 87 ; Check the next value up, which must use LLILF. 103 ; Check the lowest useful LLIHL value, which is the next one up. 111 ; Check the next value up, which must use a combination of two instructions. 129 ; Check the next value up, which should use OILH instead. 138 ; Check the next value up again, which should use OILF. [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
D | CustomElementCallbackInvocation.cpp | 60 …(PassRefPtr<CustomElementLifecycleCallbacks>, CustomElementLifecycleCallbacks::CallbackType which); 68 …tr<CustomElementLifecycleCallbacks> callbacks, CustomElementLifecycleCallbacks::CallbackType which) in AttachedDetachedInvocation() argument 70 , m_which(which) in AttachedDetachedInvocation() 114 …tr<CustomElementLifecycleCallbacks> callbacks, CustomElementLifecycleCallbacks::CallbackType which) in createInvocation() argument 116 switch (which) { in createInvocation() 122 return adoptPtr(new AttachedDetachedInvocation(callbacks, which)); in createInvocation()
|
/external/openssh/ |
D | mac.c | 75 mac_setup_by_id(Mac *mac, int which) in mac_setup_by_id() argument 78 mac->type = macs[which].type; in mac_setup_by_id() 80 mac->evp_md = (*macs[which].mdfunc)(); in mac_setup_by_id() 85 mac->mac_len = macs[which].len / 8; in mac_setup_by_id() 86 mac->key_len = macs[which].key_len / 8; in mac_setup_by_id() 89 if (macs[which].truncatebits != 0) in mac_setup_by_id() 90 mac->mac_len = macs[which].truncatebits / 8; in mac_setup_by_id()
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
D | ASN1Parser.py | 18 def getChild(self, which): argument 19 return ASN1Parser(self.getChildBytes(which)) 21 def getChildBytes(self, which): argument 23 for x in range(which+1):
|
/external/chromium_org/chrome/common/metrics/proto/ |
D | profiler_event.proto | 24 // The source based upon which "time" measurements are made. 36 // The name of the thread from which this task was posted, hashed. 39 // The name of the thread on which this task was executed, hashed. 42 // The source file name from which this task was posted, hashed. 45 // Function name from which this task was posted, hashed. 48 // The line number within the source file from which this task was posted. 69 // The type of process within which this task was executed. 88 // The local PID for the process within which this task was executed.
|
/external/qemu/distrib/sdl-1.2.15/include/ |
D | SDL_events.h | 128 Uint8 which; /**< The keyboard device index */ member 136 Uint8 which; /**< The mouse device index */ member 146 Uint8 which; /**< The mouse device index */ member 155 Uint8 which; /**< The joystick device index */ member 163 Uint8 which; /**< The joystick device index */ member 172 Uint8 which; /**< The joystick device index */ member 185 Uint8 which; /**< The joystick device index */ member
|
/external/iptables/extensions/ |
D | libxt_state.man | 8 meaning that the packet could not be identified for some reason which 9 includes running out of memory and ICMP errors which don't correspond to any 12 meaning that the packet is associated with a connection which has seen 16 associated with a connection which has not seen packets in both 23 meaning that the packet is not tracked at all, which happens if you use
|
D | libipt_REJECT.man | 10 chains, and user-defined chains which are only called from those 23 which return the appropriate ICMP error message (\fBport\-unreachable\fP is 26 can be used on rules which only match the TCP protocol: this causes a 29 (113/tcp) probes which frequently occur when sending mail to broken mail 30 hosts (which won't accept your mail otherwise).
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
D | rsa_exptmod.c | 31 unsigned char *out, unsigned long *outlen, int which, in rsa_exptmod() argument 44 if (which == PK_PRIVATE && (key->type != PK_PRIVATE)) { in rsa_exptmod() 49 if (which != PK_PRIVATE && which != PK_PUBLIC) { in rsa_exptmod() 64 if (which == PK_PRIVATE) { in rsa_exptmod()
|
/external/dropbear/libtomcrypt/src/pk/katja/ |
D | katja_exptmod.c | 31 unsigned char *out, unsigned long *outlen, int which, in katja_exptmod() argument 44 if (which == PK_PRIVATE && (key->type != PK_PRIVATE)) { in katja_exptmod() 49 if (which != PK_PRIVATE && which != PK_PUBLIC) { in katja_exptmod() 64 if (which == PK_PRIVATE) { in katja_exptmod()
|
/external/harfbuzz_ng/ |
D | autogen.sh | 11 which ragel || { 17 which pkg-config || { 23 which autoreconf || {
|
/external/chromium_org/sync/js/ |
D | README.js | 9 also asynchronously raises events which chrome://sync-internals listen 12 A message and its reply has a name and a list of arguments, which is 15 An event has a name and a details object, which is represented by a 16 JsEventDetails (js_event_details.h) object, which is basically a 25 object, which has a ProcessJsMessage() method that just delegates to 33 JsReplyHandler (js_reply_handler.h), which the backend uses to send
|
/external/e2fsprogs/po/ |
D | Makevars | 23 # This is the email address or URL to which the translators shall report 25 # - Strings which are not entire sentences, see the maintainer guidelines 27 # - Strings which use unclear terms or require additional context to be 29 # - Strings which make invalid assumptions about notation of date, time or 36 # which the translators can contact you. 39 # This is the list of locale categories, beyond LC_MESSAGES, for which the
|