Home
last modified time | relevance | path

Searched +full:case +full:- +full:sensitive (Results 1 – 25 of 644) sorted by relevance

12345678910>>...26

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DPacket.java9 * http://www.apache.org/licenses/LICENSE-2.0
103 data = new byte[p.length - HEADER_SIZE]; in Packet()
104 System.arraycopy(p, HEADER_SIZE, data, 0, p.length - HEADER_SIZE); in Packet()
164 case JDWPConstants.Tag.ARRAY_TAG: { in isValuePrimitiveType()
167 case JDWPConstants.Tag.BYTE_TAG: { in isValuePrimitiveType()
170 case JDWPConstants.Tag.CHAR_TAG: { in isValuePrimitiveType()
173 case JDWPConstants.Tag.OBJECT_TAG: { in isValuePrimitiveType()
176 case JDWPConstants.Tag.FLOAT_TAG: { in isValuePrimitiveType()
179 case JDWPConstants.Tag.DOUBLE_TAG: { in isValuePrimitiveType()
182 case JDWPConstants.Tag.INT_TAG: { in isValuePrimitiveType()
[all …]
/external/webrtc/src/system_wrappers/interface/
Ddata_log.h4 * Use of this source code is governed by a BSD-style license
17 * col1,col2,col3,multi-value-col4[3],,,col5
18 * 123,10.2,-243,1,2,3,100
20 * 13,16.4,-13,1,2,3,300
22 * As can be seen in the example, a multi-value-column is specified with the
24 * number of elements - 1 empty columns.
26 * Without multi-value-columns this format can be natively by Matlab. With
27 * multi-value-columns a small Matlab script is needed, available at
30 * Table names and column names are case sensitive.
57 // table_name + _ + table_id. The new string will be lower-case.
[all …]
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
Ddata_log.h4 * Use of this source code is governed by a BSD-style license
16 // col1,col2,col3,multi-value-col4[3],,,col5
17 // 123,10.2,-243,1,2,3,100
19 // 13,16.4,-13,1,2,3,300
21 // As can be seen in the example, a multi-value-column is specified with the
23 // number of elements - 1 empty columns.
25 // Without multi-value-columns this format can be natively by Matlab. With
26 // multi-value-columns a small Matlab script is needed, available at
29 // Table names and column names are case sensitive.
55 // table_name + _ + table_id. The new string will be lower-case.
[all …]
/external/chromium_org/third_party/libjingle/source/talk/base/
Dhttpcommon.cc3 * Copyright 2004--2005, Google Inc.
39 #include "talk/base/httpcommon-inl.h"
57 // Enum - TODO: expose globally later?
114 "Cache-Control",
116 "Content-Disposition",
117 "Content-Length",
118 "Content-Range",
119 "Content-Type",
125 "If-Modified-Since",
126 "If-None-Match",
[all …]
/external/chromium_org/third_party/webrtc/base/
Dhttpcommon.cc4 * Use of this source code is governed by a BSD-style license
22 #include "webrtc/base/httpcommon-inl.h"
40 // Enum - TODO: expose globally later?
97 "Cache-Control",
99 "Content-Disposition",
100 "Content-Length",
101 "Content-Range",
102 "Content-Type",
108 "If-Modified-Since",
109 "If-None-Match",
[all …]
/external/chromium_org/chromeos/ime/
Dextension_ime_util.cc2 // Use of this source code is governed by a BSD-style license that can be
15 sizeof(kExtensionIMEPrefix) / sizeof(kExtensionIMEPrefix[0]) - 1;
19 sizeof(kComponentExtensionIMEPrefix[0]) - 1;
71 if (StartsWithASCII(engine_id, "zh-", true) && in GetInputMethodIDByEngineID()
75 if (StartsWithASCII(engine_id, "zh-", true) && in GetInputMethodIDByEngineID()
79 if (StartsWithASCII(engine_id, "zh-", true) && in GetInputMethodIDByEngineID()
83 if (engine_id.find("-t-i0-") != std::string::npos) in GetInputMethodIDByEngineID()
92 true); // Case sensitive. in IsExtensionIME()
98 true); // Case sensitive. in IsComponentExtensionIME()
105 true); // Case sensitive. in IsMemberOfExtension()
/external/icu/icu4c/source/common/unicode/
Ducasemap.h4 * Copyright (C) 2005-2012, International Business Machines
9 * encoding: US-ASCII
16 * Case mapping service object and functions using it.
28 * \brief C API: Unicode case mapping functions using a UCaseMap service object.
36 * ucasemap_utf8XYZ() functions operate directly on UTF-8 strings.
40 * UCaseMap is an opaque service object for newer ICU case mapping functions.
52 * @param locale ICU locale ID, used for language-dependent
53 * upper-/lower-/title-casing according to the Unicode standard.
55 * @param options Options bit set, used for case folding and string comparisons.
100 * Get the locale ID that is used for language-dependent case mappings.
[all …]
/external/chromium_org/third_party/icu/source/common/unicode/
Ducasemap.h4 * Copyright (C) 2005-2010, International Business Machines
9 * encoding: US-ASCII
16 * Case mapping service object and functions using it.
28 * \brief C API: Unicode case mapping functions using a UCaseMap service object.
36 * ucasemap_utf8XYZ() functions operate directly on UTF-8 strings.
40 * UCaseMap is an opaque service object for newer ICU case mapping functions.
52 * @param locale ICU locale ID, used for language-dependent
53 * upper-/lower-/title-casing according to the Unicode standard.
55 * @param options Options bit set, used for case folding and string comparisons.
100 * Get the locale ID that is used for language-dependent case mappings.
[all …]
/external/clang/test/Analysis/
Dunreachable-code-path.c1 …ng_cc1 -analyze -analyzer-checker=core,deadcode.DeadStores,alpha.deadcode.UnreachableCode -verify
5 // The first few tests are non-path specific - we should be able to find them
9 a += 5; // expected-warning{{never executed}} in test()
10 case 2: in test()
12 case 3: in test()
24 foo(a); // expected-warning{{never executed}} in test2()
30 if (a > 5) { // expected-warning{{never executed}} in test3()
35 // These next tests are path-sensitive
41 a -= 2; in test4()
44 a = a + 56; // expected-warning{{never executed}} in test4()
[all …]
/external/chromium_org/net/http/
Dhttp_auth_cache.h2 // Use of this source code is governed by a BSD-style license that can be
23 // - the origin server {protocol scheme, host, port}
24 // - the last identity used (username/password)
25 // - the last auth handler used (contains realm and authentication scheme)
26 // - the list of paths which used this realm
38 // The case-sensitive realm string of the challenge.
74 // already contained in the protection space, is a no-op.
79 // such a path exists and |path_len| is non-NULL. If no enclosing
109 // This also defines the worst-case lookup times (which grow linearly
119 // |origin| - the {scheme, host, port} of the server.
[all …]
/external/wpa_supplicant_8/src/utils/
Dos_none.c3 * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
9 * functions here do not really work as-is since they are just empty or only
25 return -1; in os_get_time()
31 return -1; in os_get_reltime()
38 return -1; in os_mktime()
43 return -1; in os_gmtime()
49 return -1; in os_daemonize()
60 return -1; in os_get_random()
89 return -1; in os_setenv()
95 return -1; in os_unsetenv()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DTreeScope.h90 // for an anchor with the given name. ID matching is always case sensitive, but
91 // Anchor name matching is case sensitive in strict mode and not case sensitive in
106 // Nodes belonging to this scope hold guard references -
121 --m_guardRefCount; in guardDeref()
196 return m_elementsById && m_elementsById->contains(id); in hasElementWithId()
201 return m_elementsById && m_elementsById->containsMultiple(id.impl()); in containsMultipleElementsWithId()
/external/clang/docs/analyzer/
DIPA.txt5 inlining. The major one is -analyzer-config ipa:
7 -analyzer-config ipa=none - All inlining is disabled. This is the only mode
10 -analyzer-config ipa=basic-inlining - Turns on inlining for C functions, C++
11 static member functions, and blocks -- essentially, the calls that behave
15 -analyzer-config ipa=inlining - Turns on inlining when we can confidently find
17 functions, devirtualized C++ methods, Objective-C class methods, Objective-C
21 -analyzer-config ipa=dynamic - Inline instance methods for which the type is
25 -analyzer-config ipa=dynamic-bifurcate - Same as -analyzer-config ipa=dynamic,
30 Currently, -analyzer-config ipa=dynamic-bifurcate is the default mode.
32 While -analyzer-config ipa determines in general how aggressively the analyzer
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
Dtable_API_readme.txt11 fact that we need to map TT table tags (which are case sensitive)
12 to filenames (which on Mac and Win aren't case sensitive) as well
14 [A-Za-z0-9_] and cannot start with a number.
/external/webrtc/src/system_wrappers/source/
Ddata_log.cc4 * Use of this source code is governed by a BSD-style license
32 // The string index is treated in a case sensitive way.
40 // column_name is treated in a case sensitive way.
46 // column_name is treated in a case sensitive way.
59 // each column and the length of the column (1 for one-value-columns and greater
60 // than 1 for multi-value-columns).
67 // multi-value-column if multi_value_length is greater than 1.
68 // column_name is treated in a case sensitive way.
78 // column_name is treated in a case sensitive way.
114 delete it->second; in ~Row()
[all …]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
Ddata_log.cc4 * Use of this source code is governed by a BSD-style license
32 // The string index is treated in a case sensitive way.
40 // column_name is treated in a case sensitive way.
46 // column_name is treated in a case sensitive way.
59 // each column and the length of the column (1 for one-value-columns and greater
60 // than 1 for multi-value-columns).
67 // multi-value-column if multi_value_length is greater than 1.
68 // column_name is treated in a case sensitive way.
78 // column_name is treated in a case sensitive way.
114 delete it->second; in ~Row()
[all …]
/external/chromium_org/base/test/expectations/
Dexpectation_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
28 // Case sensitive. in TEST()
46 // Case sensitive. in TEST()
58 EXPECT_TRUE(PlatformFromString("Mac-10.6", &platform)); in TEST()
66 EXPECT_TRUE(PlatformFromString("Linux-", &platform)); in TEST()
76 "Win-XP", in TEST()
77 "Win-Vista", in TEST()
78 "Win-7", in TEST()
79 "Win-8", in TEST()
81 "Mac-10.6", in TEST()
[all …]
/external/chromium_org/chrome/browser/ui/find_bar/
Dfind_backend_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
31 Profile* profile = Profile::FromBrowserContext(contents->GetBrowserContext()); in FindPrepopulateText()
44 EXPECT_EQ(base::string16(), find_tab_helper->find_text()); in TEST_F()
55 EXPECT_EQ(base::string16(), find_tab_helper->find_text()); in TEST_F()
57 EXPECT_EQ(base::string16(), find_tab_helper2->find_text()); in TEST_F()
63 // Start searching in the first WebContents, searching forwards but not case in TEST_F()
64 // sensitive (as indicated by the last two params). in TEST_F()
65 find_tab_helper->StartFinding(search_term1, true, false); in TEST_F()
67 // Pre-populate string should always match between the two, but find_text in TEST_F()
70 EXPECT_EQ(search_term1, find_tab_helper->find_text()); in TEST_F()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
DVTTCue.cpp57 static const int undefinedPosition = -1;
58 static const int undefinedSize = -1;
132 …setShadowPseudoId(AtomicString("-webkit-media-text-track-display", AtomicString::ConstructFromLite… in VTTCueBox()
138 if (!m_cue->regionId().isEmpty()) { in applyCSSProperties()
148 // the 'unicode-bidi' property must be set to 'plaintext' in applyCSSProperties()
152 setInlineStyleProperty(CSSPropertyDirection, m_cue->getCSSWritingDirection()); in applyCSSProperties()
154 // the 'writing-mode' property must be set to writing-mode in applyCSSProperties()
155 setInlineStyleProperty(CSSPropertyWebkitWritingMode, m_cue->getCSSWritingMode()); in applyCSSProperties()
157 std::pair<float, float> position = m_cue->getCSSPosition(); in applyCSSProperties()
166 if (m_cue->vertical() == horizontalKeyword()) { in applyCSSProperties()
[all …]
/external/icu/icu4c/source/data/lang/
Dfil.txt15 colAlternate{"Pag-uuri-uri ng Mga Ignore Symbol"}
16 colBackwards{"Pag-uuri-uri ng Baliktad na Accent"}
17 colCaseFirst{"Uppercase/Lowercase na Pagsusunud-sunod"}
18 colCaseLevel{"Case Sensitive na Pag-uuri-uri"}
19 colHiraganaQuaternary{"Pag-uuri-uri ng Kana"}
20 colNormalization{"Normalized na Pag-uuri-uri"}
21 colNumeric{"Numeric na Pag-uuri-uri"}
22 colStrength{"Lakas ng Pag-uuri-uri"}
23 collation{"Ayos ng Pag-uuri-uri"}
28 variableTop{"Pag-uri-uriin Bilang Mga Simbolo"}
[all …]
/external/clang/test/VFS/Inputs/
Dunknown-value.yaml3 'case-sensitive': 'Maybe?',
/external/chromium_org/net/cookies/
Dcanonical_cookie.h2 // Use of this source code is governed by a BSD-style license that can be
44 // in which pre-validation of the ParsedCookie has not been done.
94 // The RFC says that name must match (case-sensitive), domain must
95 // match (case insensitive), and path must match (case sensitive).
96 // For the case insensitive domain compare, we rely on the domain
98 // GetCookieDomainWithString->CanonicalizeHost).
102 // NOTE: Keep this logic in-sync with TrimDuplicateCookiesForHost(). in IsEquivalent()
111 // Returns true if the given |url_path| path-matches the cookie-path as
145 // persistent though; its only used in the in-tab cookies dialog to show the
147 // When a CanonicalCookie is constructed from the backing store (common case)
/external/llvm/docs/
DAliasAnalysis.rst14 different ways of classifying them: flow-sensitive vs. flow-insensitive,
15 context-sensitive vs. context-insensitive, field-sensitive
16 vs. field-insensitive, unification-based vs. subset-based, etc. Traditionally,
27 are assumed to be flow-insensitive). In addition to simple alias analysis
58 --------------------------
70 .. code-block:: c++
78 C[1] = A[9-i]; /* One byte store */
81 In this case, the ``basicaa`` pass will disambiguate the stores to ``C[0]`` and
83 the accesses are each one byte. In this case, the Loop Invariant Code Motion
87 .. code-block:: c++
[all …]
/external/chromium_org/tools/gyp/test/rename/
Dgyptest-filecase.py4 # Use of this source code is governed by a BSD-style license that can be
8 Checks that files whose file case changes get rebuilt correctly.
26 # Check that having files that differ just in their case still work on
27 # case-sensitive file systems.
32 test.run_gyp('test-casesensitive.gyp', chdir=CHDIR)
33 test.build('test-casesensitive.gyp', test.ALL, chdir=CHDIR)
/external/chromium_org/crypto/third_party/nss/
Dpk11akey.cc18 * Portions created by the Initial Developer are Copyright (C) 1994-2000
29 * in which case the provisions of the GPL or the LGPL are applicable instead
40 #include "crypto/third_party/nss/chromium-nss.h"
55 PRBool sensitive, in ImportEncryptedECPrivateKeyInfoAndReturnKey() argument
63 &epki->algorithm, in ImportEncryptedECPrivateKeyInfoAndReturnKey()
73 &epki->algorithm, &crypto_param, password); in ImportEncryptedECPrivateKeyInfoAndReturnKey()
83 &epki->encryptedData, nickname, in ImportEncryptedECPrivateKeyInfoAndReturnKey()
84 public_value, permanent, sensitive, CKK_EC, in ImportEncryptedECPrivateKeyInfoAndReturnKey()

12345678910>>...26